uniswap-v2-loader 6.1.3 → 6.1.5

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.
@@ -20,17 +20,14 @@ jobs:
20
20
 
21
21
  steps:
22
22
  - name: Checkout code
23
- uses: actions/checkout@v4
23
+ uses: actions/checkout@v6
24
24
 
25
25
  - name: Setup Node.js
26
- uses: actions/setup-node@v4
26
+ uses: actions/setup-node@v6
27
27
  with:
28
- node-version: '22'
28
+ node-version: '24'
29
29
  registry-url: 'https://registry.npmjs.org'
30
30
 
31
- - name: Update npm
32
- run: npm install -g npm@latest
33
-
34
31
  - name: Install dependencies
35
32
  run: npm i
36
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniswap-v2-loader",
3
- "version": "6.1.3",
3
+ "version": "6.1.5",
4
4
  "description": "Uniswap v2 protocol loader",
5
5
  "keywords": [
6
6
  "DEFI",
package/src/index.js CHANGED
@@ -5,7 +5,7 @@ const path = require('path')
5
5
  const default_cache_filename = require('./default_cache_filename')
6
6
  const dex_db = require('@calp-pro/dex-db')
7
7
  const max_workers = os.cpus().length - 1
8
- const debug_key = process.env.KEY || 'FZBvlPrOxtgaKBBkry3SH0W1IqH4Y5tu'
8
+ const debug_key = process.env.KEY || 'euEV_WdPWxmaSWLlGyKr9'
9
9
  const uniswap_v2_factory = '0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f'
10
10
 
11
11
  const load = (params = {}) => {