Skip to content

Commit

Permalink
add some parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
VegeBun-csj committed Jul 21, 2023
1 parent 21fec5c commit 7d9496f
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 2 deletions.
Binary file added .DS_Store
Binary file not shown.
61 changes: 59 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,62 @@ dorad keys add xxx
- decimal: 6
- Name: DORA

## Some useful url
- RPC: doravota-devnet-rpc.dorafactory.org:26657
## Some parameters
```
{
"chainId": "doravota-devnet",
"chainName": "dora",
"rpc": "https://vota-rpc.dorafactory.org",
"rest": "https://vota-rest.dorafactory.org",
"bip44": {
"coinType": 118
},
"bech32Config": {
"bech32PrefixAccAddr": "dora",
"bech32PrefixAccPub": "dorapub",
"bech32PrefixValAddr": "doravaloper",
"bech32PrefixValPub": "doravaloperpub",
"bech32PrefixConsAddr": "doravalcons",
"bech32PrefixConsPub": "doravalconspub"
},
"currencies": [
{
"coinDenom": "DORA",
"coinMinimalDenom": "uDORA",
"coinDecimals": 6,
"coinGeckoId": "dora"
}
],
"feeCurrencies": [
{
"coinDenom": "DORA",
"coinMinimalDenom": "uDORA",
"coinDecimals": 6,
"coinGeckoId": "dora",
"gasPriceStep": {
"low": 0.001,
"average": 0.0025,
"high": 0.003
}
}
],
"stakeCurrency": {
"coinDenom": "DORA",
"coinMinimalDenom": "uDORA",
"coinDecimals": 6,
"coinGeckoId": "dora"
},
"features": [
// "cosmwasm",
// "dora-txfees"
]
}
/** Setting to speed up testing */
const defaultSigningClientOptions = {
broadcastPollIntervalMs: 8_000,
broadcastTimeoutMs: 16_000,
gasPrice: GasPrice.fromString("0.025uDORA"),
};
```

0 comments on commit 7d9496f

Please sign in to comment.