Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BlockchainApi] Fix exchange transactions #3565

Merged
merged 13 commits into from
Apr 24, 2020
Merged
8 changes: 4 additions & 4 deletions packages/blockchain-api/.env
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DEPLOY_ENV=local
EXCHANGE_RATES_API=https://apilayer.net/api
BLOCKSCOUT_API=https://alfajoresstaging-blockscout.celo-testnet.org/api
FIREBASE_DB=https://celo-org-mobile-integration.firebaseio.com
FAUCET_ADDRESS=0x47e172F6CfB6c7D01C1574fa3E2Be7CC73269D95
BLOCKSCOUT_API=https://alfajores-blockscout.celo-testnet.org/graphql
FIREBASE_DB=https://celo-org-mobile-alfajores.firebaseio.com
FAUCET_ADDRESS=0x456f41406B32c45D59E539e4BBA3D7898c3584dA
VERIFICATION_REWARDS_ADDRESS=0xb4fdaf5f3cd313654aa357299ada901b1d2dd3b5
WEB3_PROVIDER_URL=https://alfajoresstaging-forno.celo-testnet.org
WEB3_PROVIDER_URL=https://alfajores-forno.celo-testnet.org
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.alfajores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "production"
DEPLOY_ENV: "alfajores"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://alfajores-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://alfajores-blockscout.celo-testnet.org/graphql"
FIREBASE_DB: "https://celo-org-mobile-alfajores.firebaseio.com"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0x456f41406B32c45D59E539e4BBA3D7898c3584dA"
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.alfajoresstaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "development"
DEPLOY_ENV: "alfajoresstaging"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://alfajoresstaging-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://alfajoresstaging-blockscout.celo-testnet.org/graphql"
FIREBASE_DB: "https://celo-org-mobile-alfajoresstaging.firebaseio.com"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0xF4314cb9046bECe6AA54bb9533155434d0c76909"
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.baklavastaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "development"
DEPLOY_ENV: "baklavastaging"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://baklavastaging-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://baklavastaging-blockscout.celo-testnet.org/graphql"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0x4588ABb84e1BBEFc2BcF4b2296F785fB7AD9F285"
VERIFICATION_REWARDS_ADDRESS: "0xb4fdaf5f3cd313654aa357299ada901b1d2dd3b5"
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "development"
DEPLOY_ENV: "integration"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://integration-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://integration-blockscout.celo-testnet.org/graphql"
FIREBASE_DB: "https://celo-org-mobile-integration.firebaseio.com"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0x47e172F6CfB6c7D01C1574fa3E2Be7CC73269D95"
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.pilot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "production"
DEPLOY_ENV: "pilot"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://pilot-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://pilot-blockscout.celo-testnet.org/graphql"
FIREBASE_DB: "https://celo-org-mobile-pilot.firebaseio.com"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0x387bCb16Bfcd37AccEcF5c9eB2938E30d3aB8BF2"
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain-api/app.pilotstaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env_variables:
NODE_ENV: "development"
DEPLOY_ENV: "pilotstaging"
EXCHANGE_RATES_API: "https://apilayer.net/api"
BLOCKSCOUT_API: "https://pilotstaging-blockscout.celo-testnet.org/api"
BLOCKSCOUT_API: "https://pilotstaging-blockscout.celo-testnet.org/graphql"
FIREBASE_DB: "https://celo-org-mobile-pilotstaging.firebaseio.com"
# TODO Pull addresses from the build artifacts of the network in protocol/build
FAUCET_ADDRESS: "0x545DEBe3030B570731EDab192640804AC8Cf65CA"
Expand Down
Loading