Skip to content

Commit

Permalink
Merge pull request #5030 from BitGo/rune-sdk
Browse files Browse the repository at this point in the history
SDK changes for rune coin and statics
  • Loading branch information
mohitkh7 authored Oct 29, 2024
2 parents cca99a6 + 64775ca commit 2f07c4b
Show file tree
Hide file tree
Showing 52 changed files with 5,695 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitcommitscopes
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
sdk-coin-rune
sdk-coin-sui
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-opeth /var/modules/sdk-coin-opet
COPY --from=builder /tmp/bitgo/modules/sdk-coin-osmo /var/modules/sdk-coin-osmo/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-polygon /var/modules/sdk-coin-polygon/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-rbtc /var/modules/sdk-coin-rbtc/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-rune /var/modules/sdk-coin-rune/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-sei /var/modules/sdk-coin-sei/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-sol /var/modules/sdk-coin-sol/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-stx /var/modules/sdk-coin-stx/
Expand Down Expand Up @@ -150,6 +151,7 @@ cd /var/modules/sdk-coin-opeth && yarn link && \
cd /var/modules/sdk-coin-osmo && yarn link && \
cd /var/modules/sdk-coin-polygon && yarn link && \
cd /var/modules/sdk-coin-rbtc && yarn link && \
cd /var/modules/sdk-coin-rune && yarn link && \
cd /var/modules/sdk-coin-sei && yarn link && \
cd /var/modules/sdk-coin-sol && yarn link && \
cd /var/modules/sdk-coin-stx && yarn link && \
Expand Down Expand Up @@ -223,6 +225,7 @@ RUN cd /var/bitgo-express && \
yarn link @bitgo/sdk-coin-osmo && \
yarn link @bitgo/sdk-coin-polygon && \
yarn link @bitgo/sdk-coin-rbtc && \
yarn link @bitgo/sdk-coin-rune && \
yarn link @bitgo/sdk-coin-sei && \
yarn link @bitgo/sdk-coin-sol && \
yarn link @bitgo/sdk-coin-stx && \
Expand Down
2 changes: 1 addition & 1 deletion modules/abstract-cosmos/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ node_modules
.idea
public
dist

resources
8 changes: 5 additions & 3 deletions modules/abstract-cosmos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "yarn tsc --build --incremental --verbose .",
"build": "npm run prepare",
"build-ts": "yarn tsc --build --incremental --verbose .",
"fmt": "prettier --write .",
"check-fmt": "prettier --check .",
"clean": "rm -r ./dist",
"lint": "eslint --quiet .",
"prepare": "npm run build"
"prepare": "npm run build-ts && shx cp -r ./resources ./dist"
},
"author": "BitGo SDK Team <[email protected]>",
"license": "MIT",
Expand Down Expand Up @@ -49,7 +50,8 @@
"bignumber.js": "^9.1.1",
"cosmjs-types": "^0.6.1",
"lodash": "^4.17.21",
"superagent": "^9.0.1"
"superagent": "^9.0.1",
"protobufjs": "^7.4.0"
},
"devDependencies": {
"@types/lodash": "^4.14.183"
Expand Down
Loading

0 comments on commit 2f07c4b

Please sign in to comment.