UNPKG
@swaptoshi/dex-module
Version:
latest (1.0.0-alpha.0)
1.0.0-alpha.0
Klayr decentralized exchange (dex) on-chain module
swaptoshi.com
Swaptoshi/swaptoshi-sdk
@swaptoshi/dex-module
/
dist
/
schema
/
stores
/
supported_token.d.ts
19 lines
(18 loc)
•
394 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export declare const supportedTokenStoreSchema:
{
$id:
string;
type:
string;
required:
string
[]
;
properties:
{
supportAll:
{
dataType:
string;
fieldNumber:
number;
}
;
supported:
{
type:
string;
fieldNumber:
number;
items:
{
dataType:
string;
}
;
}
;
}
;
}
;