Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoch05 committed Oct 19, 2023
1 parent 2e2a759 commit 926ccb8
Showing 1 changed file with 35 additions and 35 deletions.
70 changes: 35 additions & 35 deletions apollo/src/lnbridgev20/transfer.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export class TransferService extends BaseTransferServiceT2 {
address: '0x9469D013805bFfB7D3DEBe5E7839237e535ec483',
protocolFee: 100000000000000000000,
decimals: 18,
}
]
},
],
},
{
chainId: 42161,
Expand All @@ -59,9 +59,9 @@ export class TransferService extends BaseTransferServiceT2 {
address: '0x9e523234D36973f9e38642886197D023C88e307e',
protocolFee: 100000000000000000000,
decimals: 18,
}
]
}
},
],
},
];

testChainTransfers: PartnerT2[] = [
Expand Down Expand Up @@ -317,36 +317,36 @@ export class TransferService extends BaseTransferServiceT2 {

// message channel is used to withdraw liquidity
public readonly messageChannel = {
"goerli": {
"arbitrum-goerli": "arbitrum-l2",
"linea-goerli": "linea-l2",
"mantle-goerli": "axelar",
"zksync-goerli": "layerzero",
},
"arbitrum-goerli": {
"goerli": "arbitrum-l2",
"linea-goerli": "layerzero",
"mantle-goerli": "layerzero",
"zksync-goerli": "layerzero",
},
"linea-goerli": {
"goerli": "linea-l2",
"arbitrum-goerli": "layerzero",
"mantle-goerli": "layerzero",
"zksync-goerli": "layerzero",
},
"mantle-goerli": {
"goerli": "axelar",
"arbitrum-goerli": "layerzero",
"linea-goerli": "layerzero",
"zksync-goerli": "layerzero",
},
"zksync-goerli": {
"goerli": "layerzero",
"arbitrum-goerli": "layerzero",
"linea-goerli": "layerzero",
"mantle-goerli": "layerzero",
}
goerli: {
'arbitrum-goerli': 'arbitrum-l2',
'linea-goerli': 'linea-l2',
'mantle-goerli': 'axelar',
'zksync-goerli': 'layerzero',
},
'arbitrum-goerli': {
goerli: 'arbitrum-l2',
'linea-goerli': 'layerzero',
'mantle-goerli': 'layerzero',
'zksync-goerli': 'layerzero',
},
'linea-goerli': {
goerli: 'linea-l2',
'arbitrum-goerli': 'layerzero',
'mantle-goerli': 'layerzero',
'zksync-goerli': 'layerzero',
},
'mantle-goerli': {
goerli: 'axelar',
'arbitrum-goerli': 'layerzero',
'linea-goerli': 'layerzero',
'zksync-goerli': 'layerzero',
},
'zksync-goerli': {
goerli: 'layerzero',
'arbitrum-goerli': 'layerzero',
'linea-goerli': 'layerzero',
'mantle-goerli': 'layerzero',
},
};
readonly isTest = this.configService.get<string>('CHAIN_TYPE') === 'test';

Expand Down

0 comments on commit 926ccb8

Please sign in to comment.