mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
16 lines
251 B
Go
16 lines
251 B
Go
|
package config
|
||
|
|
||
|
import "github.com/trustwallet/go-primitives/coin"
|
||
|
|
||
|
// TODO: Move to go-libs.
|
||
|
var StackingChains = []coin.Coin{
|
||
|
coin.Tezos(),
|
||
|
coin.Cosmos(),
|
||
|
coin.Iotex(),
|
||
|
coin.Tron(),
|
||
|
coin.Waves(),
|
||
|
coin.Kava(),
|
||
|
coin.Terra(),
|
||
|
coin.Binance(),
|
||
|
}
|