Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Remove the support for all tokens on Lisk mainchain (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyshemyakov committed Sep 15, 2023
1 parent dc4804f commit be10096
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions proposals/lip-0063.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Discussions-To: https://research.lisk.com/t/define-mainnet-configuration-and-mig
Status: Draft
Type: Standards Track
Created: 2022-04-06
Updated: 2023-08-08
Updated: 2023-09-15
Requires: 0060
```

Expand Down Expand Up @@ -84,16 +84,6 @@ This value will be used for every validator account in the snapshot block.
<td>Token ID of the LSK token for Mainnet, see <a href="https://github.com/LiskHQ/lips/blob/main/proposals/lip-0051.md#token-id">LIP 0051</a>.
</td>
</tr>
<tr>
<td><code>ALL_SUPPORTED_TOKENS_KEY</code>
</td>
<td>bytes
</td>
<td>empty byte string
</td>
<td>The key for the <a href="https://github.com/LiskHQ/lips/blob/main/proposals/lip-0051.md#supported-tokens-substore">supported tokens substore</a> of the Token module to specify that all tokens are supported.
</td>
</tr>
<tr>
<td><code>MODULE_NAME_POS</code>
</td>
Expand Down Expand Up @@ -445,10 +435,7 @@ def addTokenModuleEntry():
tokenObj.userSubstore = createUserSubstoreArray()
tokenObj.supplySubstore = createSupplySubstoreArray()
tokenObj.escrowSubstore = []
# support all tokens
tokenObj.supportedTokensSubstore = [
{"chainID": ALL_SUPPORTED_TOKENS_KEY, "supportedTokenIDs": []}
]
tokenObj.supportedTokensSubstore = []
data = serialization of tokenObj using genesisTokenStoreSchema
append {"module": MODULE_NAME_TOKEN, "data": data} to b.assets

Expand Down

0 comments on commit be10096

Please sign in to comment.