UNPKG
@eth-optimism/ethereumjs-vm
Version:
latest (4.2.0-alpha.3)
4.2.0-alpha.3
4.2.0-alpha.2
4.2.0-alpha.1
4.2.0-alpha.0
An Ethereum VM implementation
github.com/ethereumjs/ethereumjs-vm
ethereum-optimism/ethereumjs-ovm
@eth-optimism/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
;