File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export function getWagmiChainConfigs() {
7171 if ( config . status === 'testing' ) continue ;
7272 if ( ! chain ) throw Error ( `no viem entry found for chain ${ config . name } ` ) ;
7373
74- chain . rpcUrls . default . http [ 0 ] = `https://rpc2.euler.finance/maglev/evm/${ chain . id } ` ;
74+ if ( chain . id !== 31337 ) chain . rpcUrls . default . http [ 0 ] = `https://rpc2.euler.finance/maglev/evm/${ chain . id } ` ;
7575
7676 chains . push ( chain ) ;
7777 }
Original file line number Diff line number Diff line change @@ -1033,7 +1033,6 @@ export function EulerSwapBrowse(props) {
10331033 if ( ! eulerSwapQuotes && sortBy === 'liquidity' ) {
10341034 rows . sort ( ( a , b ) => bigintSign ( b . liquidity - a . liquidity ) ) ;
10351035 }
1036- console . log ( rows [ 0 ] ) ;
10371036
10381037 let amountInput = ( ) => {
10391038 return < div className = "field" >
You can’t perform that action at this time.
0 commit comments