https://github.com/oraichain/bitcoin-bridge-sdk
https://github.com/oraichain/bitcoin-bridge-sdk
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oraichain/bitcoin-bridge-sdk
- Owner: oraichain
- Created: 2024-07-11T07:07:33.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-16T03:24:30.000Z (11 months ago)
- Last Synced: 2025-01-11T01:47:41.667Z (5 months ago)
- Language: JavaScript
- Homepage: https://oraichain.github.io/bitcoin-bridge-sdk/
- Size: 2.48 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Generate code and docs
```bash
# demo stargate repo: https://github.com/oraichain/demo-stargate.git
# build code:
cwtools build ../cw-bitcoin/contracts/cw-bitcoin -o packages/contracts-build/data# gen schema
cwtools build ../cw-bitcoin/contracts/cw-bitcoin -s# gen code:
cwtools gents ../cw-bitcoin/contracts/cw-bitcoin -o packages/contracts-sdk/src
# gen doc:
yarn docs# build
yarn build . --outDir build
# build individual packages
yarn build packages/contracts-sdk
yarn build packages/contracts-build
# publish package
yarn deploy packages/contracts-sdk --patch
yarn deploy packages/contracts-build --patch# update comments:
git apply patches/contracts-sdk.patch
# edit contracts-sdk
git diff packages/contracts-sdk > patches/contracts-sdk.patch
# rollback
git checkout packages/contracts-sdk
```