Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PublishContractByReferenceArgs

The argument object for ContractApi.publishContractByReference

param

Reference, i.e. Transactions Full Hash TransactionId.fullHash, to the already deployed contract

param

The description of your contract (max. 1000 chars)

param

The name for the contract

param

is optional here, the initial data for the contract (must be according to your data stack in your contract and in BE hex code)

see

To deploy a new non-existing contract you need to use ContractApi.publishContract

Hierarchy

Index

Properties

Optional attachment

attachment: Attachment

An optional attachment

Optional data

data: ContractData[]

Optional deadline

deadline: number

The deadline when after how many minutes the transaction will be discarded, if it was not processed, e.g. due to very low fee

description

description: string

feePlanck

feePlanck: string

The fee expressed in Planck

note

It's recommended to use util.Amount

name

name: string

Optional referencedTransactionFullHash

referencedTransactionFullHash: string

Using this field allows to make a transaction dependent on other transactions.

referencedTransactionHash

referencedTransactionHash: string

Optional senderPrivateKey

senderPrivateKey: string

The senders private key, i.e. the crypto.Keys.signPrivateKey If the private key is not given, then the transaction method will return the unsigned byte string. The transaction won't be processed until the unsigned bytes are being signed and broadcasted using TransactionApi.signAndBroadcastTransaction

senderPublicKey

senderPublicKey: string

The senders public key, i.e. the crypto.Keys.publicKey

Optional skipAdditionalSecurityCheck

skipAdditionalSecurityCheck: boolean

Setting this option to true, skips the additional security check, i.e. the verification of the unsigned transaction bytes, which detects tampered node responses. By default, the option is false. Usually, you won't use this option, but can be useful when a method cannot be verified, because the verification is not implemented yet.