File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const cwd = path.dirname(fs.realpathSync(__filename));
5
5
6
6
// Get the smart contract version from the `raiden-contracts`
7
7
// sub module.
8
- const contracts_version = '1.0.0 ' ;
8
+ const contracts_version = '0.50.1 ' ;
9
9
// TODO: Enable when https://github.com/raiden-network/raiden-contracts/issues/1287 done
10
10
/*
11
11
const { contracts_version } = require(path.join(
Original file line number Diff line number Diff line change @@ -55,8 +55,10 @@ import {
55
55
putRaidenState ,
56
56
replaceDatabase ,
57
57
} from './db/utils' ;
58
+ import arbitrumOneDeploy from './deployment/deployment_arbitrum-one.json' ;
58
59
import goerliDeploy from './deployment/deployment_goerli_unstable.json' ;
59
60
import rinkebyArbitrumDeploy from './deployment/deployment_rinkeby-arbitrum.json' ;
61
+ import arbitrumOneServicesDeploy from './deployment/deployment_services_arbitrum-one.json' ;
60
62
import goerliServicesDeploy from './deployment/deployment_services_goerli_unstable.json' ;
61
63
import rinkebyArbitrumServicesDeploy from './deployment/deployment_services_rinkeby-arbitrum.json' ;
62
64
import { makeInitialState , RaidenState } from './state' ;
@@ -95,6 +97,9 @@ function getContracts(network: Network): ContractsInfo {
95
97
case 'arbitrum-rinkeby' :
96
98
info = { ...rinkebyArbitrumDeploy . contracts , ...rinkebyArbitrumServicesDeploy . contracts } ;
97
99
break ;
100
+ case 'arbitrum' :
101
+ info = { ...arbitrumOneDeploy . contracts , ...arbitrumOneServicesDeploy . contracts } ;
102
+ break ;
98
103
case 'goerli' :
99
104
info = { ...goerliDeploy . contracts , ...goerliServicesDeploy . contracts } ;
100
105
break ;
Original file line number Diff line number Diff line change @@ -321,6 +321,9 @@ export function getNetworkName(network: Network) {
321
321
case 'arbitrum-rinkeby' :
322
322
name = 'rinkeby-arbitrum' ;
323
323
break ;
324
+ case 'arbitrum' :
325
+ name = 'arbitrum-one' ;
326
+ break ;
324
327
case 'unknown' :
325
328
name = network . chainId . toString ( ) ;
326
329
break ;
You can’t perform that action at this time.
0 commit comments