TransactionCreate: BaseTransactionType & {
    bytecodeWitnessIndex: number;
    salt: string;
    storageSlots: StorageSlot[];
    storageSlotsCount: BN;
    type: Create;
}

Type declaration

  • bytecodeWitnessIndex: number

    Witness index of contract bytecode to create (u8)

  • salt: string

    Salt (b256)

  • storageSlots: StorageSlot[]

    List of inputs (StorageSlot[])

  • storageSlotsCount: BN

    Number of storage slots to initialize (u16)

  • type: Create