@quackai/q402-mcp 0.8.26 → 0.8.28
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/dist/index.js +6 -5
- package/package.json +1 -1
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.28",
|
|
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: "0xa9a7dcE76DEF2AC36057FeF0d8103dF10581d61e",
|
|
384
384
|
gasToken: "MNT",
|
|
385
385
|
explorer: "https://mantlescan.xyz",
|
|
386
386
|
usdc: { address: "0x09Bc4E0D864854c6aFB6eB9A9cdF58aC190D0dF9", decimals: 6 },
|
|
@@ -410,7 +410,7 @@ var CHAIN_CONFIG = {
|
|
|
410
410
|
name: "Monad",
|
|
411
411
|
chainId: 143,
|
|
412
412
|
domainName: "Q402 Monad",
|
|
413
|
-
implContract: "
|
|
413
|
+
implContract: "0x5a8fde1851491D9eD512a9eDa1c63CA7627BECb8",
|
|
414
414
|
gasToken: "MON",
|
|
415
415
|
explorer: "https://monadscan.com",
|
|
416
416
|
// Native Circle USDC via CCTP V2 (not bridged) + USDT0 (LayerZero OFT).
|
|
@@ -424,7 +424,7 @@ var CHAIN_CONFIG = {
|
|
|
424
424
|
name: "Scroll",
|
|
425
425
|
chainId: 534352,
|
|
426
426
|
domainName: "Q402 Scroll",
|
|
427
|
-
implContract: "
|
|
427
|
+
implContract: "0x8D854436ab0426F5BC6Cc70865C90576AD523E73",
|
|
428
428
|
gasToken: "ETH",
|
|
429
429
|
explorer: "https://scrollscan.com",
|
|
430
430
|
// Native Circle USDC + canonical Tether on Scroll mainnet (addresses
|
|
@@ -440,7 +440,7 @@ var CHAIN_CONFIG = {
|
|
|
440
440
|
name: "Arbitrum One",
|
|
441
441
|
chainId: 42161,
|
|
442
442
|
domainName: "Q402 Arbitrum",
|
|
443
|
-
implContract: "
|
|
443
|
+
implContract: "0xE5b90D564650bdcE7C2Bb4344F777f6582e05699",
|
|
444
444
|
gasToken: "ETH",
|
|
445
445
|
explorer: "https://arbiscan.io",
|
|
446
446
|
// Native Circle USDC (CCTP) + canonical Tether on Arbitrum One.
|
|
@@ -936,6 +936,7 @@ function canonicalIntent(intent) {
|
|
|
936
936
|
for (const k of Object.keys(src).sort()) out[k] = sortValue(src[k]);
|
|
937
937
|
return out;
|
|
938
938
|
}
|
|
939
|
+
if (typeof v === "number") return String(v);
|
|
939
940
|
return v;
|
|
940
941
|
};
|
|
941
942
|
return JSON.stringify(sortValue(intent));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quackai/q402-mcp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.28",
|
|
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": [
|