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

BitMask 0.6.0 updates #14

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ba9d6d7
Add updated BMC 0.6.0 types. Refactor into separate modules. Remove o…
cryptoquick May 13, 2023
da2efa4
Fix "npm run test".
cryptoquick May 13, 2023
b6e93d4
Fix package exports.
cryptoquick May 13, 2023
b3deba0
This is what I'd try if we weren't living in a JS clown world...
cryptoquick May 14, 2023
869680f
This should work.
cryptoquick May 14, 2023
861ba24
Package and deps fixes.
cryptoquick May 14, 2023
8cb3313
Add missing LnCredentials interface.
cryptoquick May 14, 2023
a1c320c
Rename package, because not only do we live in a JS clown world, we l…
cryptoquick May 14, 2023
4f07342
Rename package once again, because the JS clown world knows no end.
cryptoquick May 14, 2023
43f3c00
Update to bitmask-core 0.6.0-beta.7
cryptoquick May 14, 2023
1d128aa
Switch from mv to cp in case that helps.
cryptoquick May 14, 2023
12539db
Trying more things.
cryptoquick May 14, 2023
8c6fe91
Remove mjs support.
cryptoquick May 15, 2023
44d79d6
New fields
josediegorobles May 15, 2023
ca9b1ee
latest
cryptoquick May 15, 2023
deb3a68
Fixes.
cryptoquick May 16, 2023
06bca05
Merge branch
cryptoquick May 17, 2023
5ce85c8
Merge pull request #16 from diba-io/JR/new-fields
cryptoquick May 17, 2023
e32d06a
Use bitmask-core pkg directly. Update interface for MnemonicSeedData …
cryptoquick May 17, 2023
538b1b5
Refactor pkg import.
cryptoquick May 18, 2023
701321d
pkg import fixes
cryptoquick May 18, 2023
3947c9d
pkg import fixes
cryptoquick May 18, 2023
fe08897
Make sure pkg wasm files are included in the package.
cryptoquick May 18, 2023
41f3317
Update with latest bitmask-core.
cryptoquick Aug 2, 2023
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
3 changes: 1 addition & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
BITMASK_NODE_HOST=https://qvijq4x0ei.execute-api.us-east-2.amazonaws.com/dev
BITCOIN_NETWORK=testnet
BITCOIN_NETWORK=testnet
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
/target
/src/pkg
/lib
/types
/*.js
/*.mjs
/*.ts
/*.d.ts
/*.d.ts.map

# dependencies
node_modules
Expand All @@ -12,4 +20,4 @@ node_modules

npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn-error.log*
14 changes: 12 additions & 2 deletions configs/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,18 @@
"declaration": true,
"declarationMap": true,
"allowSyntheticDefaultImports": true,
"types": ["node", "mocha"]
"types": ["node", "mocha"],
"paths": {
"pkg": ["../pkg"]
}
},

"files": ["../src/index.ts", "../src/types.ts"]
"files": [
"../src/index.ts",
"../src/constants.ts",
"../src/bitcoin.ts",
"../src/rgb.ts",
"../src/lightning.ts",
"../src/carbonado.ts"
]
}
4 changes: 2 additions & 2 deletions configs/tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"target": "ES6",
"module": "CommonJS",
"moduleResolution": "Node",
"outDir": "../lib/cjs",
"declarationDir": "../lib/cjs/types"
"outDir": "..",
"declarationDir": ".."
}
}
11 changes: 0 additions & 11 deletions configs/tsconfig.esm.json

This file was deleted.

290 changes: 0 additions & 290 deletions lib/cjs/index.js

This file was deleted.

2 changes: 0 additions & 2 deletions lib/cjs/types.js

This file was deleted.

Loading