Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/currency/src/chains/declarative/data/nile.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export const chainId = 'nile';

// Nile is Tron's test network
export const testnet = true;

// Test tokens on Nile testnet
// Note: These are testnet token addresses, not mainnet
export const currencies = {
// Add testnet token addresses as needed
};
19 changes: 19 additions & 0 deletions packages/currency/src/chains/declarative/data/tron.ts
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
export const chainId = 'tron';

// Tron mainnet configuration
export const testnet = false;

// Common TRC20 tokens on Tron
export const currencies = {
// USDT-TRC20 - the most widely used stablecoin on Tron
TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t: {
name: 'Tether USD',
symbol: 'USDT',
decimals: 6,
},
// USDC on Tron
TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8: {
name: 'USD Coin',
symbol: 'USDC',
decimals: 6,
},
};