UNPKG

tensaikit-test

Version:

An autonomous DeFi AI Agent Kit on Katana enabling AI agents to plan and execute on-chain financial operations.

42 lines (41 loc) 1.14 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.katana = void 0; const viem_1 = require("viem"); /** * Returns a Katana chain definition compatible with viem's client setup. * * @returns A `Chain` object for the Katana Network. */ const katana = () => /*#__PURE__*/ (0, viem_1.defineChain)({ id: 747474, name: "Katana", nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 }, rpcUrls: { default: { http: [`https://rpc.katana.network/`], }, }, blockExplorers: { default: { name: "Katana Explorer", url: "https://explorer.katanarpc.com/", apiUrl: "", }, }, contracts: { ensRegistry: { address: "0x0000000000000000000000000000000000000000", }, ensUniversalResolver: { address: "0x0000000000000000000000000000000000000000", blockCreated: 0, }, multicall3: { address: "0x0000000000000000000000000000000000000000", blockCreated: 0, }, }, }); exports.katana = katana;