foxnut / go-hdwallet

A multi-cryptocurrency HD wallet implementated by Golang.
MIT License
105 stars 56 forks source link

About wallet types #6

Open thienhaole92 opened 4 years ago

thienhaole92 commented 4 years ago

` // zero is deafult of uint32 const ( Zero uint32 = 0 ZeroQuote uint32 = 0x80000000 BTCToken uint32 = 0x10000000 ETHToken uint32 = 0x20000000 )

// wallet type from bip44 const ( // https://github.com/satoshilabs/slips/blob/master/slip-0044.md#registered-coin-types BTC = ZeroQuote + 0 BTCTestnet = ZeroQuote + 1 LTC = ZeroQuote + 2 DOGE = ZeroQuote + 3 DASH = ZeroQuote + 5 ETH = ZeroQuote + 60 ETC = ZeroQuote + 61 BCH = ZeroQuote + 145 QTUM = ZeroQuote + 2301

// btc token
USDT = BTCToken + 1

// eth token
IOST = ETHToken + 1
USDC = ETHToken + 2

) ` I can find coint wallet types in this link https://github.com/satoshilabs/slips/blob/master/slip-0044.md#registered-coin-types But I can not find USDT IOST USDC wallet type in the link above. Where do I find it?

Thank for great code