mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 06:36:32 +00:00
13 lines
182 B
Go
13 lines
182 B
Go
package token
|
|
|
|
type uniswapStore struct {
|
|
}
|
|
|
|
func newUniswapStore() *uniswapStore {
|
|
return &uniswapStore{}
|
|
}
|
|
|
|
func (ts *uniswapStore) GetTokens() []*Token {
|
|
return uniswapTokens
|
|
}
|