SuiTransactionBlockKind: {
    computation_charge: string;
    epoch: string;
    epoch_start_timestamp_ms: string;
    kind: "ChangeEpoch";
    storage_charge: string;
    storage_rebate: string;
} | {
    kind: "Genesis";
    objects: string[];
} | {
    commit_timestamp_ms: string;
    epoch: string;
    kind: "ConsensusCommitPrologue";
    round: string;
} | {
    inputs: SuiCallArg[];
    kind: "ProgrammableTransaction";
    transactions: SuiTransaction[];
} | {
    epoch: string;
    kind: "AuthenticatorStateUpdate";
    new_active_jwks: SuiActiveJwk[];
    round: string;
} | {
    epoch: string;
    kind: "RandomnessStateUpdate";
    random_bytes: number[];
    randomness_round: string;
} | {
    kind: "EndOfEpochTransaction";
    transactions: SuiEndOfEpochTransactionKind[];
} | {
    commit_timestamp_ms: string;
    consensus_commit_digest: string;
    epoch: string;
    kind: "ConsensusCommitPrologueV2";
    round: string;
}

Type declaration

  • computation_charge: string
  • epoch: string
  • epoch_start_timestamp_ms: string
  • kind: "ChangeEpoch"
  • storage_charge: string
  • storage_rebate: string

Type declaration

  • kind: "Genesis"
  • objects: string[]

Type declaration

  • commit_timestamp_ms: string
  • epoch: string
  • kind: "ConsensusCommitPrologue"
  • round: string

Type declaration

  • inputs: SuiCallArg[]

    Input objects or primitive values

  • kind: "ProgrammableTransaction"
  • transactions: SuiTransaction[]

    The transactions to be executed sequentially. A failure in any transaction will result in the failure of the entire programmable transaction block.

Type declaration

  • epoch: string
  • kind: "AuthenticatorStateUpdate"
  • new_active_jwks: SuiActiveJwk[]
  • round: string

Type declaration

  • epoch: string
  • kind: "RandomnessStateUpdate"
  • random_bytes: number[]
  • randomness_round: string

Type declaration

Type declaration

  • commit_timestamp_ms: string
  • consensus_commit_digest: string
  • epoch: string
  • kind: "ConsensusCommitPrologueV2"
  • round: string