diff --git a/src/index.ts b/src/index.ts index 084c25e..aee02e3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,16 +14,13 @@ export const mTypes = { seed: "ShufflingSeed", count: "BlockNumber" }, - VestingInfo: { - locked: "Balance", - perBlock: "Balance", - startingBlock: "BlockNumber" + RpcAssetMetadata: { + token_id: "TokenId", + decimals: "u32", + name: "Vec", + symbol: "Vec" }, TokenId: "u32", - VestingInfosWithLockedAt: { - vestingInfosWithLockedAt: - "Vec<(VestingInfo, Balance)>" - } }; export const mRpc = { @@ -208,22 +205,16 @@ export const mRpc = { } ], type: "Option" - } - }, - vesting: { - getVestingLockedAt: { + }, + get_tradeable_tokens: { description: "", - params: [ - { - name: "who", - type: "AccountId" - }, - { - name: "token_id", - type: "TokenId" - } - ], - type: "VestingInfosWithLockedAt" + params: [], + type: "Vec>" + }, + get_liq_tokens_for_trading: { + description: "", + params: [], + type: "Vec" } } };