{"version":3,"file":"effects.mjs","names":[],"sources":["../../../../../../src/grpc/proto/sui/rpc/v2/effects.ts"],"sourcesContent":["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// @generated by protobuf-ts 2.9.6 with parameter force_server_none,optimize_code_size,ts_nocheck\n// @generated from protobuf file \"sui/rpc/v2/effects.proto\" (package \"sui.rpc.v2\", syntax proto3)\n// tslint:disable\n// @ts-nocheck\n//\n// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n//\nimport { MessageType } from '@protobuf-ts/runtime';\nimport { Owner } from './owner.js';\nimport { ObjectReference } from './object_reference.js';\nimport { GasCostSummary } from './gas_cost_summary.js';\nimport { ExecutionStatus } from './execution_status.js';\nimport { Bcs } from './bcs.js';\n/**\n * The effects of executing a transaction.\n *\n * @generated from protobuf message sui.rpc.v2.TransactionEffects\n */\nexport interface TransactionEffects {\n\t/**\n\t * This TransactionEffects serialized as BCS.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.Bcs bcs = 1;\n\t */\n\tbcs?: Bcs;\n\t/**\n\t * The digest of this TransactionEffects.\n\t *\n\t * @generated from protobuf field: optional string digest = 2;\n\t */\n\tdigest?: string;\n\t/**\n\t * Version of this TransactionEffects.\n\t *\n\t * @generated from protobuf field: optional int32 version = 3;\n\t */\n\tversion?: number;\n\t/**\n\t * The status of the execution.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.ExecutionStatus status = 4;\n\t */\n\tstatus?: ExecutionStatus;\n\t/**\n\t * The epoch when this transaction was executed.\n\t *\n\t * @generated from protobuf field: optional uint64 epoch = 5;\n\t */\n\tepoch?: bigint;\n\t/**\n\t * The gas used by this transaction.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.GasCostSummary gas_used = 6;\n\t */\n\tgasUsed?: GasCostSummary;\n\t/**\n\t * The transaction digest.\n\t *\n\t * @generated from protobuf field: optional string transaction_digest = 7;\n\t */\n\ttransactionDigest?: string;\n\t/**\n\t * Information about the gas object. Also present in the `changed_objects` vector.\n\t *\n\t * System transactions that don't require gas will leave this as `None`.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.ChangedObject gas_object = 8;\n\t */\n\tgasObject?: ChangedObject;\n\t/**\n\t * The digest of the events emitted during execution,\n\t * can be `None` if the transaction does not emit any event.\n\t *\n\t * @generated from protobuf field: optional string events_digest = 9;\n\t */\n\teventsDigest?: string;\n\t/**\n\t * The set of transaction digests this transaction depends on.\n\t *\n\t * @generated from protobuf field: repeated string dependencies = 10;\n\t */\n\tdependencies: string[];\n\t/**\n\t * The version number of all the written objects (excluding packages) by this transaction.\n\t *\n\t * @generated from protobuf field: optional uint64 lamport_version = 11;\n\t */\n\tlamportVersion?: bigint;\n\t/**\n\t * Objects whose state are changed by this transaction.\n\t *\n\t * @generated from protobuf field: repeated sui.rpc.v2.ChangedObject changed_objects = 12;\n\t */\n\tchangedObjects: ChangedObject[];\n\t/**\n\t * Consensus objects that are not mutated in this transaction. Unlike owned objects,\n\t * read-only consensus objects' version are not committed in the transaction,\n\t * and in order for a node to catch up and execute it without consensus sequencing,\n\t * the version needs to be committed in the effects.\n\t *\n\t * @generated from protobuf field: repeated sui.rpc.v2.UnchangedConsensusObject unchanged_consensus_objects = 13;\n\t */\n\tunchangedConsensusObjects: UnchangedConsensusObject[];\n\t/**\n\t * Auxiliary data that are not protocol-critical, generated as part of the effects but are stored separately.\n\t * Storing it separately allows us to avoid bloating the effects with data that are not critical.\n\t * It also provides more flexibility on the format and type of the data.\n\t *\n\t * @generated from protobuf field: optional string auxiliary_data_digest = 14;\n\t */\n\tauxiliaryDataDigest?: string;\n\t/**\n\t * @generated from protobuf field: repeated sui.rpc.v2.ObjectReference unchanged_loaded_runtime_objects = 15;\n\t */\n\tunchangedLoadedRuntimeObjects: ObjectReference[];\n}\n/**\n * Input/output state of an object that was changed during execution.\n *\n * @generated from protobuf message sui.rpc.v2.ChangedObject\n */\nexport interface ChangedObject {\n\t/**\n\t * ID of the object.\n\t *\n\t * @generated from protobuf field: optional string object_id = 1;\n\t */\n\tobjectId?: string;\n\t/**\n\t * @generated from protobuf field: optional sui.rpc.v2.ChangedObject.InputObjectState input_state = 2;\n\t */\n\tinputState?: ChangedObject_InputObjectState;\n\t/**\n\t * Version of the object before this transaction executed.\n\t *\n\t * @generated from protobuf field: optional uint64 input_version = 3;\n\t */\n\tinputVersion?: bigint;\n\t/**\n\t * Digest of the object before this transaction executed.\n\t *\n\t * @generated from protobuf field: optional string input_digest = 4;\n\t */\n\tinputDigest?: string;\n\t/**\n\t * Owner of the object before this transaction executed.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.Owner input_owner = 5;\n\t */\n\tinputOwner?: Owner;\n\t/**\n\t * @generated from protobuf field: optional sui.rpc.v2.ChangedObject.OutputObjectState output_state = 6;\n\t */\n\toutputState?: ChangedObject_OutputObjectState;\n\t/**\n\t * Version of the object after this transaction executed.\n\t *\n\t * @generated from protobuf field: optional uint64 output_version = 7;\n\t */\n\toutputVersion?: bigint;\n\t/**\n\t * Digest of the object after this transaction executed.\n\t *\n\t * @generated from protobuf field: optional string output_digest = 8;\n\t */\n\toutputDigest?: string;\n\t/**\n\t * Owner of the object after this transaction executed.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.Owner output_owner = 9;\n\t */\n\toutputOwner?: Owner;\n\t/**\n\t * The contents of the accumulator write when `output_state` is `OUTPUT_OBJECT_STATE_ACCUMULATOR_WRITE`\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.AccumulatorWrite accumulator_write = 12;\n\t */\n\taccumulatorWrite?: AccumulatorWrite;\n\t/**\n\t * What happened to an `ObjectId` during execution.\n\t *\n\t * @generated from protobuf field: optional sui.rpc.v2.ChangedObject.IdOperation id_operation = 10;\n\t */\n\tidOperation?: ChangedObject_IdOperation;\n\t/**\n\t * Type information is not provided by the effects structure but is instead\n\t * provided by an indexing layer\n\t *\n\t * @generated from protobuf field: optional string object_type = 11;\n\t */\n\tobjectType?: string;\n}\n/**\n * @generated from protobuf enum sui.rpc.v2.ChangedObject.InputObjectState\n */\nexport enum ChangedObject_InputObjectState {\n\t/**\n\t * @generated from protobuf enum value: INPUT_OBJECT_STATE_UNKNOWN = 0;\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * @generated from protobuf enum value: INPUT_OBJECT_STATE_DOES_NOT_EXIST = 1;\n\t */\n\tDOES_NOT_EXIST = 1,\n\t/**\n\t * @generated from protobuf enum value: INPUT_OBJECT_STATE_EXISTS = 2;\n\t */\n\tEXISTS = 2,\n}\n/**\n * @generated from protobuf enum sui.rpc.v2.ChangedObject.OutputObjectState\n */\nexport enum ChangedObject_OutputObjectState {\n\t/**\n\t * @generated from protobuf enum value: OUTPUT_OBJECT_STATE_UNKNOWN = 0;\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * @generated from protobuf enum value: OUTPUT_OBJECT_STATE_DOES_NOT_EXIST = 1;\n\t */\n\tDOES_NOT_EXIST = 1,\n\t/**\n\t * @generated from protobuf enum value: OUTPUT_OBJECT_STATE_OBJECT_WRITE = 2;\n\t */\n\tOBJECT_WRITE = 2,\n\t/**\n\t * @generated from protobuf enum value: OUTPUT_OBJECT_STATE_PACKAGE_WRITE = 3;\n\t */\n\tPACKAGE_WRITE = 3,\n\t/**\n\t * @generated from protobuf enum value: OUTPUT_OBJECT_STATE_ACCUMULATOR_WRITE = 4;\n\t */\n\tACCUMULATOR_WRITE = 4,\n}\n/**\n * @generated from protobuf enum sui.rpc.v2.ChangedObject.IdOperation\n */\nexport enum ChangedObject_IdOperation {\n\t/**\n\t * @generated from protobuf enum value: ID_OPERATION_UNKNOWN = 0;\n\t */\n\tID_OPERATION_UNKNOWN = 0,\n\t/**\n\t * @generated from protobuf enum value: NONE = 1;\n\t */\n\tNONE = 1,\n\t/**\n\t * @generated from protobuf enum value: CREATED = 2;\n\t */\n\tCREATED = 2,\n\t/**\n\t * @generated from protobuf enum value: DELETED = 3;\n\t */\n\tDELETED = 3,\n}\n/**\n * @generated from protobuf message sui.rpc.v2.AccumulatorWrite\n */\nexport interface AccumulatorWrite {\n\t/**\n\t * @generated from protobuf field: optional string address = 1;\n\t */\n\taddress?: string;\n\t/**\n\t * @generated from protobuf field: optional string accumulator_type = 2;\n\t */\n\taccumulatorType?: string;\n\t/**\n\t * @generated from protobuf field: optional sui.rpc.v2.AccumulatorWrite.AccumulatorOperation operation = 3;\n\t */\n\toperation?: AccumulatorWrite_AccumulatorOperation;\n\t/**\n\t * @generated from protobuf field: optional uint64 value = 5;\n\t */\n\tvalue?: bigint;\n}\n/**\n * @generated from protobuf enum sui.rpc.v2.AccumulatorWrite.AccumulatorOperation\n */\nexport enum AccumulatorWrite_AccumulatorOperation {\n\t/**\n\t * @generated from protobuf enum value: ACCUMULATOR_OPERATION_UNKNOWN = 0;\n\t */\n\tACCUMULATOR_OPERATION_UNKNOWN = 0,\n\t/**\n\t * @generated from protobuf enum value: MERGE = 1;\n\t */\n\tMERGE = 1,\n\t/**\n\t * @generated from protobuf enum value: SPLIT = 2;\n\t */\n\tSPLIT = 2,\n}\n/**\n * A consensus object that wasn't changed during execution.\n *\n * @generated from protobuf message sui.rpc.v2.UnchangedConsensusObject\n */\nexport interface UnchangedConsensusObject {\n\t/**\n\t * @generated from protobuf field: optional sui.rpc.v2.UnchangedConsensusObject.UnchangedConsensusObjectKind kind = 1;\n\t */\n\tkind?: UnchangedConsensusObject_UnchangedConsensusObjectKind;\n\t/**\n\t * ObjectId of the consensus object.\n\t *\n\t * @generated from protobuf field: optional string object_id = 2;\n\t */\n\tobjectId?: string;\n\t/**\n\t * Version of the consensus object.\n\t *\n\t * @generated from protobuf field: optional uint64 version = 3;\n\t */\n\tversion?: bigint;\n\t/**\n\t * Digest of the consensus object.\n\t *\n\t * @generated from protobuf field: optional string digest = 4;\n\t */\n\tdigest?: string;\n\t/**\n\t * Type information is not provided by the effects structure but is instead\n\t * provided by an indexing layer\n\t *\n\t * @generated from protobuf field: optional string object_type = 5;\n\t */\n\tobjectType?: string;\n}\n/**\n * @generated from protobuf enum sui.rpc.v2.UnchangedConsensusObject.UnchangedConsensusObjectKind\n */\nexport enum UnchangedConsensusObject_UnchangedConsensusObjectKind {\n\t/**\n\t * @generated from protobuf enum value: UNCHANGED_CONSENSUS_OBJECT_KIND_UNKNOWN = 0;\n\t */\n\tUNCHANGED_CONSENSUS_OBJECT_KIND_UNKNOWN = 0,\n\t/**\n\t * Read-only consensus object from the input.\n\t *\n\t * @generated from protobuf enum value: READ_ONLY_ROOT = 1;\n\t */\n\tREAD_ONLY_ROOT = 1,\n\t/**\n\t * Objects with ended consensus streams that appear mutably/owned in the input.\n\t *\n\t * @generated from protobuf enum value: MUTATE_CONSENSUS_STREAM_ENDED = 2;\n\t */\n\tMUTATE_CONSENSUS_STREAM_ENDED = 2,\n\t/**\n\t * Objects with ended consensus streams objects that appear as read-only in the input.\n\t *\n\t * @generated from protobuf enum value: READ_CONSENSUS_STREAM_ENDED = 3;\n\t */\n\tREAD_CONSENSUS_STREAM_ENDED = 3,\n\t/**\n\t * Consensus objects that were congested and resulted in this transaction being\n\t * canceled.\n\t *\n\t * @generated from protobuf enum value: CANCELED = 4;\n\t */\n\tCANCELED = 4,\n\t/**\n\t * Read of a per-epoch config object that should remain the same during an\n\t * epoch. This optionally will indicate the sequence number of the config\n\t * object at the start of the epoch.\n\t *\n\t * @generated from protobuf enum value: PER_EPOCH_CONFIG = 5;\n\t */\n\tPER_EPOCH_CONFIG = 5,\n}\n// @generated message type with reflection information, may provide speed optimized methods\nclass TransactionEffects$Type extends MessageType<TransactionEffects> {\n\tconstructor() {\n\t\tsuper('sui.rpc.v2.TransactionEffects', [\n\t\t\t{ no: 1, name: 'bcs', kind: 'message', T: () => Bcs },\n\t\t\t{ no: 2, name: 'digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 3, name: 'version', kind: 'scalar', opt: true, T: 5 /*ScalarType.INT32*/ },\n\t\t\t{ no: 4, name: 'status', kind: 'message', T: () => ExecutionStatus },\n\t\t\t{\n\t\t\t\tno: 5,\n\t\t\t\tname: 'epoch',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t\t{ no: 6, name: 'gas_used', kind: 'message', T: () => GasCostSummary },\n\t\t\t{ no: 7, name: 'transaction_digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 8, name: 'gas_object', kind: 'message', T: () => ChangedObject },\n\t\t\t{ no: 9, name: 'events_digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{\n\t\t\t\tno: 10,\n\t\t\t\tname: 'dependencies',\n\t\t\t\tkind: 'scalar',\n\t\t\t\trepeat: 2 /*RepeatType.UNPACKED*/,\n\t\t\t\tT: 9 /*ScalarType.STRING*/,\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 11,\n\t\t\t\tname: 'lamport_version',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 12,\n\t\t\t\tname: 'changed_objects',\n\t\t\t\tkind: 'message',\n\t\t\t\trepeat: 1 /*RepeatType.PACKED*/,\n\t\t\t\tT: () => ChangedObject,\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 13,\n\t\t\t\tname: 'unchanged_consensus_objects',\n\t\t\t\tkind: 'message',\n\t\t\t\trepeat: 1 /*RepeatType.PACKED*/,\n\t\t\t\tT: () => UnchangedConsensusObject,\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 14,\n\t\t\t\tname: 'auxiliary_data_digest',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 9 /*ScalarType.STRING*/,\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 15,\n\t\t\t\tname: 'unchanged_loaded_runtime_objects',\n\t\t\t\tkind: 'message',\n\t\t\t\trepeat: 1 /*RepeatType.PACKED*/,\n\t\t\t\tT: () => ObjectReference,\n\t\t\t},\n\t\t]);\n\t}\n}\n/**\n * @generated MessageType for protobuf message sui.rpc.v2.TransactionEffects\n */\nexport const TransactionEffects = new TransactionEffects$Type();\n// @generated message type with reflection information, may provide speed optimized methods\nclass ChangedObject$Type extends MessageType<ChangedObject> {\n\tconstructor() {\n\t\tsuper('sui.rpc.v2.ChangedObject', [\n\t\t\t{ no: 1, name: 'object_id', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{\n\t\t\t\tno: 2,\n\t\t\t\tname: 'input_state',\n\t\t\t\tkind: 'enum',\n\t\t\t\topt: true,\n\t\t\t\tT: () => [\n\t\t\t\t\t'sui.rpc.v2.ChangedObject.InputObjectState',\n\t\t\t\t\tChangedObject_InputObjectState,\n\t\t\t\t\t'INPUT_OBJECT_STATE_',\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 3,\n\t\t\t\tname: 'input_version',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t\t{ no: 4, name: 'input_digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 5, name: 'input_owner', kind: 'message', T: () => Owner },\n\t\t\t{\n\t\t\t\tno: 6,\n\t\t\t\tname: 'output_state',\n\t\t\t\tkind: 'enum',\n\t\t\t\topt: true,\n\t\t\t\tT: () => [\n\t\t\t\t\t'sui.rpc.v2.ChangedObject.OutputObjectState',\n\t\t\t\t\tChangedObject_OutputObjectState,\n\t\t\t\t\t'OUTPUT_OBJECT_STATE_',\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 7,\n\t\t\t\tname: 'output_version',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t\t{ no: 8, name: 'output_digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 9, name: 'output_owner', kind: 'message', T: () => Owner },\n\t\t\t{ no: 12, name: 'accumulator_write', kind: 'message', T: () => AccumulatorWrite },\n\t\t\t{\n\t\t\t\tno: 10,\n\t\t\t\tname: 'id_operation',\n\t\t\t\tkind: 'enum',\n\t\t\t\topt: true,\n\t\t\t\tT: () => ['sui.rpc.v2.ChangedObject.IdOperation', ChangedObject_IdOperation],\n\t\t\t},\n\t\t\t{ no: 11, name: 'object_type', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t]);\n\t}\n}\n/**\n * @generated MessageType for protobuf message sui.rpc.v2.ChangedObject\n */\nexport const ChangedObject = new ChangedObject$Type();\n// @generated message type with reflection information, may provide speed optimized methods\nclass AccumulatorWrite$Type extends MessageType<AccumulatorWrite> {\n\tconstructor() {\n\t\tsuper('sui.rpc.v2.AccumulatorWrite', [\n\t\t\t{ no: 1, name: 'address', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 2, name: 'accumulator_type', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{\n\t\t\t\tno: 3,\n\t\t\t\tname: 'operation',\n\t\t\t\tkind: 'enum',\n\t\t\t\topt: true,\n\t\t\t\tT: () => [\n\t\t\t\t\t'sui.rpc.v2.AccumulatorWrite.AccumulatorOperation',\n\t\t\t\t\tAccumulatorWrite_AccumulatorOperation,\n\t\t\t\t],\n\t\t\t},\n\t\t\t{\n\t\t\t\tno: 5,\n\t\t\t\tname: 'value',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t]);\n\t}\n}\n/**\n * @generated MessageType for protobuf message sui.rpc.v2.AccumulatorWrite\n */\nexport const AccumulatorWrite = new AccumulatorWrite$Type();\n// @generated message type with reflection information, may provide speed optimized methods\nclass UnchangedConsensusObject$Type extends MessageType<UnchangedConsensusObject> {\n\tconstructor() {\n\t\tsuper('sui.rpc.v2.UnchangedConsensusObject', [\n\t\t\t{\n\t\t\t\tno: 1,\n\t\t\t\tname: 'kind',\n\t\t\t\tkind: 'enum',\n\t\t\t\topt: true,\n\t\t\t\tT: () => [\n\t\t\t\t\t'sui.rpc.v2.UnchangedConsensusObject.UnchangedConsensusObjectKind',\n\t\t\t\t\tUnchangedConsensusObject_UnchangedConsensusObjectKind,\n\t\t\t\t],\n\t\t\t},\n\t\t\t{ no: 2, name: 'object_id', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{\n\t\t\t\tno: 3,\n\t\t\t\tname: 'version',\n\t\t\t\tkind: 'scalar',\n\t\t\t\topt: true,\n\t\t\t\tT: 4 /*ScalarType.UINT64*/,\n\t\t\t\tL: 0 /*LongType.BIGINT*/,\n\t\t\t},\n\t\t\t{ no: 4, name: 'digest', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t\t{ no: 5, name: 'object_type', kind: 'scalar', opt: true, T: 9 /*ScalarType.STRING*/ },\n\t\t]);\n\t}\n}\n/**\n * @generated MessageType for protobuf message sui.rpc.v2.UnchangedConsensusObject\n */\nexport const UnchangedConsensusObject = new UnchangedConsensusObject$Type();\n"],"mappings":"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"}