Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ScenarioDefaultOptions = ScenarioOptions{ TotalCount: 0, Throughput: 50, MaxPending: 0, MaxWallets: 0, Rebroadcast: 1, BaseFee: 20, TipFee: 2, GasLimit: 2000000, FactoryAddress: "", InitCode: "", StartSalt: 0, WellKnownFactory: true, Timeout: "", ClientGroup: "", DeployClientGroup: "", LogTxs: false, }
View Source
var ScenarioDescriptor = scenario.Descriptor{ Name: ScenarioName, Description: "Deploy contracts using CREATE2 factory", DefaultOptions: ScenarioDefaultOptions, NewScenario: newScenario, }
View Source
var ScenarioName = "factorydeploytx"
Functions ¶
This section is empty.
Types ¶
type ScenarioOptions ¶
type ScenarioOptions struct {
TotalCount uint64 `yaml:"total_count"`
Throughput uint64 `yaml:"throughput"`
MaxPending uint64 `yaml:"max_pending"`
MaxWallets uint64 `yaml:"max_wallets"`
Rebroadcast uint64 `yaml:"rebroadcast"`
BaseFee float64 `yaml:"base_fee"`
TipFee float64 `yaml:"tip_fee"`
GasLimit uint64 `yaml:"gas_limit"`
FactoryAddress string `yaml:"factory_address"`
InitCode string `yaml:"init_code"`
StartSalt uint64 `yaml:"start_salt"`
WellKnownFactory bool `yaml:"well_known_factory"`
Timeout string `yaml:"timeout"`
ClientGroup string `yaml:"client_group"`
DeployClientGroup string `yaml:"deploy_client_group"`
LogTxs bool `yaml:"log_txs"`
}
Click to show internal directories.
Click to hide internal directories.