Interface IDeploymentParameters

interface IDeploymentParameters {
    bytecode: Buffer;
    calldata?: Buffer;
    chainId?: ChainId;
    estimatedFees?: bigint;
    feeRate: number;
    from?: string;
    network: Network;
    nonWitnessUtxo?: Buffer;
    optionalOutputs?: PsbtOutputExtended[];
    priorityFee: bigint;
    randomBytes?: Buffer;
    signer: ECPairInterface | Signer;
    utxos: UTXO[];
}

Hierarchy

Properties

bytecode: Buffer
calldata?: Buffer
chainId?: ChainId
estimatedFees?: bigint
feeRate: number
from?: string
network: Network
nonWitnessUtxo?: Buffer
optionalOutputs?: PsbtOutputExtended[]
priorityFee: bigint
randomBytes?: Buffer
signer: ECPairInterface | Signer
utxos: UTXO[]