Skip to content

Commit

Permalink
Merge branch 'master' into dzmitryhil/update-ci-docker-cache-action
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitryhil authored May 3, 2024
2 parents 032fe60 + d93b3be commit 3fd3dd7
Show file tree
Hide file tree
Showing 33 changed files with 5,416 additions and 284 deletions.
83 changes: 79 additions & 4 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
- [MintAuthorization](#coreum.asset.ft.v1.MintAuthorization)

- [coreum/asset/ft/v1/event.proto](#coreum/asset/ft/v1/event.proto)
- [EventAdminCleared](#coreum.asset.ft.v1.EventAdminCleared)
- [EventAdminTransferred](#coreum.asset.ft.v1.EventAdminTransferred)
- [EventAmountClawedBack](#coreum.asset.ft.v1.EventAmountClawedBack)
- [EventFrozenAmountChanged](#coreum.asset.ft.v1.EventFrozenAmountChanged)
- [EventIssued](#coreum.asset.ft.v1.EventIssued)
Expand Down Expand Up @@ -59,13 +61,15 @@
- [ExtensionIssueSettings](#coreum.asset.ft.v1.ExtensionIssueSettings)
- [MsgBurn](#coreum.asset.ft.v1.MsgBurn)
- [MsgClawback](#coreum.asset.ft.v1.MsgClawback)
- [MsgClearAdmin](#coreum.asset.ft.v1.MsgClearAdmin)
- [MsgFreeze](#coreum.asset.ft.v1.MsgFreeze)
- [MsgGloballyFreeze](#coreum.asset.ft.v1.MsgGloballyFreeze)
- [MsgGloballyUnfreeze](#coreum.asset.ft.v1.MsgGloballyUnfreeze)
- [MsgIssue](#coreum.asset.ft.v1.MsgIssue)
- [MsgMint](#coreum.asset.ft.v1.MsgMint)
- [MsgSetFrozen](#coreum.asset.ft.v1.MsgSetFrozen)
- [MsgSetWhitelistedLimit](#coreum.asset.ft.v1.MsgSetWhitelistedLimit)
- [MsgTransferAdmin](#coreum.asset.ft.v1.MsgTransferAdmin)
- [MsgUnfreeze](#coreum.asset.ft.v1.MsgUnfreeze)
- [MsgUpdateParams](#coreum.asset.ft.v1.MsgUpdateParams)
- [MsgUpgradeTokenV1](#coreum.asset.ft.v1.MsgUpgradeTokenV1)
Expand Down Expand Up @@ -1600,6 +1604,39 @@ the granter's account.



<a name="coreum.asset.ft.v1.EventAdminCleared"></a>

### EventAdminCleared



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `denom` | [string](#string) | | |
| `previous_admin` | [string](#string) | | |






<a name="coreum.asset.ft.v1.EventAdminTransferred"></a>

### EventAdminTransferred



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `denom` | [string](#string) | | |
| `previous_admin` | [string](#string) | | |
| `current_admin` | [string](#string) | | |






<a name="coreum.asset.ft.v1.EventAmountClawedBack"></a>

### EventAmountClawedBack
Expand Down Expand Up @@ -1659,6 +1696,7 @@ EventIssued is emitted on MsgIssue.
| `send_commission_rate` | [string](#string) | | |
| `uri` | [string](#string) | | |
| `uri_hash` | [string](#string) | | |
| `admin` | [string](#string) | | |



Expand Down Expand Up @@ -2154,11 +2192,12 @@ Definition defines the fungible token settings to store.
| `issuer` | [string](#string) | | |
| `features` | [Feature](#coreum.asset.ft.v1.Feature) | repeated | |
| `burn_rate` | [string](#string) | | `burn_rate is a number between 0 and 1 which will be multiplied by send amount to determine burn_amount. This value will be burnt on top of the send amount.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token issuer account.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token admin account.` |
| `version` | [uint32](#uint32) | | |
| `uri` | [string](#string) | | |
| `uri_hash` | [string](#string) | | |
| `extension_cw_address` | [string](#string) | | |
| `admin` | [string](#string) | | |



Expand Down Expand Up @@ -2205,11 +2244,12 @@ Token is a full representation of the fungible token.
| `globally_frozen` | [bool](#bool) | | |
| `features` | [Feature](#coreum.asset.ft.v1.Feature) | repeated | |
| `burn_rate` | [string](#string) | | `burn_rate is a number between 0 and 1 which will be multiplied by send amount to determine burn_amount. This value will be burnt on top of the send amount.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token issuer account.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token admin account.` |
| `version` | [uint32](#uint32) | | |
| `uri` | [string](#string) | | |
| `uri_hash` | [string](#string) | | |
| `extension_cw_address` | [string](#string) | | |
| `admin` | [string](#string) | | |



Expand Down Expand Up @@ -2360,6 +2400,22 @@ the source code for the extension.



<a name="coreum.asset.ft.v1.MsgClearAdmin"></a>

### MsgClearAdmin



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `sender` | [string](#string) | | |
| `denom` | [string](#string) | | |






<a name="coreum.asset.ft.v1.MsgFreeze"></a>

### MsgFreeze
Expand Down Expand Up @@ -2429,7 +2485,7 @@ MsgIssue defines message to issue new fungible token.
| `description` | [string](#string) | | |
| `features` | [Feature](#coreum.asset.ft.v1.Feature) | repeated | |
| `burn_rate` | [string](#string) | | `burn_rate is a number between 0 and 1 which will be multiplied by send amount to determine burn_amount. This value will be burnt on top of the send amount.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token issuer account.` |
| `send_commission_rate` | [string](#string) | | `send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine amount sent to the token admin account.` |
| `uri` | [string](#string) | | |
| `uri_hash` | [string](#string) | | |
| `extension_settings` | [ExtensionIssueSettings](#coreum.asset.ft.v1.ExtensionIssueSettings) | | `extension_settings must be provided in case wasm extensions are enabled.` |
Expand Down Expand Up @@ -2490,6 +2546,23 @@ MsgIssue defines message to issue new fungible token.



<a name="coreum.asset.ft.v1.MsgTransferAdmin"></a>

### MsgTransferAdmin



| Field | Type | Label | Description |
| ----- | ---- | ----- | ----------- |
| `sender` | [string](#string) | | |
| `account` | [string](#string) | | |
| `denom` | [string](#string) | | |






<a name="coreum.asset.ft.v1.MsgUnfreeze"></a>

### MsgUnfreeze
Expand Down Expand Up @@ -2569,8 +2642,10 @@ Msg defines the Msg service.
| `SetFrozen` | [MsgSetFrozen](#coreum.asset.ft.v1.MsgSetFrozen) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `SetFrozen sets the absolute value of frozen amount.` | |
| `GloballyFreeze` | [MsgGloballyFreeze](#coreum.asset.ft.v1.MsgGloballyFreeze) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `GloballyFreeze freezes fungible token so no operations are allowed with it before unfrozen. This operation is idempotent so global freeze of already frozen token does nothing.` | |
| `GloballyUnfreeze` | [MsgGloballyUnfreeze](#coreum.asset.ft.v1.MsgGloballyUnfreeze) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `GloballyUnfreeze unfreezes fungible token and unblocks basic operations on it. This operation is idempotent so global unfreezing of non-frozen token does nothing.` | |
| `Clawback` | [MsgClawback](#coreum.asset.ft.v1.MsgClawback) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `Clawback confiscates a part of fungible tokens from an account to the issuer, only if the clawback feature is enabled on that token.` | |
| `Clawback` | [MsgClawback](#coreum.asset.ft.v1.MsgClawback) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `Clawback confiscates a part of fungible tokens from an account to the admin, only if the clawback feature is enabled on that token.` | |
| `SetWhitelistedLimit` | [MsgSetWhitelistedLimit](#coreum.asset.ft.v1.MsgSetWhitelistedLimit) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `SetWhitelistedLimit sets the limit of how many tokens a specific account may hold.` | |
| `TransferAdmin` | [MsgTransferAdmin](#coreum.asset.ft.v1.MsgTransferAdmin) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `TransferAdmin changes admin of a fungible token.` | |
| `ClearAdmin` | [MsgClearAdmin](#coreum.asset.ft.v1.MsgClearAdmin) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `ClearAdmin removes admin of a fungible token.` | |
| `UpgradeTokenV1` | [MsgUpgradeTokenV1](#coreum.asset.ft.v1.MsgUpgradeTokenV1) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `TokenUpgradeV1 upgrades token to version V1.` | |
| `UpdateParams` | [MsgUpdateParams](#coreum.asset.ft.v1.MsgUpdateParams) | [EmptyResponse](#coreum.asset.ft.v1.EmptyResponse) | `UpdateParams is a governance operation to modify the parameters of the module. NOTE: all parameters must be provided.` | |

Expand Down
5 changes: 4 additions & 1 deletion docs/static/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9267,7 +9267,7 @@
},
"send_commission_rate": {
"type": "string",
"description": "send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine\namount sent to the token issuer account."
"description": "send_commission_rate is a number between 0 and 1 which will be multiplied by send amount to determine\namount sent to the token admin account."
},
"version": {
"type": "integer",
Expand All @@ -9281,6 +9281,9 @@
},
"extension_cw_address": {
"type": "string"
},
"admin": {
"type": "string"
}
},
"description": "Token is a full representation of the fungible token."
Expand Down
Loading

0 comments on commit 3fd3dd7

Please sign in to comment.