UNPKG
@nomiclabs/ethereumjs-vm
Version:
latest (4.2.2)
rc (4.2.2-rc.1)
4.2.2
4.2.2-rc.1
4.2.1
4.2.0
4.1.1
4.1.0
An Ethereum VM implementation
github.com/ethereumjs/ethereumjs-vm
ethereumjs/ethereumjs-vm
@nomiclabs/ethereumjs-vm
/
dist
/
evm
/
precompiles
/
09-blake2f.d.ts
5 lines
(4 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
import
{
PrecompileInput
}
from
'./types'
;
import
{
ExecResult
}
from
'../evm'
;
export
declare
function
F
(
h
:
Uint32Array
,
m
:
Uint32Array
,
t
:
Uint32Array
,
f
:
boolean
,
rounds
:
number
):
void
;
export
default
function
(
opts
:
PrecompileInput
):
ExecResult
;