viem-erc20
Version:
Viem extensions for erc20 tokens
20 lines • 1.57 kB
TypeScript
import { type Account, type Chain, type Client, type Transport } from "viem";
import { getErc20TokenAllowance } from "./public/allowance.js";
import { getErc20TokenBalance } from "./public/balance.js";
import { getErc20TokenDecimals } from "./public/decimals.js";
import { getErc20TokenName } from "./public/name.js";
import { getErc20TokenSymbol } from "./public/symbol.js";
import { getErc20TokenTotalSupply } from "./public/totalSupply.js";
import { approveErc20Token } from "./wallet/approve.js";
export declare const erc20PublicActions: () => <TTransport extends Transport = Transport, TChain extends Chain | undefined = Chain | undefined, TAccount extends Account | undefined = Account | undefined>(client: Client<TTransport, TChain, TAccount>) => {
getErc20TokenAllowance: (params: Parameters<typeof getErc20TokenAllowance>[1]) => Promise<bigint>;
getErc20TokenBalance: (params: Parameters<typeof getErc20TokenBalance>[1]) => Promise<bigint>;
getErc20TokenDecimals: (params: Parameters<typeof getErc20TokenDecimals>[1]) => Promise<number>;
getErc20TokenName: (params: Parameters<typeof getErc20TokenName>[1]) => Promise<string>;
getErc20TokenSymbol: (params: Parameters<typeof getErc20TokenSymbol>[1]) => Promise<string>;
getErc20TokenTotalSupply: (params: Parameters<typeof getErc20TokenTotalSupply>[1]) => Promise<bigint>;
};
export declare const erc20WalletActions: () => (client: Client) => {
approveErc20Token: (params: Parameters<typeof approveErc20Token>[1]) => Promise<`0x${string}`>;
};
//# sourceMappingURL=index.d.ts.map