import { Turnkey } from "@turnkey/sdk-server";const turnkeyClient = new Turnkey({ apiBaseUrl: "https://api.turnkey.com", apiPublicKey: process.env.API_PUBLIC_KEY!, apiPrivateKey: process.env.API_PRIVATE_KEY!, defaultOrganizationId: process.env.ORGANIZATION_ID!,});const response = await turnkeyClient.apiClient().getWalletAddressBalances({ organizationId: "<string> (Unique identifier for a given organization.)", address: "<string> (Address corresponding to a wallet account.)", caip2: "<string> (The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet).)"});
import { Turnkey } from "@turnkey/sdk-server";const turnkeyClient = new Turnkey({ apiBaseUrl: "https://api.turnkey.com", apiPublicKey: process.env.API_PUBLIC_KEY!, apiPrivateKey: process.env.API_PRIVATE_KEY!, defaultOrganizationId: process.env.ORGANIZATION_ID!,});const response = await turnkeyClient.apiClient().getWalletAddressBalances({ organizationId: "<string> (Unique identifier for a given organization.)", address: "<string> (Address corresponding to a wallet account.)", caip2: "<string> (The network identifier in CAIP-2 format (e.g., 'eip155:1' for Ethereum mainnet).)"});