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

refactor(wallet): Remove nobleSecp256k1Wrapper #1522

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ PODS:
- MMKV (1.3.2):
- MMKVCore (~> 1.3.2)
- MMKVCore (1.3.2)
- nodejs-mobile-react-native (0.8.1):
- nodejs-mobile-react-native (18.17.6):
- React-Core
- OpenSSL-Universal (1.1.1100)
- RCT-Folly (2021.07.22.00):
Expand Down Expand Up @@ -883,7 +883,7 @@ SPEC CHECKSUMS:
lottie-react-native: 8f9d4be452e23f6e5ca0fdc11669dc99ab52be81
MMKV: f21593c0af4b3f2a0ceb8f820f28bb639ea22bb7
MMKVCore: 31b4cb83f8266467eef20a35b6d78e409a11060d
nodejs-mobile-react-native: e35e7ed7ecfca168f168983e9557f1c5278d864b
nodejs-mobile-react-native: 9968fc921fcaf4b1f1d158cdbecd6bf5c3ac6a78
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
RCTRequired: 83bca1c184feb4d2e51c72c8369b83d641443f95
Expand Down
8 changes: 4 additions & 4 deletions ios/bitkit.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion nodejs-assets/nodejs-project/bitcoin-actions.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const networks = require('./networks');
const bip39 = require('bip39');
const ecc = require('./nobleSecp256k1Wrapper');
const ecc = require('@bitcoinerlab/secp256k1');
const BIP32Factory = require('bip32').BIP32Factory;
const bip32 = BIP32Factory(ecc);
const bitcoin = require('bitcoinjs-lib');
Expand Down
147 changes: 0 additions & 147 deletions nodejs-assets/nodejs-project/nobleSecp256k1Wrapper.js

This file was deleted.

8 changes: 4 additions & 4 deletions nodejs-assets/nodejs-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"author": "Synonym",
"license": "MIT",
"dependencies": {
"@noble/secp256k1": "^1.7.0",
"bip32": "^3.1.0",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^6.0.1",
"@bitcoinerlab/secp256k1": "1.0.5",
"bip32": "4.0.0",
"bip39": "3.1.0",
"bitcoinjs-lib": "6.1.5",
"create-hmac": "^1.1.7"
}
}
Loading
Loading