File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
packages/sharing-smart-contract Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 8585
8686 - name : Test deployment script
8787 working-directory : packages/sharing-smart-contract
88- run : npm run deploy -- --network local-bellecour-fork
88+ run : |
89+ POCO_ADDRESS=0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f \
90+ DATASET_REGISTRY_ADDRESS=0x799DAa22654128d0C64d5b79eac9283008158730 \
91+ npm run deploy -- --network local-bellecour-fork
8992
9093 - name : Upgrade test
9194 working-directory : packages/sharing-smart-contract
Original file line number Diff line number Diff line change 11// Hardhat Ignition does not support ESM modules, so we use CommonJS syntax.
22// TODO refactor this to use ESM syntax when Hardhat Ignition supports it.
33
4+ // TODO define addresses by network.
5+
46module . exports = {
57 POCO_ADDRESS : '0x3eca1B216A7DF1C7689aEb259fFB83ADFB894E7f' ,
68 DATASET_REGISTRY_ADDRESS : '0x799DAa22654128d0C64d5b79eac9283008158730' ,
Original file line number Diff line number Diff line change @@ -62,4 +62,7 @@ async function isCreatexFactorySupported() {
6262 return code !== '0x' ;
6363}
6464
65- main ( ) . catch ( console . error ) ;
65+ main ( ) . catch ( ( error ) => {
66+ console . error ( error ) ;
67+ process . exitCode = 1 ;
68+ } ) ;
You can’t perform that action at this time.
0 commit comments