mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-04-22 02:07:55 +00:00
feat: add wDOT, wETH, wBTC mint functionality to DEX admin panel
This commit is contained in:
@@ -60,6 +60,9 @@ export const NATIVE_TOKEN_ID = -1;
|
||||
* - Asset 1: PEZ (Pezkuwi Token)
|
||||
* - Asset 2: wHEZ (Wrapped HEZ via tokenWrapper)
|
||||
* - Asset 1000: wUSDT (Wrapped USDT)
|
||||
* - Asset 1001: wDOT (Wrapped DOT)
|
||||
* - Asset 1002: wETH (Wrapped ETH)
|
||||
* - Asset 1003: wBTC (Wrapped BTC)
|
||||
*/
|
||||
export const KNOWN_TOKENS: Record<number, TokenInfo> = {
|
||||
[NATIVE_TOKEN_ID]: {
|
||||
@@ -90,6 +93,27 @@ export const KNOWN_TOKENS: Record<number, TokenInfo> = {
|
||||
decimals: 6,
|
||||
logo: '/shared/images/USDT(hez)logo.png',
|
||||
},
|
||||
1001: {
|
||||
id: 1001,
|
||||
symbol: 'wDOT',
|
||||
name: 'Wrapped DOT',
|
||||
decimals: 10,
|
||||
logo: '/shared/images/dot.png',
|
||||
},
|
||||
1002: {
|
||||
id: 1002,
|
||||
symbol: 'wETH',
|
||||
name: 'Wrapped ETH',
|
||||
decimals: 18,
|
||||
logo: '/shared/images/etherium.png',
|
||||
},
|
||||
1003: {
|
||||
id: 1003,
|
||||
symbol: 'wBTC',
|
||||
name: 'Wrapped BTC',
|
||||
decimals: 8,
|
||||
logo: '/shared/images/bitcoin.png',
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user