forked from forbole/big-dipper-2.0-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate smart contracts execution tab
- Loading branch information
avalkov
committed
Aug 15, 2022
1 parent
8ed51a8
commit 7ee335f
Showing
13 changed files
with
1,261 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
NEXT_PUBLIC_GRAPHQL_URL=http://localhost:8080/v1/graphql | ||
NEXT_PUBLIC_GRAPHQL_WS=ws://localhost:8080/v1/graphql | ||
NEXT_PUBLIC_GRAPHQL_URL=http://34.122.182.3:8080/v1/graphql | ||
NEXT_PUBLIC_GRAPHQL_WS=ws://34.122.182.3:8080/v1/graphql | ||
NODE_ENV=development | ||
PORT=3000 | ||
NEXT_PUBLIC_URL=http://localhost:3000 | ||
NEXT_PUBLIC_WS_CHAIN_URL=ws://localhost:26657/websocket | ||
NEXT_PUBLIC_WS_CHAIN_URL=ws://34.123.153.6:26657/websocket | ||
NEXT_PUBLIC_CHAIN_STATUS=testnet | ||
NEXT_PUBLIC_CONTRACTS_URL=http://localhost:3333 | ||
NEXT_PUBLIC_RPC_URL=http://34.123.153.6:26657 | ||
# TODO: This can be fetched direclty from hasura | ||
NEXT_PUBLIC_CHAIN_ID=cudos-testnet-private-3 | ||
NEXT_PUBLIC_GAS_PRICE=5000000000000acudos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: '3.6' | ||
services: | ||
big-dipper-2: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile-dev | ||
args: | ||
NEXT_PUBLIC_GRAPHQL_URL: ${NEXT_PUBLIC_GRAPHQL_URL} | ||
NEXT_PUBLIC_GRAPHQL_WS: ${NEXT_PUBLIC_GRAPHQL_WS} | ||
NEXT_PUBLIC_URL: ${NEXT_PUBLIC_URL} | ||
NEXT_PUBLIC_WS_CHAIN_URL: ${NEXT_PUBLIC_WS_CHAIN_URL} | ||
NEXT_PUBLIC_CHAIN_STATUS: ${NEXT_PUBLIC_CHAIN_STATUS} | ||
NODE_ENV: ${NODE_ENV} | ||
PORT: ${PORT} | ||
restart: always | ||
ports: | ||
- "3000:3000" |
Oops, something went wrong.