aozhiwei 0a973d12e3 1
2022-01-27 17:32:21 +08:00

16 lines
358 B
TypeScript

/**
* Re-exports commonly used modules:
* * Exports [`BN`](https://github.com/indutny/bn.js), [`rlp`](https://github.com/ethereumjs/rlp).
* @packageDocumentation
*/
import BN from 'bn.js';
import * as rlp from 'rlp';
/**
* [`BN`](https://github.com/indutny/bn.js)
*/
export { BN };
/**
* [`rlp`](https://github.com/ethereumjs/rlp)
*/
export { rlp };