-
Notifications
You must be signed in to change notification settings - Fork 28
feat(COW-163): Update cow-sdk version, add default RPC and run script for Ink #1307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
d45169b
c2ecc65
0f7fe2e
56992cb
4be9469
7fe851d
4631cc1
e376572
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| COINGECKO_API_KEY= | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,3 +22,8 @@ src/cowFi/TEMP* | |
|
|
||
| # NPM setup | ||
| .npmrc | ||
|
|
||
| # Env files: | ||
| .env | ||
| .env.local | ||
| .env.*.local | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,23 +32,25 @@ | |
| "fetchPermitInfo:lens": "yarn run fetchPermitInfo -- 232", | ||
| "fetchPermitInfo:linea": "yarn run fetchPermitInfo -- 59144", | ||
| "fetchPermitInfo:plasma": "yarn run fetchPermitInfo -- 9745", | ||
| "fetchPermitInfo:ink": "yarn run fetchPermitInfo -- 57073", | ||
| "recheckPermitInfo:mainnet": "yarn run fetchPermitInfo -- 1 '' '' true", | ||
| "recheckPermitInfo:arb1": "yarn run fetchPermitInfo -- 42161 '' '' true", | ||
| "recheckPermitInfo:base": "yarn run fetchPermitInfo -- 8453 '' '' true", | ||
| "recheckPermitInfo:gnosis": "yarn run fetchPermitInfo -- 100 '' '' true", | ||
| "recheckPermitInfo:sepolia": "yarn run fetchPermitInfo -- 11155111 '' '' true", | ||
| "recheckPermitInfo:avalanche": "yarn run fetchPermitInfo -- 43114 '' '' true", | ||
| "recheckPermitInfo:polygon": "yarn run fetchPermitInfo -- 137 '' '' true", | ||
| "run-script": "node --loader ts-node/esm --experimental-json-modules --experimental-specifier-resolution=node", | ||
| "recheckPermitInfo:bnb": "yarn run fetchPermitInfo -- 56 '' '' true", | ||
| "recheckPermitInfo:lens": "yarn run fetchPermitInfo -- 232 '' '' true", | ||
| "recheckPermitInfo:linea": "yarn run fetchPermitInfo -- 59144 '' '' true", | ||
| "recheckPermitInfo:plasma": "yarn run fetchPermitInfo -- 9745 '' '' true", | ||
| "recheckPermitInfo:ink": "yarn run fetchPermitInfo -- 57073 '' '' true", | ||
| "run-script": "node --loader ts-node/esm --experimental-json-modules --experimental-specifier-resolution=node", | ||
| "test": "node --test" | ||
| }, | ||
| "license": "(MIT OR Apache-2.0)", | ||
| "dependencies": { | ||
| "@cowprotocol/cow-sdk": "7.1.0", | ||
| "@cowprotocol/cow-sdk": "7.3.0", | ||
| "@cowprotocol/permit-utils": "^0.7.0-RC.1", | ||
|
Comment on lines
52
to
54
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🌐 Web query:
💡 Result: As of January 28, 2026, there is no published GitHub Release/Tag for
If you meant a different artifact (e.g., an npm prerelease tag like Sources: [1] 🏁 Script executed: # Examine the full package.json to understand current dependencies and peer deps
cat package.jsonRepository: cowprotocol/token-lists Length of output: 4094 🏁 Script executed: # Check if there are any scripts that depend on cow-sdk
rg "cow-sdk" --type json --type ts --type js -A 2 -B 2 | head -50Repository: cowprotocol/token-lists Length of output: 3174 @cowprotocol/cow-sdk 7.3.0 is not a published release. The latest available version is v7.2.13 (2026-01-22). Verify whether 7.3.0 is an intentional pre-release version or a version mismatch, as release notes and peer dependency requirements cannot be confirmed for an unpublished version. Multiple scripts depend on this package (src/scripts/auxLists/, src/scripts/lp-tokens/, src/permitInfo/*), so the intended version must be clarified and available in the package registry. 🤖 Prompt for AI Agents |
||
| "@uniswap/token-lists": "^1.0.0-beta.33", | ||
| "ajv": "^8.17.1", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a trailing newline.
The file is missing a trailing newline at the end. Text files should end with a newline character per POSIX standards to ensure consistent behavior across tools and editors.
📝 Proposed fix
(Add a blank line after the last line)
📝 Committable suggestion
🧰 Tools
🪛 dotenv-linter (4.0.0)
[warning] 1-1: [EndingBlankLine] No blank line at the end of the file
(EndingBlankLine)
🤖 Prompt for AI Agents