status-go/services/wallet/token/uniswap_tokenstore.go
2023-06-16 09:00:06 +01:00

13 lines
182 B
Go

package token
type uniswapStore struct {
}
func newUniswapStore() *uniswapStore {
return &uniswapStore{}
}
func (ts *uniswapStore) GetTokens() []*Token {
return uniswapTokens
}