6d1d4bce6b
* Commented out package-lock.json * Moved over changes from https://github.com/poanetwork/bridge-ui/pull/217 * Brought back package-lock.json used in e2e. * Edited postinstall to work for sub-repo npm install * Using local oracle * Moved ui/e2e-script to ui-e2e * Introduced ui-e2e workspace. * Updated paths,. removed bridge dockerfile. * Updated e2e script after extracting. * Introduced ui-e2e into CI * Disabled ui-e2e * Updated readme.
15 lines
410 B
Bash
Executable File
15 lines
410 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd submodules/poa-bridge-contracts/deploy
|
|
echo "Deploying Native-Erc contracts"
|
|
node deploy.js
|
|
echo "Deploying erc20 contract"
|
|
node deployERC20.js
|
|
cp erc-contracts.env .env
|
|
echo "Deploying erc20-erc20 contracts"
|
|
node deploy.js
|
|
cp erc-native-contracts.env .env
|
|
echo "Deploying Block Reward contract"
|
|
node src/utils/deployBlockReward.js
|
|
echo "Deploying erc20-native contracts"
|
|
node deploy.js
|