UNPKG
@bitgo/bls
Version:
latest (0.1.0)
0.1.0
Implementation of bls signature verification for ethereum 2.0
github.com/BitGo/bls
@bitgo/bls
/
lib
/
context.d.ts
8 lines
(7 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
bls
from
"@bitgo/eth2-bls-wasm"
;
declare
type
Bls
=
typeof
bls;
export
declare
function
setupBls
(
):
Promise
<
Bls
>;
export
declare
function
init
(
):
Promise
<
Bls
>;
export
declare
function
destroy
(
):
void
;
export
declare
function
getContext
(
):
Bls
;
export
{};