Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
sdk-ts
TokenFactoryStatic
import { TokenFactoryStatic } from "@injectivelabs/sdk-ts/service"; import { TokenType, TokenStatic } from "@injectivelabs/sdk-ts/types"; import { tokens } from "../data/tokens.json"; // 从步骤 1 下载的 json 文件 export const tokenFactoryStatic = new TokenFactoryStatic( tokens as TokenStatic[] ); // 实例化后,我们可以在 dApp 中开始使用它 const denom = "peggy0x..."; const token = tokenFactoryStatic.toToken(denom); console.log(token);