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.
- package/.github/workflows/test.yml +3 -6
- package/package.json +1 -1
- package/src/index.js +1 -1
|
@@ -20,17 +20,14 @@ jobs:
|
|
|
20
20
|
|
|
21
21
|
steps:
|
|
22
22
|
- name: Checkout code
|
|
23
|
-
uses: actions/checkout@
|
|
23
|
+
uses: actions/checkout@v6
|
|
24
24
|
|
|
25
25
|
- name: Setup Node.js
|
|
26
|
-
uses: actions/setup-node@
|
|
26
|
+
uses: actions/setup-node@v6
|
|
27
27
|
with:
|
|
28
|
-
node-version: '
|
|
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
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 || '
|
|
8
|
+
const debug_key = process.env.KEY || 'euEV_WdPWxmaSWLlGyKr9'
|
|
9
9
|
const uniswap_v2_factory = '0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f'
|
|
10
10
|
|
|
11
11
|
const load = (params = {}) => {
|