UNPKG
@crtxio/abi
Version:
latest (0.7.1)
0.7.1
A tiny Solidity ABI encoder and decoder
github.com/FindETH/abi
FindETH/abi
@crtxio/abi
/
lib
/
es
/
abi.js
8 lines
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ pack, unpack }
from
'./packer'
;
export
const
encode
= (
types, values
) => {
return
pack
(types, values,
new
Uint8Array
()); };
export
const
decode
= (
types, buffer
) => {
return
unpack
(types, buffer); };
//# sourceMappingURL=abi.js.map