@circle-fin/usdckit - v0.21.0
    Preparing search index...

    Variable SOL_DEVNETConst

    SOL_DEVNET: {
        blockchainId: "SOL-DEVNET";
        blockchainVm: "SVM";
        blockExplorers: {
            default: { name: "Solscan"; url: "https://solscan.io/?cluster=devnet" };
        };
        blockTime?: number;
        contracts: {
            EURC: { address: `0x${string}`; read: { decimals: () => 6 } };
            USDC: {
                abi: undefined;
                address: `0x${string}`;
                read: { decimals: () => 6 };
            };
        };
        custom?: Record<string, unknown>;
        ensTlds?: readonly string[];
        experimental_preconfirmationTime?: number;
        fees?: ChainFees<undefined>;
        formatters?: undefined;
        id: number;
        name: "Solana Devnet";
        nativeCurrency: { decimals: 9; name: "Solana"; symbol: "SOL" };
        rpcUrls: { default: { http: readonly ["https://api.devnet.solana.com"] } };
        serializers?: ChainSerializers<undefined, TransactionSerializable>;
        sourceId?: number;
        testnet: true;
    } = ...

    Type Declaration

    • ReadonlyblockchainId: "SOL-DEVNET"
    • ReadonlyblockchainVm: "SVM"
    • blockExplorers: { default: { name: "Solscan"; url: "https://solscan.io/?cluster=devnet" } }

      Collection of block explorers

    • OptionalblockTime?: number

      Block time in milliseconds.

    • contracts: {
          EURC: { address: `0x${string}`; read: { decimals: () => 6 } };
          USDC: {
              abi: undefined;
              address: `0x${string}`;
              read: { decimals: () => 6 };
          };
      }

      Collection of contracts

    • Optionalcustom?: Record<string, unknown>

      Custom chain data.

    • OptionalensTlds?: readonly string[]

      Collection of ENS TLDs for the chain.

    • Optionalexperimental_preconfirmationTime?: number

      Preconfirmation time in milliseconds.

    • Optionalfees?: ChainFees<undefined>

      Modifies how fees are derived.

    • Optionalformatters?: undefined

      Modifies how data is formatted and typed (e.g. blocks and transactions)

    • id: number

      ID in number form

    • name: "Solana Devnet"

      Human-readable name

    • nativeCurrency: { decimals: 9; name: "Solana"; symbol: "SOL" }

      Currency used by chain

    • rpcUrls: { default: { http: readonly ["https://api.devnet.solana.com"] } }

      Collection of RPC endpoints

    • Optionalserializers?: ChainSerializers<undefined, TransactionSerializable>

      Modifies how data is serialized (e.g. transactions).

    • OptionalsourceId?: number

      Source Chain ID (ie. the L1 chain)

    • testnet: true

      Flag for test networks