-
Notifications
You must be signed in to change notification settings - Fork 26
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
Fixed missing .js to imports #25
Changes from all commits
cce15aa
a73305a
9f89dda
2740a21
7eddb41
ed9a65e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
exports.networks = exports.ECPairFactory = exports.default = void 0; | ||
var ecpair_1 = require('./ecpair.cjs'); | ||
var ecpair_js_1 = require('./ecpair.cjs'); | ||
Object.defineProperty(exports, 'default', { | ||
enumerable: true, | ||
get: function () { | ||
return ecpair_1.ECPairFactory; | ||
return ecpair_js_1.ECPairFactory; | ||
}, | ||
}); | ||
Object.defineProperty(exports, 'ECPairFactory', { | ||
enumerable: true, | ||
get: function () { | ||
return ecpair_1.ECPairFactory; | ||
return ecpair_js_1.ECPairFactory; | ||
}, | ||
}); | ||
Object.defineProperty(exports, 'networks', { | ||
enumerable: true, | ||
get: function () { | ||
return ecpair_1.networks; | ||
return ecpair_js_1.networks; | ||
}, | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { ECPairFactory as default, ECPairFactory, type Signer, type SignerAsync, type ECPairAPI, type ECPairInterface, type TinySecp256k1Interface, networks, } from './ecpair'; | ||
export { ECPairFactory as default, ECPairFactory, type Signer, type SignerAsync, type ECPairAPI, type ECPairInterface, type TinySecp256k1Interface, networks, } from './ecpair.cjs'; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import * as v from 'valibot'; | ||
import { NetworkSchema } from './types'; | ||
import { NetworkSchema } from './types.cjs'; | ||
export type Network = v.InferOutput<typeof NetworkSchema>; | ||
export declare const bitcoin: Network; | ||
export declare const testnet: Network; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import { TinySecp256k1Interface } from './ecpair'; | ||
import { TinySecp256k1Interface } from './ecpair.cjs'; | ||
export declare function testEcc(ecc: TinySecp256k1Interface): void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.0.0-rc.1