@coolwallet/sol
Version:
Coolwallet Solana sdk
11 lines (10 loc) • 720 B
TypeScript
import { signTxType } from '../config/types';
declare function isTransfer(p: signTxType): boolean;
declare function isTransferSPLToken(p: signTxType): boolean;
declare function isAssociateTokenAccount(p: signTxType): boolean;
declare function isCreateAndTransferSPLToken(p: signTxType): boolean;
declare function isDelegate(p: signTxType): boolean;
declare function isUndelegate(p: signTxType): boolean;
declare function isDelegateAndCreateAccountWithSeed(p: signTxType): boolean;
declare function isStakingWithdraw(p: signTxType): boolean;
export { isTransfer, isTransferSPLToken, isAssociateTokenAccount, isCreateAndTransferSPLToken, isDelegate, isDelegateAndCreateAccountWithSeed, isUndelegate, isStakingWithdraw, };