UNPKG
tegro-swap-sdk
Version:
latest (1.5.11)
1.5.11
SDK for building applications on top of Tegro.ag - Swap Aggregator on TON 💎.
tegro-swap-sdk
/
dist
/
types
/
asset.type.d.ts
14 lines
(13 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
type
Asset
= {
address
:
string
;
slug
:
string
;
symbol
:
string
;
name
:
string
;
image
:
string
;
decimals
:
number
;
exchangeRate
:
string
;
usdExchangeRate
:
number
;
verification
:
'whitelist'
|
'none'
;
totalSupply
:
string
;
fdv
:
number
; };