Contract Details

Additional info on contract parameters and use cases the parameters are used in the IPayload in the contract E.g.:

const payload: ITransfer = {
  amount: 100 * 10 ** 6,
  receiver: "receiverAddress",
  kda: "KLV",
};

const Contract: IContract = {
    type: TransactionType.Transfer,
    payload,
  }

Last updated