Skip to content

Commit

Permalink
update README for polygon config (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
webelf101 authored Feb 7, 2023
1 parent 2fa257c commit 135c0e0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ See [Release procedure](CONTRIBUTING.md#release-procedure) for more information
* Paloma Testnest 14 (Jan 19, 2023)
* Ethereum Mainnet (relay)
* Binance Smart Chain Mainnet (relay)
* Polygon Mainnet (relay)


### Public Testnest 15
Expand Down Expand Up @@ -78,6 +79,10 @@ Binance Smart Chain Mainnet (bnb-main)
```
pigeon evm keys generate-new ~/.pigeon/keys/evm/bnb-main
```
Polygon Mainnet (matic-main)
```
pigeon evm keys generate-new ~/.pigeon/keys/evm/matic-main
```

or import existing you existing Ethereum evm private keys

Expand All @@ -89,6 +94,10 @@ Binance Smart Chain Mainnet (bnb-main)
```
pigeon evm keys import ~/.pigeon/keys/evm/bnb-main
```
Polygon Mainnet (matic-main)
```
pigeon evm keys import ~/.pigeon/keys/evm/matic-main
```


### Config setup
Expand Down Expand Up @@ -137,6 +146,15 @@ evm:
keyring-dir: ~/.pigeon/keys/evm/bnb-main
gas-adjustment: 1
tx-type: 0

matic-main:
chain-id: 137
base-rpc-url: ${MATIC_RPC_URL}
keyring-pass-env-name: MATIC_PASSWORD
signing-key: ${MATIC_SIGNING_KEY}
keyring-dir: ~/.pigeon/keys/evm/matic-main
gas-adjustment: 2
tx-type: 2
```
Expand All @@ -153,6 +171,9 @@ ETH_SIGNING_KEY=<Your ETH SIGNING KEY>
BNB_RPC_URL=<Your Binance mainnet RPC URL>
BNB_PASSWORD=<Your BNB Key Password>
BNB_SIGNING_KEY=<Your BNB SIGNING KEY>
MATIC_RPC_URL=<Your Binance mainnet RPC URL>
MATIC_PASSWORD=<Your BNB Key Password>
MATIC_SIGNING_KEY=<Your BNB SIGNING KEY>
VALIDATOR=<VALIDATOR NAME>
EOT
```
Expand Down

0 comments on commit 135c0e0

Please sign in to comment.