mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
3784b4971b
* update bep3 docs for mainnet * update make link-check
1.9 KiB
1.9 KiB
Parameters
The bep3 module contains the following parameters:
Key | Type | Example | Description |
---|---|---|---|
BnbDeputyAddress | sdk.AccAddress | "kava1r4v2zdhdalfj2ydazallqvrus9fkphmglhn6u6" | deputy's Kava address |
BnbDeputyFixedFee | sdk.Int | sdk.NewInt(1000) | deputy's fixed bnb fee |
MinAmount | sdk.Int | sdk.NewInt(0) | minimum swap amount |
MaxAmount | sdk.Int | sdk.NewInt(1000000000000) | maximum swap amount |
MinBlockLock | uint64 | 220 | minimum swap expire height |
MaxBlockLock | uint64 | 270 | maximum swap expire height |
SupportedAssets | AssetParams | []AssetParam | array of supported assets |
Each AssetParam has the following parameters:
Key | Type | Example | Description |
---|---|---|---|
AssetParam.Denom | string | "bnb" | asset's name |
AssetParam.CoinID | int64 | 714 | asset's international coin ID |
AssetParam.Limit | sdk.Int | sdk.NewInt(100) | asset's supply limit |
AssetParam.Active | boolean | true | asset's state: live or paused |