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

chore: use bitcoin core wallet script #3294

Merged
merged 1 commit into from
Dec 17, 2024
Merged
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
4 changes: 2 additions & 2 deletions cmd/zetae2e/config/local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ rpcs:
evm: "http://localhost:8545"
bitcoin:
host: "localhost:18443"
user: "smoketest"
pass: "123"
user: "admin"
pass: "admin"
http_post_mode: true
disable_tls: true
params: regnet
Expand Down
4 changes: 2 additions & 2 deletions cmd/zetae2e/config/localnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ rpcs:
evm: "http://eth:8545"
bitcoin:
host: "bitcoin:18443"
user: "smoketest"
pass: "123"
user: "admin"
pass: "admin"
http_post_mode: true
disable_tls: true
params: regnet
Expand Down
18 changes: 8 additions & 10 deletions contrib/localnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,23 +198,21 @@ services:
ipv4_address: 172.20.0.102

bitcoin:
image: ghcr.io/zeta-chain/bitcoin-core-docker:28.0
image: ghcr.io/zeta-chain/bitcoin-core-docker:a94b52f
container_name: bitcoin
hostname: bitcoin
networks:
mynetwork:
ipv4_address: 172.20.0.101
ports:
- "18443:18443"
command:
-printtoconsole
-regtest=1
-rpcallowip=0.0.0.0/0
-rpcbind=0.0.0.0
-rpcauth=smoketest:63acf9b8dccecce914d85ff8c044b78b$$5892f9bbc84f4364e79f0970039f88bdd823f168d4acc76099ab97b14a766a99
-txindex=1
-deprecatedrpc=create_bdb
-deprecatedrpc=warnings
command: /opt/wallet.sh
environment:
- CHAIN=regtest
- RPC_USER=smoketest
- RPC_PASSWORD=123
- ADMIN_RPC_USER=admin
- ADMIN_RPC_PASSWORD=admin

solana:
image: solana-local:latest
Expand Down
Loading