uniswap-v2-loader 6.1.0 → 6.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniswap-v2-loader",
3
- "version": "6.1.0",
3
+ "version": "6.1.1",
4
4
  "description": "Uniswap v2 protocol loader",
5
5
  "keywords": [
6
6
  "DEFI",
package/src/index.d.ts CHANGED
@@ -22,6 +22,8 @@ export interface load_params {
22
22
  factory?: string
23
23
  /** Path to the cache file. Set to null to disable caching. */
24
24
  filename?: string | null
25
+ /** Switch cache between CSV and binary mode. */
26
+ csv?: boolean
25
27
  /** Number of pairs to fetch in a single multicall. */
26
28
  multicall_size?: number
27
29
  /** Start loading from this index. */