File tree Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Expand file tree Collapse file tree 4 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 37
37
"import" : " ./esm/blake2b.js" ,
38
38
"require" : " ./blake2b.js"
39
39
},
40
+ "./bls" : {
41
+ "import" : " ./esm/bls.js" ,
42
+ "require" : " ./bls.js"
43
+ },
44
+ "./bn" : {
45
+ "import" : " ./esm/bn.js" ,
46
+ "require" : " ./bn.js"
47
+ },
40
48
"./hdkey" : {
41
49
"import" : " ./esm/hdkey.js" ,
42
50
"require" : " ./hdkey.js"
45
53
"import" : " ./esm/index.js" ,
46
54
"require" : " ./index.js"
47
55
},
56
+ "./math" : {
57
+ "import" : " ./esm/math.js" ,
58
+ "require" : " ./math.js"
59
+ },
48
60
"./keccak" : {
49
61
"import" : " ./esm/keccak.js" ,
50
62
"require" : " ./keccak.js"
141
153
"import" : " ./esm/blake2b.js" ,
142
154
"require" : " ./blake2b.js"
143
155
},
156
+ "./bls.js" : {
157
+ "import" : " ./esm/bls.js" ,
158
+ "require" : " ./bls.js"
159
+ },
160
+ "./bn.js" : {
161
+ "import" : " ./esm/bn.js" ,
162
+ "require" : " ./bn.js"
163
+ },
144
164
"./hdkey.js" : {
145
165
"import" : " ./esm/hdkey.js" ,
146
166
"require" : " ./hdkey.js"
149
169
"import" : " ./esm/index.js" ,
150
170
"require" : " ./index.js"
151
171
},
172
+ "./math.js" : {
173
+ "import" : " ./esm/math.js" ,
174
+ "require" : " ./math.js"
175
+ },
152
176
"./keccak.js" : {
153
177
"import" : " ./esm/keccak.js" ,
154
178
"require" : " ./keccak.js"
Original file line number Diff line number Diff line change
1
+ export { bls12_381 } from '@noble/curves/bls12-381' ;
Original file line number Diff line number Diff line change
1
+ export { bn254 } from '@noble/curves/bn254' ;
Original file line number Diff line number Diff line change
1
+ import { pow , invert } from "@noble/curves/abstract/modular" ;
2
+
3
+ export const modPow = pow ;
4
+ export const modInvert = invert ;
You can’t perform that action at this time.
0 commit comments