wowok
Version:
Wowok Blockchain TypeScript API
580 lines (579 loc) • 35.2 kB
TypeScript
export declare const TransactionEffects: import("../_deps/bcs/bcs-type.js").BcsEnum<{
V1: import("../_deps/bcs/bcs-type.js").BcsStruct<{
status: import("../_deps/bcs/bcs-type.js").BcsEnum<{
Success: any;
Failed: import("../_deps/bcs/bcs-type.js").BcsStruct<{
error: import("../_deps/bcs/bcs-type.js").BcsEnum<{
InsufficientGas: any;
InvalidGasObject: any;
InvariantViolation: any;
FeatureNotYetSupported: any;
MoveObjectTooBig: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxObjectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
MovePackageTooBig: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxObjectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
CircularObjectOwnership: import("../_deps/bcs/bcs-type.js").BcsStruct<{
object: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
InsufficientCoinBalance: any;
CoinBalanceOverflow: any;
PublishErrorNonZeroAddress: any;
WowMoveVerificationError: any;
MovePrimitiveRuntimeError: import("../_deps/bcs/bcs-type.js").BcsType<{
module: {
address: string;
name: string;
};
function: number;
instruction: number;
functionName: string;
}, {
module: {
address: string | Uint8Array<ArrayBufferLike>;
name: string;
};
function: number;
instruction: number;
functionName: string;
}, `Option<${string}>`>;
MoveAbort: import("../_deps/bcs/bcs-type.js").BcsTuple<readonly [import("../_deps/bcs/bcs-type.js").BcsStruct<{
module: import("../_deps/bcs/bcs-type.js").BcsStruct<{
address: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
name: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
function: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
instruction: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
functionName: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "Option<string>">;
}, string>, import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">], string>;
VMVerificationOrDeserializationError: any;
VMInvariantViolation: any;
FunctionNotFound: any;
ArityMismatch: any;
TypeArityMismatch: any;
NonEntryFunctionInvoked: any;
CommandArgumentError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
argIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
kind: import("../_deps/bcs/bcs-type.js").BcsEnum<{
TypeMismatch: any;
InvalidBCSBytes: any;
InvalidUsageOfPureArg: any;
InvalidArgumentToPrivateEntryFunction: any;
IndexOutOfBounds: import("../_deps/bcs/bcs-type.js").BcsStruct<{
idx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
SecondaryIndexOutOfBounds: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
secondaryIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidResultArity: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidGasCoinUsage: any;
InvalidValueUsage: any;
InvalidObjectByValue: any;
InvalidObjectByMutRef: any;
SharedObjectOperationNotAllowed: any;
}, "CommandArgumentError">;
}, string>;
TypeArgumentError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
argumentIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
kind: import("../_deps/bcs/bcs-type.js").BcsEnum<{
TypeNotFound: any;
ConstraintNotSatisfied: any;
}, "TypeArgumentError">;
}, string>;
UnusedValueWithoutDrop: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
secondaryIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidPublicFunctionReturnType: import("../_deps/bcs/bcs-type.js").BcsStruct<{
idx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidTransferObject: any;
EffectsTooLarge: import("../_deps/bcs/bcs-type.js").BcsStruct<{
currentSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
PublishUpgradeMissingDependency: any;
PublishUpgradeDependencyDowngrade: any;
PackageUpgradeError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
upgradeError: import("../_deps/bcs/bcs-type.js").BcsEnum<{
UnableToFetchPackage: import("../_deps/bcs/bcs-type.js").BcsStruct<{
packageId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
NotAPackage: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
IncompatibleUpgrade: any;
DigestDoesNotMatch: import("../_deps/bcs/bcs-type.js").BcsStruct<{
digest: import("../_deps/bcs/bcs-type.js").BcsType<Uint8Array<ArrayBufferLike>, Iterable<number>, "vector<u8>">;
}, string>;
UnknownUpgradePolicy: import("../_deps/bcs/bcs-type.js").BcsStruct<{
policy: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u8">;
}, string>;
PackageIDDoesNotMatch: import("../_deps/bcs/bcs-type.js").BcsStruct<{
packageId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
ticketId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
}, "PackageUpgradeError">;
}, string>;
WrittenObjectsTooLarge: import("../_deps/bcs/bcs-type.js").BcsStruct<{
currentSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
CertificateDenied: any;
WowMoveVerificationTimedout: any;
SharedObjectOperationNotAllowed: any;
InputObjectDeleted: any;
ExecutionCancelledDueToSharedObjectCongestion: import("../_deps/bcs/bcs-type.js").BcsStruct<{
congestedObjects: import("../_deps/bcs/bcs-type.js").BcsType<string[], Iterable<string | Uint8Array<ArrayBufferLike>> & {
length: number;
}, string>;
}, string>;
AddressDeniedForCoin: import("../_deps/bcs/bcs-type.js").BcsStruct<{
address: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
coinType: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
CoinTypeGlobalPause: import("../_deps/bcs/bcs-type.js").BcsStruct<{
coinType: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
ExecutionCancelledDueToRandomnessUnavailable: any;
}, "ExecutionFailureStatus">;
command: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "Option<u64>">;
}, string>;
}, "ExecutionStatus">;
executedEpoch: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
gasUsed: import("../_deps/bcs/bcs-type.js").BcsStruct<{
computationCost: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
storageCost: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
storageRebate: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
nonRefundableStorageFee: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
modifiedAtVersions: import("../_deps/bcs/bcs-type.js").BcsType<[string, string][], Iterable<readonly [string | Uint8Array<ArrayBufferLike>, string | number | bigint]> & {
length: number;
}, string>;
sharedObjects: import("../_deps/bcs/bcs-type.js").BcsType<{
objectId: string;
version: string;
digest: string;
}[], Iterable<{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}> & {
length: number;
}, string>;
transactionDigest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "ObjectDigest">;
created: import("../_deps/bcs/bcs-type.js").BcsType<[{
objectId: string;
version: string;
digest: string;
}, import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
AddressOwner: string;
ObjectOwner: string;
Shared: {
initialSharedVersion: string;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string;
startVersion: string;
};
}, "AddressOwner" | "ObjectOwner" | "Shared" | "Immutable" | "ConsensusAddressOwner">][], Iterable<readonly [{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}, import("../_deps/bcs/types.js").EnumInputShape<{
AddressOwner: string | Uint8Array<ArrayBufferLike>;
ObjectOwner: string | Uint8Array<ArrayBufferLike>;
Shared: {
initialSharedVersion: string | number | bigint;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string | Uint8Array<ArrayBufferLike>;
startVersion: string | number | bigint;
};
}>]> & {
length: number;
}, string>;
mutated: import("../_deps/bcs/bcs-type.js").BcsType<[{
objectId: string;
version: string;
digest: string;
}, import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
AddressOwner: string;
ObjectOwner: string;
Shared: {
initialSharedVersion: string;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string;
startVersion: string;
};
}, "AddressOwner" | "ObjectOwner" | "Shared" | "Immutable" | "ConsensusAddressOwner">][], Iterable<readonly [{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}, import("../_deps/bcs/types.js").EnumInputShape<{
AddressOwner: string | Uint8Array<ArrayBufferLike>;
ObjectOwner: string | Uint8Array<ArrayBufferLike>;
Shared: {
initialSharedVersion: string | number | bigint;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string | Uint8Array<ArrayBufferLike>;
startVersion: string | number | bigint;
};
}>]> & {
length: number;
}, string>;
unwrapped: import("../_deps/bcs/bcs-type.js").BcsType<[{
objectId: string;
version: string;
digest: string;
}, import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
AddressOwner: string;
ObjectOwner: string;
Shared: {
initialSharedVersion: string;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string;
startVersion: string;
};
}, "AddressOwner" | "ObjectOwner" | "Shared" | "Immutable" | "ConsensusAddressOwner">][], Iterable<readonly [{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}, import("../_deps/bcs/types.js").EnumInputShape<{
AddressOwner: string | Uint8Array<ArrayBufferLike>;
ObjectOwner: string | Uint8Array<ArrayBufferLike>;
Shared: {
initialSharedVersion: string | number | bigint;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string | Uint8Array<ArrayBufferLike>;
startVersion: string | number | bigint;
};
}>]> & {
length: number;
}, string>;
deleted: import("../_deps/bcs/bcs-type.js").BcsType<{
objectId: string;
version: string;
digest: string;
}[], Iterable<{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}> & {
length: number;
}, string>;
unwrappedThenDeleted: import("../_deps/bcs/bcs-type.js").BcsType<{
objectId: string;
version: string;
digest: string;
}[], Iterable<{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}> & {
length: number;
}, string>;
wrapped: import("../_deps/bcs/bcs-type.js").BcsType<{
objectId: string;
version: string;
digest: string;
}[], Iterable<{
objectId: string | Uint8Array<ArrayBufferLike>;
version: string | number | bigint;
digest: string;
}> & {
length: number;
}, string>;
gasObject: import("../_deps/bcs/bcs-type.js").BcsTuple<readonly [import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
version: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
digest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "ObjectDigest">;
}, string>, import("../_deps/bcs/bcs-type.js").BcsEnum<{
AddressOwner: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
ObjectOwner: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
Shared: import("../_deps/bcs/bcs-type.js").BcsStruct<{
initialSharedVersion: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
Immutable: any;
ConsensusAddressOwner: import("../_deps/bcs/bcs-type.js").BcsStruct<{
owner: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
startVersion: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
}, "Owner">], string>;
eventsDigest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "Option<ObjectDigest>">;
dependencies: import("../_deps/bcs/bcs-type.js").BcsType<string[], Iterable<string> & {
length: number;
}, string>;
}, string>;
V2: import("../_deps/bcs/bcs-type.js").BcsStruct<{
status: import("../_deps/bcs/bcs-type.js").BcsEnum<{
Success: any;
Failed: import("../_deps/bcs/bcs-type.js").BcsStruct<{
error: import("../_deps/bcs/bcs-type.js").BcsEnum<{
InsufficientGas: any;
InvalidGasObject: any;
InvariantViolation: any;
FeatureNotYetSupported: any;
MoveObjectTooBig: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxObjectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
MovePackageTooBig: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxObjectSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
CircularObjectOwnership: import("../_deps/bcs/bcs-type.js").BcsStruct<{
object: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
InsufficientCoinBalance: any;
CoinBalanceOverflow: any;
PublishErrorNonZeroAddress: any;
WowMoveVerificationError: any;
MovePrimitiveRuntimeError: import("../_deps/bcs/bcs-type.js").BcsType<{
module: {
address: string;
name: string;
};
function: number;
instruction: number;
functionName: string;
}, {
module: {
address: string | Uint8Array<ArrayBufferLike>;
name: string;
};
function: number;
instruction: number;
functionName: string;
}, `Option<${string}>`>;
MoveAbort: import("../_deps/bcs/bcs-type.js").BcsTuple<readonly [import("../_deps/bcs/bcs-type.js").BcsStruct<{
module: import("../_deps/bcs/bcs-type.js").BcsStruct<{
address: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
name: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
function: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
instruction: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
functionName: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "Option<string>">;
}, string>, import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">], string>;
VMVerificationOrDeserializationError: any;
VMInvariantViolation: any;
FunctionNotFound: any;
ArityMismatch: any;
TypeArityMismatch: any;
NonEntryFunctionInvoked: any;
CommandArgumentError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
argIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
kind: import("../_deps/bcs/bcs-type.js").BcsEnum<{
TypeMismatch: any;
InvalidBCSBytes: any;
InvalidUsageOfPureArg: any;
InvalidArgumentToPrivateEntryFunction: any;
IndexOutOfBounds: import("../_deps/bcs/bcs-type.js").BcsStruct<{
idx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
SecondaryIndexOutOfBounds: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
secondaryIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidResultArity: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidGasCoinUsage: any;
InvalidValueUsage: any;
InvalidObjectByValue: any;
InvalidObjectByMutRef: any;
SharedObjectOperationNotAllowed: any;
}, "CommandArgumentError">;
}, string>;
TypeArgumentError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
argumentIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
kind: import("../_deps/bcs/bcs-type.js").BcsEnum<{
TypeNotFound: any;
ConstraintNotSatisfied: any;
}, "TypeArgumentError">;
}, string>;
UnusedValueWithoutDrop: import("../_deps/bcs/bcs-type.js").BcsStruct<{
resultIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
secondaryIdx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidPublicFunctionReturnType: import("../_deps/bcs/bcs-type.js").BcsStruct<{
idx: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u16">;
}, string>;
InvalidTransferObject: any;
EffectsTooLarge: import("../_deps/bcs/bcs-type.js").BcsStruct<{
currentSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
PublishUpgradeMissingDependency: any;
PublishUpgradeDependencyDowngrade: any;
PackageUpgradeError: import("../_deps/bcs/bcs-type.js").BcsStruct<{
upgradeError: import("../_deps/bcs/bcs-type.js").BcsEnum<{
UnableToFetchPackage: import("../_deps/bcs/bcs-type.js").BcsStruct<{
packageId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
NotAPackage: import("../_deps/bcs/bcs-type.js").BcsStruct<{
objectId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
IncompatibleUpgrade: any;
DigestDoesNotMatch: import("../_deps/bcs/bcs-type.js").BcsStruct<{
digest: import("../_deps/bcs/bcs-type.js").BcsType<Uint8Array<ArrayBufferLike>, Iterable<number>, "vector<u8>">;
}, string>;
UnknownUpgradePolicy: import("../_deps/bcs/bcs-type.js").BcsStruct<{
policy: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "u8">;
}, string>;
PackageIDDoesNotMatch: import("../_deps/bcs/bcs-type.js").BcsStruct<{
packageId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
ticketId: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
}, string>;
}, "PackageUpgradeError">;
}, string>;
WrittenObjectsTooLarge: import("../_deps/bcs/bcs-type.js").BcsStruct<{
currentSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
maxSize: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
CertificateDenied: any;
WowMoveVerificationTimedout: any;
SharedObjectOperationNotAllowed: any;
InputObjectDeleted: any;
ExecutionCancelledDueToSharedObjectCongestion: import("../_deps/bcs/bcs-type.js").BcsStruct<{
congestedObjects: import("../_deps/bcs/bcs-type.js").BcsType<string[], Iterable<string | Uint8Array<ArrayBufferLike>> & {
length: number;
}, string>;
}, string>;
AddressDeniedForCoin: import("../_deps/bcs/bcs-type.js").BcsStruct<{
address: import("../_deps/bcs/bcs-type.js").BcsType<string, string | Uint8Array<ArrayBufferLike>, "bytes[32]">;
coinType: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
CoinTypeGlobalPause: import("../_deps/bcs/bcs-type.js").BcsStruct<{
coinType: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "string">;
}, string>;
ExecutionCancelledDueToRandomnessUnavailable: any;
}, "ExecutionFailureStatus">;
command: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "Option<u64>">;
}, string>;
}, "ExecutionStatus">;
executedEpoch: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
gasUsed: import("../_deps/bcs/bcs-type.js").BcsStruct<{
computationCost: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
storageCost: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
storageRebate: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
nonRefundableStorageFee: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
}, string>;
transactionDigest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "ObjectDigest">;
gasObjectIndex: import("../_deps/bcs/bcs-type.js").BcsType<number, number, "Option<u32>">;
eventsDigest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "Option<ObjectDigest>">;
dependencies: import("../_deps/bcs/bcs-type.js").BcsType<string[], Iterable<string> & {
length: number;
}, string>;
lamportVersion: import("../_deps/bcs/bcs-type.js").BcsType<string, string | number | bigint, "u64">;
changedObjects: import("../_deps/bcs/bcs-type.js").BcsType<[string, {
inputState: import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
NotExist: unknown;
Exist: [[string, string], import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
AddressOwner: string;
ObjectOwner: string;
Shared: {
initialSharedVersion: string;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string;
startVersion: string;
};
}, "AddressOwner" | "ObjectOwner" | "Shared" | "Immutable" | "ConsensusAddressOwner">];
}, "NotExist" | "Exist">;
outputState: import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
NotExist: unknown;
ObjectWrite: [string, import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
AddressOwner: string;
ObjectOwner: string;
Shared: {
initialSharedVersion: string;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string;
startVersion: string;
};
}, "AddressOwner" | "ObjectOwner" | "Shared" | "Immutable" | "ConsensusAddressOwner">];
PackageWrite: [string, string];
}, "NotExist" | "ObjectWrite" | "PackageWrite">;
idOperation: import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
None: unknown;
Created: unknown;
Deleted: unknown;
}, "None" | "Created" | "Deleted">;
}][], Iterable<readonly [string | Uint8Array<ArrayBufferLike>, {
inputState: import("../_deps/bcs/types.js").EnumInputShape<{
NotExist: unknown;
Exist: readonly [readonly [string | number | bigint, string], import("../_deps/bcs/types.js").EnumInputShape<{
AddressOwner: string | Uint8Array<ArrayBufferLike>;
ObjectOwner: string | Uint8Array<ArrayBufferLike>;
Shared: {
initialSharedVersion: string | number | bigint;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string | Uint8Array<ArrayBufferLike>;
startVersion: string | number | bigint;
};
}>];
}>;
outputState: import("../_deps/bcs/types.js").EnumInputShape<{
NotExist: unknown;
ObjectWrite: readonly [string, import("../_deps/bcs/types.js").EnumInputShape<{
AddressOwner: string | Uint8Array<ArrayBufferLike>;
ObjectOwner: string | Uint8Array<ArrayBufferLike>;
Shared: {
initialSharedVersion: string | number | bigint;
};
Immutable: unknown;
ConsensusAddressOwner: {
owner: string | Uint8Array<ArrayBufferLike>;
startVersion: string | number | bigint;
};
}>];
PackageWrite: readonly [string | number | bigint, string];
}>;
idOperation: import("../_deps/bcs/types.js").EnumInputShape<{
None: unknown;
Created: unknown;
Deleted: unknown;
}>;
}]> & {
length: number;
}, string>;
unchangedSharedObjects: import("../_deps/bcs/bcs-type.js").BcsType<[string, import("../_deps/bcs/types.js").EnumOutputShapeWithKeys<{
ReadOnlyRoot: [string, string];
MutateDeleted: string;
ReadDeleted: string;
Cancelled: string;
PerEpochConfig: unknown;
}, "ReadOnlyRoot" | "MutateDeleted" | "ReadDeleted" | "Cancelled" | "PerEpochConfig">][], Iterable<readonly [string | Uint8Array<ArrayBufferLike>, import("../_deps/bcs/types.js").EnumInputShape<{
ReadOnlyRoot: readonly [string | number | bigint, string];
MutateDeleted: string | number | bigint;
ReadDeleted: string | number | bigint;
Cancelled: string | number | bigint;
PerEpochConfig: unknown;
}>]> & {
length: number;
}, string>;
auxDataDigest: import("../_deps/bcs/bcs-type.js").BcsType<string, string, "Option<ObjectDigest>">;
}, string>;
}, "TransactionEffects">;