@dzapio/sdk
Version:
A TypeScript/JavaScript SDK for interacting with the DZap protocol, providing utilities for DeFi operations including Swaps, Bridges, and Zaps.
26 lines (25 loc) • 828 B
TypeScript
export declare const erc20PermitFunctions: {
readonly nonces: "nonces";
readonly version: "version";
readonly PERMIT_TYPEHASH: "PERMIT_TYPEHASH";
readonly allowance: "allowance";
};
export declare const erc20Functions: {
readonly name: "name";
readonly allowance: "allowance";
readonly approve: "approve";
readonly transfer: "transfer";
readonly transferFrom: "transferFrom";
readonly balanceOf: "balanceOf";
readonly decimals: "decimals";
readonly symbol: "symbol";
readonly version: "version";
readonly nonces: "nonces";
readonly domainSeparator: "DOMAIN_SEPARATOR";
};
export declare const eip2612PermitFunctions: {
readonly permit: "permit";
readonly nonces: "nonces";
readonly DOMAIN_SEPARATOR: "DOMAIN_SEPARATOR";
readonly version: "version";
};