Skip to content
Open
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
2 changes: 1 addition & 1 deletion entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import aes from 'aes'
import bnjs from 'bn.js'
import bs58 from 'bs58'

import elliptic from 'bitcoin-elliptic'
import elliptic from 'elliptic'
import hashjs from 'hash.js'
import pbkdf2 from 'pbkdf2'

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ bsv.deps.aes = require('aes')
bsv.deps.bnjs = require('bn.js')
bsv.deps.bs58 = require('bs58')
bsv.deps.Buffer = Buffer
bsv.deps.elliptic = require('bitcoin-elliptic')
bsv.deps.elliptic = require('elliptic')
bsv.deps.hashjs = require('hash.js')
bsv.deps.pbkdf2compat = require('pbkdf2-compat')

Expand Down
2 changes: 1 addition & 1 deletion lib/point.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'use strict'

import { Bn } from './bn'
import elliptic from 'bitcoin-elliptic'
import elliptic from 'elliptic'

const ec = elliptic.curves.secp256k1
const _point = ec.curve.point()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
},
"dependencies": {
"aes": "0.1.0",
"bitcoin-elliptic": "^7.0.1",
"elliptic": "^6.6.1",
"bn.js": "^5.1.1",
"bs58": "4.0.1",
"buffer": "^6.0.3",
Expand Down
Loading