UNPKG

@truffle/codec

Version:

Library for encoding and decoding smart contract data

17 lines (16 loc) 369 B
/** * For allocation and decoding of storage variables * * @category Solidity data location * * @packageDocumentation */ export * from "./types"; import * as Utils from "./utils"; export { Utils }; import * as Allocate from "./allocate"; export { Allocate }; import * as Decode from "./decode"; export { Decode }; import * as Read from "./read"; export { Read };