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

Integrate smart contracts execution tab #56

Open
wants to merge 2 commits into
base: cudos-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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://34.172.163.122: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