kill-switch-mcp 1.2.8 → 1.2.10
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/server.js +2 -2
- package/package.json +1 -1
package/dist/server.js
CHANGED
|
@@ -3858,10 +3858,10 @@ import {
|
|
|
3858
3858
|
import { Account } from "viem/tempo";
|
|
3859
3859
|
import { tempoModerato, tempo } from "viem/chains";
|
|
3860
3860
|
var TEMPO_BIN = join2(homedir2(), ".tempo", "bin", "tempo");
|
|
3861
|
-
var TEMPO_CHAIN_ID = parseInt(process.env.TEMPO_CHAIN_ID || "
|
|
3861
|
+
var TEMPO_CHAIN_ID = parseInt(process.env.TEMPO_CHAIN_ID || "4217");
|
|
3862
3862
|
var tempoChain = TEMPO_CHAIN_ID === 4217 ? tempo : tempoModerato;
|
|
3863
3863
|
var TEMPO_NETWORK = TEMPO_CHAIN_ID === 4217 ? "mainnet" : "testnet";
|
|
3864
|
-
var USDC_ADDRESS = process.env.USDC_ADDRESS || "
|
|
3864
|
+
var USDC_ADDRESS = process.env.USDC_ADDRESS || "0x20c000000000000000000000b9537d11c60e8b50";
|
|
3865
3865
|
function runTempo(...args) {
|
|
3866
3866
|
return new Promise((resolve, reject) => {
|
|
3867
3867
|
execFile(TEMPO_BIN, args, { timeout: 30000 }, (error, stdout, stderr) => {
|