This commit is contained in:
Tim Olson
2024-01-09 13:30:08 -04:00
parent a65a1fffae
commit 0e5a4bac6d
3 changed files with 6 additions and 6 deletions

View File

@@ -2,15 +2,15 @@ import {ethers} from "ethers";
const UNISWAPV3_POOL_INIT_CODE_HASH = '0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54' const UNISWAPV3_POOL_INIT_CODE_HASH = '0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54'
const uniswapV3Addresses = { const uniswapV3Addresses = {
1337: {
factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984',
},
42161: { 42161: {
factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984', factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984',
}, },
31337: { 31337: {
factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984', factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984',
}, },
53261: {
factory: '0x1F98431c8aD98523631AE4a59f267346ea31F984',
},
} }
export function uniswapV3PoolAddress(chainId, tokenAddrA, tokenAddrB, fee) { export function uniswapV3PoolAddress(chainId, tokenAddrA, tokenAddrB, fee) {

View File

@@ -40,7 +40,7 @@
<ul> <ul>
<li>Name: Dexorder Alpha</li> <li>Name: Dexorder Alpha</li>
<li>New RPC URL: https://rpc.alpha.dexorder.trade</li> <li>New RPC URL: https://rpc.alpha.dexorder.trade</li>
<li>Chain ID: 53261</li> <li>Chain ID: 1337</li>
<li>Currency Symbol: TETH</li> <li>Currency Symbol: TETH</li>
</ul> </ul>
</li> </li>

View File

@@ -89,9 +89,9 @@ const arbitrumTokens = [
]; ];
const _knownTokens = { const _knownTokens = {
42161: arbitrumTokens, 1337: [], // only show the two mock coins
31337: arbitrumTokens, 31337: arbitrumTokens,
53261: [], // only show the two mock coins 42161: arbitrumTokens,
}; };
for( const chainId in _knownTokens ) { for( const chainId in _knownTokens ) {