@@ -8,11 +8,19 @@ For every transaction that you relay you will receive a reward in the form of EO
88
99| Name | Description | Default |
1010| --- | -------------------------------------------------------------------------------------------------------------------| ---------|
11- | ` PRIVATE_KEY ` | The private key of the miner account | |
12- | ` MINER_ACCOUNT ` | The name of the miner account on the EOS Network | |
13- | ` RPC_ENDPOINTS ` | A list of EOS RPC endpoints to connect to, comma-delimited | |
14- | ` PORT ` | The port to listen on for incoming Ethereum transactions | ` 50305 ` |
15- | ` LOCK_GAS_PRICE ` | If set to ` true ` , one a gas price is set, this miner will not hit the EOS API node again to fetch a new gas price | ` true ` |
11+ | ` PRIVATE_KEY ` | The private key of the miner account. | |
12+ | ` MINER_ACCOUNT ` | The name of the miner account on the EOS Network. | |
13+ | ` RPC_ENDPOINTS ` | A list of EOS RPC endpoints to connect to, comma-delimited. The list is a failover. list. | |
14+ | ` PORT ` | The port to listen on for incoming Ethereum transactions. | ` 50305 ` |
15+ | ` EVM_ACCOUNT ` | | ` eosio.evm ` |
16+ | ` EVM_SCOPE ` | | |
17+ | ` MINER_FEE_MODE ` | Set how the miner collect fees after EOS-EVM upgrading to version 1. Can be ` CPU ` or ` FIXED ` . | ` FIXED ` |
18+ | ` GAS_PER_CPU ` | priority_fee = cpu_per_us / GAS_PER_CPU * (1 + MINER_MARKUP_PERCENTAGE/100) * GAS_TOKEN_EXCHANGE_RATE if MINER_FEE_MODE=` CPU ` | 74 |
19+ | ` MINER_MARKUP_PERCENTAGE ` | priority_fee = cpu_per_us / GAS_PER_CPU * (1 + MINER_MARKUP_PERCENTAGE/100) * GAS_TOKEN_EXCHANGE_RATE if MINER_FEE_MODE=` CPU ` | 0 |
20+ | ` GAS_TOKEN_EXCHANGE_RATE ` | priority_fee = cpu_per_us / GAS_PER_CPU * (1 + MINER_MARKUP_PERCENTAGE/100) * GAS_TOKEN_EXCHANGE_RATE if MINER_FEE_MODE=` CPU ` | 1 |
21+ | ` FIXED_MINER_FEE ` | Fixed priority_fee in wei if MINER_FEE_MODE=` FIXED ` . | 0 |
22+ | ` EXPIRE_SEC ` | Expiration time when broadcasting EOS transaction. | 60 |
23+ | ` RETRY_TX ` | Whether local Leap node should retry when broadcasting failed. | true |
1624
1725## Usage
1826
0 commit comments