1
0
mirror of https://github.com/oceanprotocol/barge.git synced 2024-11-22 09:47:04 +01:00

Fix brizo

This commit is contained in:
Javier Cortejoso 2018-12-07 12:25:28 +01:00
parent 5a07e99fcc
commit 22d0dfd42c
No known key found for this signature in database
GPG Key ID: FBEEF3131E39EBCF
4 changed files with 6 additions and 3 deletions

View File

@ -15,4 +15,4 @@ services:
KEEPER_URL: ${KEEPER_RPC_URL}
LOCAL_CONTRACTS: ${KEEPER_DEPLOY_CONTRACTS}
volumes:
- ${KEEPER_ARTIFACTS_FOLDER}:/usr/local/artifacts:ro
- ${KEEPER_ARTIFACTS_FOLDER}:/usr/local/keeper-contracts:ro

View File

@ -7,6 +7,7 @@ services:
ipv4_address: 172.15.0.14
environment:
DEPLOY_CONTRACTS: ${KEEPER_DEPLOY_CONTRACTS}
LOCAL_CONTRACTS: ${KEEPER_DEPLOY_CONTRACTS}
REUSE_DATABASE: ${GANACHE_REUSE_DATABASE}
DATABASE_PATH: "/ganache-db"
NETWORK_NAME: ${KEEPER_NETWORK_NAME}

View File

@ -22,7 +22,7 @@
"accountStartNonce": "0x0",
"maximumExtraDataSize": "0x20",
"minGasLimit": "0x1388",
"networkID": "0x2324",
"networkID": "0x1234",
"eip140Transition": "0x0",
"eip211Transition": "0x0",
"eip214Transition": "0x0",
@ -161,4 +161,4 @@
"balance": "0x200000000000000000000000000000000000000000000000"
}
}
}
}

View File

@ -101,6 +101,7 @@ while :; do
export NODE_FILE=${COMPOSE_DIR}/nodes/ganache_node.yml
export KEEPER_NETWORK_NAME="development"
export KEEPER_DEPLOY_CONTRACTS="true"
rm -f ${KEEPER_ARTIFACTS_FOLDER}/*.development.json
printf $COLOR_Y'Starting with local Ganache node...\n\n'$COLOR_RESET
;;
# connects you to nile ocean testnet
@ -115,6 +116,7 @@ while :; do
export NODE_FILE=${COMPOSE_DIR}/nodes/spree_node.yml
export KEEPER_NETWORK_NAME="spree"
export KEEPER_DEPLOY_CONTRACTS="true"
rm -f ${KEEPER_ARTIFACTS_FOLDER}/*.development.json
printf $COLOR_Y'Starting with local Spree node...\n\n'$COLOR_RESET
;;
#################################################