Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( L1WSEndpoint = &cli.StringFlag{ Name: "l1.ws", Usage: "Websocket RPC endpoint of a L1 ethereum node", Required: true, Category: commonCategory, EnvVars: []string{"L1_WS"}, } L2WSEndpoint = &cli.StringFlag{ Name: "l2.ws", Usage: "Websocket RPC endpoint of a L2 taiko-geth execution engine", Required: true, Category: commonCategory, EnvVars: []string{"L2_WS"}, } L1HTTPEndpoint = &cli.StringFlag{ Name: "l1.http", Usage: "HTTP RPC endpoint of a L1 ethereum node", Required: true, Category: commonCategory, EnvVars: []string{"L1_HTTP"}, } L1BeaconEndpoint = &cli.StringFlag{ Name: "l1.beacon", Usage: "HTTP RPC endpoint of a L1 beacon node", Category: commonCategory, EnvVars: []string{"L1_BEACON"}, } L2HTTPEndpoint = &cli.StringFlag{ Name: "l2.http", Usage: "HTTP RPC endpoint of a L2 taiko-geth execution engine", Required: true, Category: commonCategory, EnvVars: []string{"L2_HTTP"}, } L2AuthEndpoint = &cli.StringFlag{ Name: "l2.auth", Usage: "Authenticated HTTP RPC endpoint of a L2 taiko-geth execution engine", Required: true, Category: commonCategory, EnvVars: []string{"L2_AUTH"}, } JWTSecret = &cli.StringFlag{ Name: "jwtSecret", Usage: "Path to a JWT secret to use for authenticated RPC endpoints", Required: true, Category: commonCategory, EnvVars: []string{"JWT_SECRET"}, } TaikoL1Address = &cli.StringFlag{ Name: "taikoL1", Usage: "TaikoL1 contract `address`", Required: true, Category: commonCategory, EnvVars: []string{"TAIKO_L1"}, } TaikoL2Address = &cli.StringFlag{ Name: "taikoL2", Usage: "TaikoL2 contract `address`", Required: true, Category: commonCategory, EnvVars: []string{"TAIKO_L2"}, } TaikoTokenAddress = &cli.StringFlag{ Name: "taikoToken", Usage: "TaikoToken contract `address`", Required: true, Category: commonCategory, EnvVars: []string{"TAIKO_TOKEN"}, } // Optional flags used by all client software. // Logging Verbosity = &cli.IntFlag{ Name: "verbosity", Usage: "Logging verbosity: 0=silent, 1=error, 2=warn, 3=info, 4=debug, 5=detail", Value: 3, Category: loggingCategory, EnvVars: []string{"VERBOSITY"}, } LogJSON = &cli.BoolFlag{ Name: "log.json", Usage: "Format logs with JSON", Category: loggingCategory, EnvVars: []string{"LOG_JSON"}, } // Metrics MetricsEnabled = &cli.BoolFlag{ Name: "metrics", Usage: "Enable metrics collection and reporting", Category: metricsCategory, Value: false, EnvVars: []string{"METRICS"}, } MetricsAddr = &cli.StringFlag{ Name: "metrics.addr", Usage: "Metrics reporting server listening address", Category: metricsCategory, Value: "0.0.0.0", EnvVars: []string{"METRICS_ADDR"}, } MetricsPort = &cli.IntFlag{ Name: "metrics.port", Usage: "Metrics reporting server listening port", Category: metricsCategory, Value: 6060, EnvVars: []string{"METRICS_PORT"}, } BackOffMaxRetries = &cli.Uint64Flag{ Name: "backoff.maxRetries", Usage: "Max retry times when there is an error", Category: commonCategory, Value: 10, EnvVars: []string{"BACKOFF_MAX_RETRIES"}, } BackOffRetryInterval = &cli.DurationFlag{ Name: "backoff.retryInterval", Usage: "Retry interval in seconds when there is an error", Category: commonCategory, Value: backoff.DefaultMaxInterval, EnvVars: []string{"BACKOFF_RETRY_INTERVAL"}, } RPCTimeout = &cli.DurationFlag{ Name: "rpc.timeout", Usage: "Timeout in seconds for RPC calls", Category: commonCategory, Value: 12 * time.Second, EnvVars: []string{"RPC_TIMEOUT"}, } AssignmentHookAddress = &cli.StringFlag{ Name: "assignmentHookAddress", Usage: "Address of the AssignmentHook contract", Category: commonCategory, EnvVars: []string{"ASSIGNMENT_HOOK_ADDRESS"}, } )
Required flags used by all client software.
View Source
var ( P2PSyncVerifiedBlocks = &cli.BoolFlag{ Name: "p2p.syncVerifiedBlocks", Usage: "Try P2P syncing verified blocks between L2 execution engines, " + "will be helpful to bring a new node online quickly", Value: false, Category: driverCategory, EnvVars: []string{"P2P_SYNC_VERIFIED_BLOCKS"}, } P2PSyncTimeout = &cli.DurationFlag{ Name: "p2p.syncTimeout", Usage: "P2P syncing timeout, if no sync progress is made within this time span, " + "driver will stop the P2P sync and insert all remaining L2 blocks one by one", Value: 1 * time.Hour, Category: driverCategory, EnvVars: []string{"P2P_SYNC_TIMEOUT"}, } CheckPointSyncURL = &cli.StringFlag{ Name: "p2p.checkPointSyncUrl", Usage: "HTTP RPC endpoint of another synced L2 execution engine node", Category: driverCategory, EnvVars: []string{"P2P_CHECK_POINT_SYNC_URL"}, } // syncer specific flag MaxExponent = &cli.Uint64Flag{ Name: "syncer.maxExponent", Usage: "Maximum exponent of retrieving L1 blocks when there is a mismatch between protocol and L2 EE," + "0 means that it is reset to the genesis height", Value: 0, Category: driverCategory, EnvVars: []string{"SYNCER_MAX_EXPONENT"}, } // blob server endpoint BlobServerEndpoint = &cli.StringFlag{ Name: "blob.server", Usage: "Blob sidecar storage server", Category: driverCategory, EnvVars: []string{"BLOB_SERVER"}, } )
Optional flags used by driver.
View Source
var ( L1ProposerPrivKey = &cli.StringFlag{ Name: "l1.proposerPrivKey", Usage: "Private key of the L1 proposer, who will send TaikoL1.proposeBlock transactions", Required: true, Category: proposerCategory, EnvVars: []string{"L1_PROPOSER_PRIV_KEY"}, } ProverEndpoints = &cli.StringFlag{ Name: "proverEndpoints", Usage: "Comma-delineated list of prover endpoints proposer should query when attempting to propose a block", Required: true, Category: proposerCategory, EnvVars: []string{"PROVER_ENDPOINTS"}, } L2SuggestedFeeRecipient = &cli.StringFlag{ Name: "l2.suggestedFeeRecipient", Usage: "Address of the proposed block's suggested L2 fee recipient", Required: true, Category: proposerCategory, EnvVars: []string{"L2_SUGGESTED_FEE_RECIPIENT"}, } )
Required flags used by proposer.
View Source
var ( // Tier fee related. OptimisticTierFee = &cli.Float64Flag{ Name: "tierFee.optimistic", Usage: "Initial tier fee (in GWei) paid to prover to generate an optimistic proofs", Category: proposerCategory, EnvVars: []string{"TIER_FEE_OPTIMISTIC"}, } SgxTierFee = &cli.Float64Flag{ Name: "tierFee.sgx", Usage: "Initial tier fee (in GWei) paid to prover to generate a SGX proofs", Category: proposerCategory, EnvVars: []string{"TIER_FEE_SGX"}, } TierFeePriceBump = &cli.Uint64Flag{ Name: "tierFee.priceBump", Usage: "Price bump percentage when no prover wants to accept the block at initial fee", Value: 10, Category: proposerCategory, EnvVars: []string{"TIER_FEE_PRICE_BUMP"}, } MaxTierFeePriceBumps = &cli.Uint64Flag{ Name: "tierFee.maxPriceBumps", Usage: "If nobody accepts block at initial tier fee, how many iterations to increase tier fee before giving up", Category: proposerCategory, Value: 3, EnvVars: []string{"TIER_FEE_MAX_PRICE_BUMPS"}, } // Proposing epoch related. ProposeInterval = &cli.DurationFlag{ Name: "epoch.interval", Usage: "Time interval to propose L2 pending transactions", Category: proposerCategory, Value: 0, EnvVars: []string{"EPOCH_INTERVAL"}, } MinGasUsed = &cli.Uint64Flag{ Name: "epoch.minGasUsed", Usage: "Minimum gas used for a transactions list to propose", Category: proposerCategory, Value: 0, EnvVars: []string{"EPOCH_MIN_GAS_USED"}, } MinTxListBytes = &cli.Uint64Flag{ Name: "epoch.minTxListBytes", Usage: "Minimum bytes for a transactions list to propose", Category: proposerCategory, Value: 0, EnvVars: []string{"EPOCH_MIN_TX_LIST_BYTES"}, } MinProposingInternal = &cli.DurationFlag{ Name: "epoch.minProposingInterval", Usage: "Minimum time interval to force proposing a block, even if there are no transaction in mempool", Category: proposerCategory, Value: 0, EnvVars: []string{"EPOCH_MIN_PROPOSING_INTERNAL"}, } // Proposing metadata related. ExtraData = &cli.StringFlag{ Name: "extraData", Usage: "Block extra data set by the proposer (default = client version)", Value: version.CommitVersion(), Category: proposerCategory, EnvVars: []string{"EXTRA_DATA"}, } // Transactions pool related. TxPoolLocals = &cli.StringSliceFlag{ Name: "txPool.locals", Usage: "Comma separated accounts to treat as locals (priority inclusion)", Category: proposerCategory, EnvVars: []string{"TX_POOL_LOCALS"}, } TxPoolLocalsOnly = &cli.BoolFlag{ Name: "txPool.localsOnly", Usage: "If set to true, proposer will only propose transactions of local accounts", Value: false, Category: proposerCategory, EnvVars: []string{"TX_POOL_LOCALS_ONLY"}, } MaxProposedTxListsPerEpoch = &cli.Uint64Flag{ Name: "txPool.maxTxListsPerEpoch", Usage: "Maximum number of transaction lists which will be proposed inside one proposing epoch", Value: 1, Category: proposerCategory, EnvVars: []string{"TX_POOL_MAX_TX_LISTS_PER_EPOCH"}, } ProposeBlockIncludeParentMetaHash = &cli.BoolFlag{ Name: "includeParentMetaHash", Usage: "Include parent meta hash when proposing block", Value: false, Category: proposerCategory, EnvVars: []string{"INCLUDE_PARENT_META_HASH"}, } // Transaction related. BlobAllowed = &cli.BoolFlag{ Name: "l1.blobAllowed", Usage: "Send EIP-4844 blob transactions when proposing blocks", Value: false, EnvVars: []string{"L1_BLOB_ALLOWED"}, } L1BlockBuilderTip = &cli.Uint64Flag{ Name: "l1.blockBuilderTip", Usage: "Amount you wish to tip the L1 block builder", Value: 0, Category: proposerCategory, EnvVars: []string{"L1_BLOCK_BUILDER_TIP"}, } )
Optional flags used by proposer.
View Source
var ( L1ProverPrivKey = &cli.StringFlag{ Name: "l1.proverPrivKey", Usage: "Private key of L1 prover, who will send TaikoL1.proveBlock transactions", Required: true, Category: proverCategory, EnvVars: []string{"L1_PROVER_PRIV_KEY"}, } ProverCapacity = &cli.Uint64Flag{ Name: "prover.capacity", Usage: "Capacity of prover", Required: true, Category: proverCategory, EnvVars: []string{"PROVER_CAPACITY"}, } )
Required flags used by prover.
View Source
var ( RaikoHostEndpoint = &cli.StringFlag{ Name: "raiko.host", Usage: "RPC endpoint of a Raiko host service", Category: proverCategory, EnvVars: []string{"RAIKO_HOST"}, } RaikoL1Endpoint = &cli.StringFlag{ Name: "raiko.l1", Usage: "L1 RPC endpoint which will be sent to the Raiko service", Category: proverCategory, EnvVars: []string{"RAIKO_L1"}, } RaikoL1BeaconEndpoint = &cli.StringFlag{ Name: "raiko.l1Beacon", Usage: "L1 beacon RPC endpoint which will be sent to the Raiko service", Category: proverCategory, EnvVars: []string{"RAIKO_L1_BEACON"}, } RaikoL2Endpoint = &cli.StringFlag{ Name: "raiko.l2", Usage: "L2 RPC endpoint which will be sent to the Raiko service", Category: proverCategory, EnvVars: []string{"RAIKO_L2"}, } StartingBlockID = &cli.Uint64Flag{ Name: "prover.startingBlockID", Usage: "If set, prover will start proving blocks from the block with this ID", Category: proverCategory, EnvVars: []string{"PROVER_STARTING_BLOCK_ID"}, } Graffiti = &cli.StringFlag{ Name: "prover.graffiti", Usage: "When string is passed, adds additional graffiti info to proof evidence", Category: proverCategory, Value: "", EnvVars: []string{"PROVER_GRAFFITI"}, } // Proving strategy. ProveUnassignedBlocks = &cli.BoolFlag{ Name: "prover.proveUnassignedBlocks", Usage: "Whether you want to prove unassigned blocks, or only work on assigned proofs", Category: proverCategory, Value: false, EnvVars: []string{"PROVER_PROVE_UNASSIGNED_BLOCKS"}, } MinEthBalance = &cli.Float64Flag{ Name: "prover.minEthBalance", Usage: "Minimum ETH balance (in Ether) a prover wants to keep", Category: proverCategory, Value: 0, EnvVars: []string{"PROVER_MIN_ETH_BALANCE"}, } MinTaikoTokenBalance = &cli.Float64Flag{ Name: "prover.minTaikoTokenBalance", Usage: "Minimum Taiko token balance without decimal a prover wants to keep", Category: proverCategory, Value: 0, EnvVars: []string{"PROVER_MIN_TAIKO_TOKEN_BALANCE"}, } // Tier fee related. MinOptimisticTierFee = &cli.Uint64Flag{ Name: "minTierFee.optimistic", Usage: "Minimum accepted fee for generating an optimistic proof", Category: proverCategory, EnvVars: []string{"MIN_TIER_FEE_OPTIMISTIC"}, } MinSgxTierFee = &cli.Uint64Flag{ Name: "minTierFee.sgx", Usage: "Minimum accepted fee for generating a SGX proof", Category: proverCategory, EnvVars: []string{"MIN_TIER_FEE_SGX"}, } MinSgxAndZkVMTierFee = &cli.Uint64Flag{ Name: "minTierFee.sgxAndZkvm", Usage: "Minimum accepted fee for generating a SGX + zkVM proof", Category: proverCategory, EnvVars: []string{"MIN_TIER_FEE_SGX_AND_ZKVM"}, } // Running mode ContesterMode = &cli.BoolFlag{ Name: "mode.contester", Usage: "Whether you want to contest wrong transitions with higher tier proofs", Category: proverCategory, Value: false, EnvVars: []string{"MODE_CONTESTER"}, } // HTTP server related. ProverHTTPServerPort = &cli.Uint64Flag{ Name: "prover.port", Usage: "Port to expose for http server", Category: proverCategory, Value: 9876, EnvVars: []string{"PROVER_PORT"}, } MaxExpiry = &cli.DurationFlag{ Name: "http.maxExpiry", Usage: "Maximum accepted expiry in seconds for accepting proving a block", Value: 1 * time.Hour, Category: proverCategory, EnvVars: []string{"HTTP_MAX_EXPIRY"}, } // Special flags for testing. Dummy = &cli.BoolFlag{ Name: "prover.dummy", Usage: "Produce dummy proofs, testing purposes only", Value: false, Category: proverCategory, EnvVars: []string{"PROVER_DUMMY"}, } // Max slippage allowed MaxAcceptableBlockSlippage = &cli.Uint64Flag{ Name: "prover.blockSlippage", Usage: "Maximum accepted slippage difference for blockID for accepting proving a block", Value: 1024, Category: proverCategory, EnvVars: []string{"PROVER_BLOCK_SLIPPAGE"}, } // Max amount of L1 blocks that can pass before block is invalid MaxProposedIn = &cli.Uint64Flag{ Name: "prover.maxProposedIn", Usage: "Maximum amount of L1 blocks that can pass before block can not be proposed. 0 means no limit.", Value: 0, Category: proverCategory, EnvVars: []string{"PROVER_MAX_PROPOSED_IN"}, } Allowance = &cli.Float64Flag{ Name: "prover.allowance", Usage: "Amount without decimal to approve AssignmentHook contract for TaikoToken usage", Category: proverCategory, EnvVars: []string{"PROVER_ALLOWANCE"}, } GuardianProverHealthCheckServerEndpoint = &cli.StringFlag{ Name: "prover.guardianProverHealthCheckServerEndpoint", Usage: "HTTP endpoint for main guardian prover health check server", Category: proverCategory, EnvVars: []string{"PROVER_GUARDIAN_PROVER_HEALTH_CHECK_SERVER_ENDPOINT"}, } // Guardian prover specific flag GuardianProver = &cli.StringFlag{ Name: "guardianProver", Usage: "GuardianProver contract `address`", Category: proverCategory, EnvVars: []string{"GUARDIAN_PROVER"}, } GuardianProofSubmissionDelay = &cli.DurationFlag{ Name: "guardian.submissionDelay", Usage: "Guardian proof submission delay", Value: 1 * time.Hour, Category: proverCategory, EnvVars: []string{"GUARDIAN_SUBMISSION_DELAY"}, } EnableLivenessBondProof = &cli.BoolFlag{ Name: "prover.enableLivenessBondProof", Usage: "Toggles whether the proof is a dummy proof or returns keccak256(RETURN_LIVENESS_BOND) as proof", Value: false, Category: proverCategory, EnvVars: []string{"PROVER_ENABLE_LIVENESS_BOND_PROOF"}, } L1NodeVersion = &cli.StringFlag{ Name: "prover.l1NodeVersion", Usage: "Version or tag or the L1 Node Version used as an L1 RPC Url by this guardian prover", Category: proverCategory, EnvVars: []string{"PROVER_L1_NODE_VERSION"}, } L2NodeVersion = &cli.StringFlag{ Name: "prover.l2NodeVersion", Usage: "Version or tag or the L2 Node Version used as an L2 RPC Url by this guardian prover", Category: proverCategory, EnvVars: []string{"PROVER_L2_NODE_VERSION"}, } // Confirmations specific flag BlockConfirmations = &cli.Uint64Flag{ Name: "prover.blockConfirmations", Usage: "Confirmations to the latest L1 block before submitting a proof for a L2 block", Value: 6, Category: proverCategory, EnvVars: []string{"PROVER_BLOCK_CONFIRMATIONS"}, } )
Optional flags used by prover.
View Source
var ( NumConfirmations = &cli.Uint64Flag{ Name: "tx.numConfirmations", Usage: "Number of confirmations which we will wait after sending a transaction", Value: 0, Category: txmgrCategory, EnvVars: []string{"TX_NUM_CONFIRMATIONS"}, } SafeAbortNonceTooLowCount = &cli.Uint64Flag{ Name: "tx.safeAbortNonceTooLowCount", Usage: "Number of ErrNonceTooLow observations required to give up on " + "a tx at a particular nonce without receiving confirmation", Value: 3, Category: txmgrCategory, EnvVars: []string{"TX_SAFE_ABORT_NONCE_TOO_LOW_COUNT"}, } FeeLimitMultiplier = &cli.Uint64Flag{ Name: "tx.feeLimitMultiplier", Usage: "The multiplier applied to fee suggestions to put a hard limit on fee increases", Value: 10, Category: txmgrCategory, EnvVars: []string{"TX_FEE_LIMIT_MULTIPLIER"}, } FeeLimitThreshold = &cli.Float64Flag{ Name: "tx.feeLimitThreshold", Usage: "The minimum threshold (in GWei) at which fee bumping starts to be capped. " + "Allows arbitrary fee bumps below this threshold.", Value: 100.0, Category: txmgrCategory, EnvVars: []string{"TX_FEE_LIMIT_THRESHOLD"}, } MinTipCap = &cli.Float64Flag{ Name: "tx.minTipCap", Usage: "Enforces a minimum tip cap (in GWei) to use when determining tx fees. 1 GWei by default.", Value: 1.0, Category: txmgrCategory, EnvVars: []string{"TX_MIN_TIP_CAP"}, } MinBaseFee = &cli.Float64Flag{ Name: "tx.minBaseFee", Usage: "Enforces a minimum base fee (in GWei) to assume when determining tx fees. 1 GWei by default.", Value: 1.0, Category: txmgrCategory, EnvVars: []string{"TX_MIN_BASE_FEE"}, } ResubmissionTimeout = &cli.DurationFlag{ Name: "tx.resubmissionTimeout", Usage: "Duration we will wait before resubmitting a transaction to L1", Value: 48 * time.Second, Category: txmgrCategory, EnvVars: []string{"TX_RESUBMISSION_TIMEOUT"}, } TxSendTimeout = &cli.DurationFlag{ Name: "tx.sendTimeout", Usage: "Timeout for sending transactions. If 0 it is disabled.", Value: 0, Category: txmgrCategory, EnvVars: []string{"TX_SEND_TIMEOUT"}, } TxNotInMempoolTimeout = &cli.DurationFlag{ Name: "tx.notInMempoolTimeout", Usage: "Timeout for aborting a tx send if the tx does not make it to the mempool.", Value: 2 * time.Minute, Category: txmgrCategory, EnvVars: []string{"TX_NOT_IN_MEMPOOL_TIMEOUT"}, } ReceiptQueryInterval = &cli.DurationFlag{ Name: "tx.receiptQueryInterval", Usage: "Frequency to poll for receipts", Value: 12 * time.Second, Category: txmgrCategory, EnvVars: []string{"TX_RECEIPT_QUERY_INTERVAL"}, } TxGasLimit = &cli.Uint64Flag{ Name: "tx.gasLimit", Usage: "Gas limit will be used for transactions (0 means using gas estimation)", Value: 0, Category: txmgrCategory, EnvVars: []string{"TX_GAS_LIMIT"}, } )
View Source
var CommonFlags = []cli.Flag{ L1WSEndpoint, TaikoL1Address, TaikoL2Address, Verbosity, LogJSON, MetricsEnabled, MetricsAddr, MetricsPort, BackOffMaxRetries, BackOffRetryInterval, RPCTimeout, }
CommonFlags All common flags.
View Source
var DriverFlags = MergeFlags(CommonFlags, []cli.Flag{ L1BeaconEndpoint, L2WSEndpoint, L2AuthEndpoint, JWTSecret, P2PSyncVerifiedBlocks, P2PSyncTimeout, CheckPointSyncURL, MaxExponent, BlobServerEndpoint, })
DriverFlags All driver flags.
View Source
var ProposerFlags = MergeFlags(CommonFlags, []cli.Flag{ L2HTTPEndpoint, L2AuthEndpoint, JWTSecret, TaikoTokenAddress, L1ProposerPrivKey, L2SuggestedFeeRecipient, ProposeInterval, TxPoolLocals, TxPoolLocalsOnly, ExtraData, MinGasUsed, MinTxListBytes, MinProposingInternal, MaxProposedTxListsPerEpoch, ProverEndpoints, OptimisticTierFee, SgxTierFee, TierFeePriceBump, MaxTierFeePriceBumps, ProposeBlockIncludeParentMetaHash, AssignmentHookAddress, BlobAllowed, L1BlockBuilderTip, }, TxmgrFlags)
ProposerFlags All proposer flags.
View Source
var ProverFlags = MergeFlags(CommonFlags, []cli.Flag{ L1HTTPEndpoint, L1BeaconEndpoint, L2WSEndpoint, L2HTTPEndpoint, RaikoHostEndpoint, RaikoL1Endpoint, RaikoL1BeaconEndpoint, RaikoL2Endpoint, L1ProverPrivKey, MinOptimisticTierFee, MinSgxTierFee, MinSgxAndZkVMTierFee, MinEthBalance, MinTaikoTokenBalance, StartingBlockID, Dummy, GuardianProver, GuardianProofSubmissionDelay, GuardianProverHealthCheckServerEndpoint, Graffiti, ProveUnassignedBlocks, ContesterMode, ProverHTTPServerPort, ProverCapacity, MaxExpiry, MaxProposedIn, TaikoTokenAddress, MaxAcceptableBlockSlippage, AssignmentHookAddress, Allowance, L1NodeVersion, L2NodeVersion, BlockConfirmations, }, TxmgrFlags)
ProverFlags All prover flags.
View Source
var TxmgrFlags = []cli.Flag{ NumConfirmations, SafeAbortNonceTooLowCount, FeeLimitMultiplier, FeeLimitThreshold, MinTipCap, MinBaseFee, ResubmissionTimeout, TxSendTimeout, TxNotInMempoolTimeout, ReceiptQueryInterval, TxGasLimit, }
Functions ¶
func MergeFlags ¶
func MergeFlags(groups ...[]cli.Flag) []cli.Flag
MergeFlags merges the given flag slices.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.