mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
fic default eth tokens list
This commit is contained in:
parent
7a9acb6649
commit
c89ae56135
1 changed files with 3 additions and 3 deletions
|
@ -2,18 +2,18 @@ import 'package:stackwallet/models/ethereum/erc20_token.dart';
|
||||||
import 'package:stackwallet/models/ethereum/eth_token.dart';
|
import 'package:stackwallet/models/ethereum/eth_token.dart';
|
||||||
|
|
||||||
abstract class DefaultTokens {
|
abstract class DefaultTokens {
|
||||||
static List<EthContractInfo> list = [
|
static const List<EthContractInfo> list = [
|
||||||
Erc20ContractInfo(
|
Erc20ContractInfo(
|
||||||
contractAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
contractAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
||||||
name: "USD Coin",
|
name: "USD Coin",
|
||||||
symbol: "USDC",
|
symbol: "USDC",
|
||||||
decimals: 18,
|
decimals: 6,
|
||||||
),
|
),
|
||||||
Erc20ContractInfo(
|
Erc20ContractInfo(
|
||||||
contractAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
contractAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
||||||
name: "Tether",
|
name: "Tether",
|
||||||
symbol: "USDT",
|
symbol: "USDT",
|
||||||
decimals: 18,
|
decimals: 6,
|
||||||
),
|
),
|
||||||
Erc20ContractInfo(
|
Erc20ContractInfo(
|
||||||
contractAddress: "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
|
contractAddress: "0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
|
||||||
|
|
Loading…
Reference in a new issue