status-go/services/wallet/token/uniswap_tokenstore.go

13 lines
182 B
Go
Raw Normal View History

package token
type uniswapStore struct {
}
func newUniswapStore() *uniswapStore {
2023-06-14 13:16:15 +00:00
return &uniswapStore{}
}
2023-06-14 13:16:15 +00:00
func (ts *uniswapStore) GetTokens() []*Token {
return uniswapTokens
}