@quackai/q402-mcp 0.8.30 → 0.8.31
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/README.md +1 -1
- package/dist/index.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -275,7 +275,7 @@ If you set up Q402 before v0.5.0 you may have a single `Q402_API_KEY` env var. T
|
|
|
275
275
|
| X Layer | 196 | USDC, USDT | |
|
|
276
276
|
| Stable | 988 | USDT0 (USDC and USDT both alias) | Gas paid in USDT0. |
|
|
277
277
|
| Mantle | 5000 | USDC, USDT0 | LayerZero OFT USDT0 since 2025-11-27. |
|
|
278
|
-
| Injective EVM | 1776 | USDT
|
|
278
|
+
| Injective EVM | 1776 | USDC, USDT | Native Circle USDC (CCTP) live since 2026-06 + canonical Tether (USDT0). |
|
|
279
279
|
| Monad | 143 | USDC, USDT0 | Native Circle USDC (CCTP V2) + USDT0 (LayerZero OFT). |
|
|
280
280
|
| Scroll | 534352 | USDC, USDT | zkEVM L2 — EIP-7702 live since the Euclid Phase 2 upgrade (2025-04-22). |
|
|
281
281
|
| Arbitrum One | 42161 | USDC, USDT | Optimistic rollup — same EIP-7702 signing path as Ethereum. CCIP bridge endpoint (eth ⇄ avax ⇄ arbitrum). |
|
package/dist/index.js
CHANGED
|
@@ -211,7 +211,7 @@ var isValidPrivateKey = (s) => typeof s === "string" && PRIVATE_KEY_RE.test(s);
|
|
|
211
211
|
// package.json
|
|
212
212
|
var package_default = {
|
|
213
213
|
name: "@quackai/q402-mcp",
|
|
214
|
-
version: "0.8.
|
|
214
|
+
version: "0.8.31",
|
|
215
215
|
description: "MCP server for Q402 \u2014 gasless USDC/USDT/RLUSD payments on 10 EVM chains + Chainlink CCIP USDC bridge on the eth/avax/arbitrum triangle, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
|
|
216
216
|
mcpName: "io.github.bitgett/q402-mcp",
|
|
217
217
|
keywords: [
|
|
@@ -380,7 +380,7 @@ var CHAIN_CONFIG = {
|
|
|
380
380
|
name: "Mantle",
|
|
381
381
|
chainId: 5e3,
|
|
382
382
|
domainName: "Q402 Mantle",
|
|
383
|
-
implContract: "
|
|
383
|
+
implContract: "0xE5b90D564650bdcE7C2Bb4344F777f6582e05699",
|
|
384
384
|
gasToken: "MNT",
|
|
385
385
|
explorer: "https://mantlescan.xyz",
|
|
386
386
|
usdc: { address: "0x09Bc4E0D864854c6aFB6eB9A9cdF58aC190D0dF9", decimals: 6 },
|
|
@@ -394,7 +394,7 @@ var CHAIN_CONFIG = {
|
|
|
394
394
|
name: "Injective EVM",
|
|
395
395
|
chainId: 1776,
|
|
396
396
|
domainName: "Q402 Injective",
|
|
397
|
-
implContract: "
|
|
397
|
+
implContract: "0xa9a7dcE76DEF2AC36057FeF0d8103dF10581d61e",
|
|
398
398
|
gasToken: "INJ",
|
|
399
399
|
explorer: "https://blockscout.injective.network",
|
|
400
400
|
// Native Circle USDC (CCTP) + canonical Tether (USDT0), both 6 dec.
|
|
@@ -409,7 +409,7 @@ var CHAIN_CONFIG = {
|
|
|
409
409
|
name: "Monad",
|
|
410
410
|
chainId: 143,
|
|
411
411
|
domainName: "Q402 Monad",
|
|
412
|
-
implContract: "
|
|
412
|
+
implContract: "0xc5d4dFA6D2e545409C1abf86f336Dd43bb87621f",
|
|
413
413
|
gasToken: "MON",
|
|
414
414
|
explorer: "https://monadscan.com",
|
|
415
415
|
// Native Circle USDC via CCTP V2 (not bridged) + USDT0 (LayerZero OFT).
|
|
@@ -423,7 +423,7 @@ var CHAIN_CONFIG = {
|
|
|
423
423
|
name: "Scroll",
|
|
424
424
|
chainId: 534352,
|
|
425
425
|
domainName: "Q402 Scroll",
|
|
426
|
-
implContract: "
|
|
426
|
+
implContract: "0x7635F32D893B64b5944CB8cbF2AC4cd3dA41B2f1",
|
|
427
427
|
gasToken: "ETH",
|
|
428
428
|
explorer: "https://scrollscan.com",
|
|
429
429
|
// Native Circle USDC + canonical Tether on Scroll mainnet (addresses
|
|
@@ -439,7 +439,7 @@ var CHAIN_CONFIG = {
|
|
|
439
439
|
name: "Arbitrum One",
|
|
440
440
|
chainId: 42161,
|
|
441
441
|
domainName: "Q402 Arbitrum",
|
|
442
|
-
implContract: "
|
|
442
|
+
implContract: "0x8D854436ab0426F5BC6Cc70865C90576AD523E73",
|
|
443
443
|
gasToken: "ETH",
|
|
444
444
|
explorer: "https://arbiscan.io",
|
|
445
445
|
// Native Circle USDC (CCTP) + canonical Tether on Arbitrum One.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.31",
|
|
4
4
|
"description": "MCP server for Q402 — gasless USDC/USDT/RLUSD payments on 10 EVM chains + Chainlink CCIP USDC bridge on the eth/avax/arbitrum triangle, callable from Claude (Desktop / Code), OpenAI Codex CLI, and any other Model Context Protocol client.",
|
|
5
5
|
"mcpName": "io.github.bitgett/q402-mcp",
|
|
6
6
|
"keywords": [
|