mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
dd1d248be2
* generate length 32 random bytes * fix test * implement BnbDeputyFixedFee param * clean up for PR * update deputy address * remove impossible check * move comment
18 lines
1.7 KiB
Markdown
18 lines
1.7 KiB
Markdown
# Parameters
|
|
|
|
The bep3 module contains the following parameters:
|
|
|
|
| Key | Type | Example | Description |
|
|
|-------------------|-------------------------|-----------------------------------------------|-------------------------------|
|
|
| BnbDeputyAddress | string (sdk.AccAddress) | "kava1xy7hrjy9r0algz9w3gzm8u6mrpq97kwta747gj" | deputy's Kava address |
|
|
| BnbDeputyFixedFee | uint64 | 1000 | deputy's fixed bnb fee |
|
|
| MinBlockLock | uint64 | 80 | minimum swap expire height |
|
|
| MaxBlockLock | uint64 | 600 | maximum swap expire height |
|
|
| SupportedAssets | AssetParams | []AssetParam | array of supported assets |
|
|
|-------------------|-------------------------|-----------------------------------------------|-------------------------------|
|
|
| AssetParam | AssetParam | AssetParam{"bnb", 714, sdk.NewInt(100), true} | a supported asset |
|
|
| 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 |
|