File tree Expand file tree Collapse file tree 6 files changed +45
-3
lines changed Expand file tree Collapse file tree 6 files changed +45
-3
lines changed Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -80,7 +80,9 @@ const EXCEPTIONS = [
80
80
'@ledgerhq/hw-app-eth' , // issue with imports
81
81
'@ledgerhq/live-common' , // issue with imports
82
82
'bip39' , // breaks
83
- '@myetherwallet/eth2-keystore'
83
+ '@myetherwallet/eth2-keystore' ,
84
+ 'ethers' ,
85
+ 'commitlint'
84
86
] ;
85
87
const CUSTOM_DIST = {
86
88
[ 'babel-core' ] : 'bridge'
Original file line number Diff line number Diff line change
1
+ import { ARB } from '../types' ;
2
+ export default {
3
+ type : ARB ,
4
+ service : 'aurora.dev-ws' ,
5
+ url : 'wss://nodes.mewapi.io/ws/arb' ,
6
+ port : 443 ,
7
+ auth : false ,
8
+ username : '' ,
9
+ password : ''
10
+ } ;
Original file line number Diff line number Diff line change
1
+ import arbitrum from '@/assets/images/networks/arbitrum.svg' ;
2
+ export default {
3
+ name : 'ARB' ,
4
+ name_long : 'Arbitrum' ,
5
+ homePage : 'https://arbitrum.io/' ,
6
+ blockExplorer : 'arbiscan' ,
7
+ blockExplorerTX : 'https://arbiscan.io/tx/[[txHash]]' ,
8
+ blockExplorerAddr : 'https://arbiscan.io/address/[[address]]' ,
9
+ chainID : 42161 ,
10
+ tokens : import ( '@/_generated/tokens/tokens-arb.json' ) . then (
11
+ module => module . default
12
+ ) ,
13
+ contracts : import ( '@/_generated/contracts/contract-abi-arb.json' ) . then (
14
+ module => module . default
15
+ ) ,
16
+ icon : arbitrum ,
17
+ currencyName : 'ETH' ,
18
+ isTestNetwork : false ,
19
+ isEthVMSupported : {
20
+ supported : false ,
21
+ url : null ,
22
+ websocket : null
23
+ } ,
24
+ gasPriceMultiplier : 1 ,
25
+ canBuy : false ,
26
+ coingeckoID : 'ethereum' ,
27
+ balanceApi : 'https://partners.mewapi.io/balances/arb/'
28
+ } ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import MOONBEAM from './MOONBEAM';
10
10
import MOONRIVER from './MOONRIVER' ;
11
11
import ROOTSTOCK from './ROOTSTOCK' ;
12
12
import AURORA from './AURORA' ;
13
+ import ARB from './ARB' ;
13
14
// import AVAX from './AVAX';
14
15
import FTM from './FTM' ;
15
16
import GNO from './GNO' ;
@@ -29,6 +30,7 @@ export {
29
30
MOONRIVER ,
30
31
ROOTSTOCK ,
31
32
AURORA ,
33
+ ARB ,
32
34
// AVAX,
33
35
FTM ,
34
36
GNO ,
You can’t perform that action at this time.
0 commit comments