|
| 1 | +/** |
| 2 | + * Copyright (c) TonTech. |
| 3 | + * |
| 4 | + * This source code is licensed under the MIT license found in the |
| 5 | + * LICENSE file in the root directory of this source tree. |
| 6 | + * |
| 7 | + */ |
| 8 | + |
| 9 | +import type { CryptoPaymentMethod } from '../types'; |
| 10 | + |
| 11 | +export const CRYPTO_PAYMENT_METHODS: CryptoPaymentMethod[] = [ |
| 12 | + { |
| 13 | + id: 'ton', |
| 14 | + symbol: 'TON', |
| 15 | + name: 'Toncoin', |
| 16 | + network: 'TON', |
| 17 | + networkId: 'ton', |
| 18 | + logo: 'https://asset.ston.fi/img/EQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAM9c/c8d21a3d93f9b574381e0a8d8f16d48b325dd8f54ce172f599c1e9d6c62f03f7', |
| 19 | + depositAddress: 'EQC0000000000000000000000000000000000000000000000001', |
| 20 | + }, |
| 21 | + { |
| 22 | + id: 'btc', |
| 23 | + symbol: 'BTC', |
| 24 | + name: 'Bitcoin', |
| 25 | + network: 'Bitcoin', |
| 26 | + networkId: 'bitcoin', |
| 27 | + logo: 'https://assets.coingecko.com/coins/images/1/standard/bitcoin.png', |
| 28 | + depositAddress: 'bc1qgq026aa8sttge7afejvml5kkxhjk39x53fs58', |
| 29 | + }, |
| 30 | + { |
| 31 | + id: 'usdt-tron', |
| 32 | + symbol: 'USDT', |
| 33 | + name: 'Tether', |
| 34 | + network: 'Tron', |
| 35 | + networkId: 'tron', |
| 36 | + logo: 'https://asset.ston.fi/img/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/1a87edfee9a28b05578853952e5effb8cc30af1e0fb90043aa2ce19dce490849', |
| 37 | + networkLogo: 'https://coin-images.coingecko.com/coins/images/22471/large/xOesRfpN_400x400.jpg', |
| 38 | + depositAddress: 'TXyz1234567890abcdefghijklmnopqrstuvwxy', |
| 39 | + }, |
| 40 | + { |
| 41 | + id: 'usdt-eth', |
| 42 | + symbol: 'USDT', |
| 43 | + name: 'Tether', |
| 44 | + network: 'Ethereum', |
| 45 | + networkId: 'ethereum', |
| 46 | + logo: 'https://asset.ston.fi/img/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/1a87edfee9a28b05578853952e5effb8cc30af1e0fb90043aa2ce19dce490849', |
| 47 | + networkLogo: 'https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png', |
| 48 | + depositAddress: '0x71C7656EC7ab88b098defB751B7401B5f6d8976F', |
| 49 | + }, |
| 50 | + { |
| 51 | + id: 'eth', |
| 52 | + symbol: 'ETH', |
| 53 | + name: 'Ethereum', |
| 54 | + network: 'Ethereum', |
| 55 | + networkId: 'ethereum', |
| 56 | + logo: 'https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png', |
| 57 | + depositAddress: '0x71C7656EC7ab88b098defB751B7401B5f6d8976F', |
| 58 | + }, |
| 59 | + { |
| 60 | + id: 'usdc', |
| 61 | + symbol: 'USDC', |
| 62 | + name: 'USD Coin', |
| 63 | + network: 'Ethereum', |
| 64 | + networkId: 'ethereum', |
| 65 | + logo: 'https://assets.coingecko.com/coins/images/6319/standard/USDC.png?1769615602', |
| 66 | + networkLogo: 'https://s2.coinmarketcap.com/static/img/coins/64x64/1027.png', |
| 67 | + depositAddress: '0x71C7656EC7ab88b098defB751B7401B5f6d8976F', |
| 68 | + }, |
| 69 | + { |
| 70 | + id: 'sol', |
| 71 | + symbol: 'SOL', |
| 72 | + name: 'Solana', |
| 73 | + network: 'Solana', |
| 74 | + networkId: 'solana', |
| 75 | + logo: 'https://s2.coinmarketcap.com/static/img/coins/64x64/5426.png', |
| 76 | + depositAddress: '9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin', |
| 77 | + }, |
| 78 | +]; |
0 commit comments