Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b0431320d7 |
@@ -1,29 +1,9 @@
|
|||||||
[
|
[
|
||||||
{
|
|
||||||
"chainId": "42161",
|
|
||||||
"tokenAddress": "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8",
|
|
||||||
"name": "Arbitrum"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"chainId": "43114",
|
|
||||||
"tokenAddress": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E",
|
|
||||||
"name": "Avalanche"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"chainId": "8453",
|
|
||||||
"tokenAddress": "0x66627F389ae46D881773B7131139b2411980E09E",
|
|
||||||
"name": "Base"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"chainId": "1",
|
"chainId": "1",
|
||||||
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
"tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
||||||
"name": "Ethereum"
|
"name": "Ethereum"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"chainId": "10",
|
|
||||||
"tokenAddress": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607",
|
|
||||||
"name": "OP Mainnet"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"chainId": "421613",
|
"chainId": "421613",
|
||||||
"tokenAddress": "0xfd064a18f3bf249cf1f87fc203e90d8f650f2d63",
|
"tokenAddress": "0xfd064a18f3bf249cf1f87fc203e90d8f650f2d63",
|
||||||
|
|||||||
@@ -65,9 +65,13 @@ class DydxChainTransactions implements AbacusDYDXChainTransactionsProtocol {
|
|||||||
}
|
}
|
||||||
|
|
||||||
setNobleWallet(nobleWallet: LocalWallet) {
|
setNobleWallet(nobleWallet: LocalWallet) {
|
||||||
this.nobleWallet = nobleWallet;
|
try {
|
||||||
if (this.nobleClient) {
|
this.nobleWallet = nobleWallet;
|
||||||
this.nobleClient.connect(nobleWallet);
|
if (this.nobleClient) {
|
||||||
|
this.nobleClient.connect(nobleWallet);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
log('DydxChainTransactions/setNobleWallet', e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,10 +118,15 @@ class DydxChainTransactions implements AbacusDYDXChainTransactionsProtocol {
|
|||||||
|
|
||||||
this.compositeClient = compositeClient;
|
this.compositeClient = compositeClient;
|
||||||
|
|
||||||
if (nobleValidatorUrl) {
|
try {
|
||||||
this.nobleClient = new NobleClient(nobleValidatorUrl);
|
if (nobleValidatorUrl) {
|
||||||
if (this.nobleWallet) await this.nobleClient.connect(this.nobleWallet);
|
this.nobleClient = new NobleClient(nobleValidatorUrl);
|
||||||
|
if (this.nobleWallet) await this.nobleClient.connect(this.nobleWallet);
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
log('DydxChainTransactions/connectNetwork/NobleClient', e);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Dispatch custom event to notify other parts of the app that the network has been connected
|
// Dispatch custom event to notify other parts of the app that the network has been connected
|
||||||
const customEvent = new CustomEvent('abacus:connectNetwork', {
|
const customEvent = new CustomEvent('abacus:connectNetwork', {
|
||||||
detail: parsedParams,
|
detail: parsedParams,
|
||||||
|
|||||||
@@ -57,7 +57,6 @@ export const TokenSelectMenu = ({ selectedToken, onSelectToken }: ElementProps)
|
|||||||
<Tag>{type === TransferType.deposit ? 'USDC' : selectedToken?.symbol}</Tag>
|
<Tag>{type === TransferType.deposit ? 'USDC' : selectedToken?.symbol}</Tag>
|
||||||
</>
|
</>
|
||||||
),
|
),
|
||||||
tooltip: 'swap',
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user