Skip to content

Commit 20b743e

Browse files
author
Armando CD
authored
Transfer Assets - Part 2 (Make first e2e transfer operation) (#173)
* commit: bump dependencies * feat: add bitmaskd in docker * feature; add watchers * feat: finish integration tests * fix: minor issues * chore: improviment docs * ci: add bitmaskd * feat: add prefetch resolvers * commit: add import information * fix: psbt tapret_host property * refactor: improviment responses * fix: verify all utxos spent (prefetch) * chore: improviment ci * fix: wasm tests * feat: add watcher_xpub * commit: apply styling
1 parent 4f193b3 commit 20b743e

41 files changed

Lines changed: 1821 additions & 464 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
target
2+
Dockerfile
3+
.dockerignore
4+
.git
5+
.gitignore

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ BITCOIN_EXPLORER_API_REGTEST=http://localhost:3000/regtest/api
1818
NODE_HOST=https://qvijq4x0ei.execute-api.us-east-2.amazonaws.com/dev
1919
# NODE_HOST=http://127.0.0.1:7070
2020
LNDHUB_ENDPOINT=https://lndhubx.bitmask.app
21-
CARBONADO_ENDPOINT=http://127.0.0.1:7070/carbonado
21+
CARBONADO_ENDPOINT=http://localhost:7070/carbonado
2222
BITCOIN_NETWORK=regtest

.github/workflows/rust.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181

8282
- name: Up Bitcoin Node
8383
run: |
84-
docker compose up -d node1
84+
docker compose up -d node1 bitmaskd
8585
8686
- name: Setup Bitcoin Node
8787
run: |
@@ -125,9 +125,11 @@ jobs:
125125
docker-compose exec -T node1 cli loadwallet default
126126
docker-compose exec -T node1 cli -generate 500
127127
docker-compose exec -T node1 cli sendtoaddress $MAIN_VAULT_ADDRESS 10
128+
docker-compose exec -T node1 cli sendtoaddress $RGB_VAULT_ADDRESS 10
128129
docker-compose exec -T node1 cli -generate 1
129130
env:
130131
MAIN_VAULT_ADDRESS: ${{ secrets.MAIN_VAULT_ADDRESS }}
132+
RGB_VAULT_ADDRESS: ${{ secrets.RGB_VAULT_ADDRESS }}
131133
RUST_BACKTRACE: 1
132134

133135
- name: Run bitmaskd node

Cargo.lock

Lines changed: 104 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)