Skip to content

Commit

Permalink
Integrate smart contracts execution tab
Browse files Browse the repository at this point in the history
  • Loading branch information
avalkov committed Aug 15, 2022
1 parent 8ed51a8 commit 7ee335f
Show file tree
Hide file tree
Showing 13 changed files with 1,261 additions and 55 deletions.
11 changes: 8 additions & 3 deletions .env-dev
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
5 changes: 5 additions & 0 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@ PORT=3000
NEXT_PUBLIC_URL=http://localhost:3000
NEXT_PUBLIC_RPC_WEBSOCKET=http://localhost:26657/websocket
NEXT_PUBLIC_CHAIN_TYPE=testnet
NEXT_PUBLIC_CONTRACTS_URL=http://localhost:3333
NEXT_PUBLIC_RPC_URL=http://localhost:26657
# TODO: This can be fetched direclty from hasura
NEXT_PUBLIC_CHAIN_ID=cudos-testnet-private-3
NEXT_PUBLIC_GAS_PRICE=5000000000000acudos
17 changes: 17 additions & 0 deletions docker-compose.yaml
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"
Loading

0 comments on commit 7ee335f

Please sign in to comment.