UNPKG

357 BPlain TextView Raw
1/**
2 * Re-exports commonly used modules:
3 * * Exports [`BN`](https://github.com/indutny/bn.js), [`rlp`](https://github.com/ethereumjs/rlp).
4 * @packageDocumentation
5 */
6
7import BN from 'bn.js'
8import * as rlp from 'rlp'
9
10/**
11 * [`BN`](https://github.com/indutny/bn.js)
12 */
13export { BN }
14
15/**
16 * [`rlp`](https://github.com/ethereumjs/rlp)
17 */
18export { rlp }