Skip to content

Commit e79819c

Browse files
authored
arkd: migrate to 7070 as default port (#246)
1 parent cfb6f9e commit e79819c

File tree

13 files changed

+22
-22
lines changed

13 files changed

+22
-22
lines changed

docker-compose.clark.regtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
- ARK_NO_TLS=true
1818
- ARK_NO_MACAROONS=true
1919
ports:
20-
- "6000:6000"
20+
- "7070:7070"
2121
volumes:
2222
- clarkd:/app/data
2323
- clark:/app/wallet-data

docker-compose.regtest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ services:
3333
- ARK_ROUND_LIFETIME=512
3434
- ARK_DB_TYPE=sqlite
3535
- ARK_TX_BUILDER_TYPE=covenant
36-
- ARK_PORT=8080
36+
- ARK_PORT=6060
3737
- ARK_NO_TLS=true
3838
- ARK_NO_MACAROONS=true
3939
ports:
40-
- "8080:8080"
40+
- "6060:6060"
4141
volumes:
4242
- arkd:/app/data
4343
- ark:/app/wallet-data

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ services:
3131
- ARK_ROUND_INTERVAL=10
3232
- ARK_NETWORK=liquidtestnet
3333
ports:
34-
- "8080:6000"
34+
- "7070:7070"
3535
volumes:
3636
- arkd:/app/data
3737
- ark:/app/wallet-data

pkg/client-sdk/example/covenant/alice_to_bob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
var (
18-
aspUrl = "localhost:8080"
18+
aspUrl = "localhost:6060"
1919
clientType = arksdk.GrpcClient
2020
password = "password"
2121
walletType = arksdk.SingleKeyWallet

pkg/client-sdk/example/covenant/wasm/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1>Ark SDK WASM Example</h1>
146146
<h2>Wallet</h2>
147147
<div>
148148
<button onclick="initWallet()">Init</button>
149-
<input type="text" id="aspUrl" placeholder="http://localhost:8080">
149+
<input type="text" id="aspUrl" placeholder="http://localhost:6060">
150150
<input type="password" id="i_password" placeholder="password">
151151
<input type="text" id="prvkey" placeholder="Optional: privkey (hex)">
152152
</div>

pkg/client-sdk/example/covenantless/alice_to_bob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
var (
18-
aspUrl = "localhost:8080"
18+
aspUrl = "localhost:7070"
1919
clientType = arksdk.GrpcClient
2020
password = "password"
2121
walletType = arksdk.SingleKeyWallet

pkg/client-sdk/example/covenantless/wasm/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1>Ark SDK WASM Example</h1>
146146
<h2>Wallet</h2>
147147
<div>
148148
<button onclick="initWallet()">Init</button>
149-
<input type="text" id="aspUrl" placeholder="http://localhost:8080">
149+
<input type="text" id="aspUrl" placeholder="http://localhost:7070">
150150
<input type="password" id="i_password" placeholder="password">
151151
<input type="text" id="prvkey" placeholder="Optional: privkey (hex)">
152152
</div>

pkg/client-sdk/store/store_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func TestStore(t *testing.T) {
1818
key, _ := btcec.NewPrivateKey()
1919
ctx := context.Background()
2020
testStoreData := store.StoreData{
21-
AspUrl: "localhost:8080",
21+
AspUrl: "localhost:7070",
2222
AspPubkey: key.PubKey(),
2323
WalletType: wallet.SingleKeyWallet,
2424
ClientType: client.GrpcClient,

pkg/client-sdk/wallet/wallet_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestWallet(t *testing.T) {
2121
key, _ := btcec.NewPrivateKey()
2222
password := "password"
2323
testStoreData := store.StoreData{
24-
AspUrl: "localhost:8080",
24+
AspUrl: "localhost:7070",
2525
AspPubkey: key.PubKey(),
2626
WalletType: wallet.SingleKeyWallet,
2727
ClientType: client.GrpcClient,

server/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ run: clean
3737
export ARK_ROUND_INTERVAL=10; \
3838
export ARK_LOG_LEVEL=5; \
3939
export ARK_NETWORK=regtest; \
40-
export ARK_PORT=8080; \
40+
export ARK_PORT=7070; \
4141
export ARK_NO_TLS=true; \
4242
export ARK_NO_MACAROONS=true; \
4343
export ARK_TX_BUILDER_TYPE=covenantless; \

0 commit comments

Comments
 (0)