Interface IWrapParameters

interface IWrapParameters {
    amount: bigint;
    calldata?: Buffer;
    chainId?: ChainId;
    disableAutoRefund?: boolean;
    estimatedFees?: bigint;
    feeRate: number;
    from: string;
    generationParameters: WrappedGeneration;
    network: Network;
    nonWitnessUtxo?: Buffer;
    priorityFee: bigint;
    randomBytes?: Buffer;
    receiver?: Address;
    signer: ECPairInterface | Signer;
    to?: string;
    utxos: UTXO[];
}

Hierarchy

Properties

amount: bigint
calldata?: Buffer
chainId?: ChainId
disableAutoRefund?: boolean
estimatedFees?: bigint
feeRate: number
from: string
generationParameters: WrappedGeneration
network: Network
nonWitnessUtxo?: Buffer
priorityFee: bigint
randomBytes?: Buffer
receiver?: Address
signer: ECPairInterface | Signer
to?: string
utxos: UTXO[]