@mysten/sui 1.45.0 → 1.45.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/cjs/transactions/Arguments.d.ts +2 -2
- package/dist/cjs/transactions/Transaction.d.ts +88 -88
- package/dist/cjs/transactions/TransactionData.d.ts +6 -6
- package/dist/cjs/transactions/data/internal.d.ts +107 -105
- package/dist/cjs/transactions/data/internal.js +6 -4
- package/dist/cjs/transactions/data/internal.js.map +2 -2
- package/dist/cjs/transactions/data/v1.d.ts +95 -92
- package/dist/cjs/transactions/data/v2.d.ts +15 -147
- package/dist/cjs/version.d.ts +2 -2
- package/dist/cjs/version.js +2 -2
- package/dist/cjs/version.js.map +1 -1
- package/dist/esm/transactions/Arguments.d.ts +2 -2
- package/dist/esm/transactions/Transaction.d.ts +88 -88
- package/dist/esm/transactions/TransactionData.d.ts +6 -6
- package/dist/esm/transactions/data/internal.d.ts +107 -105
- package/dist/esm/transactions/data/internal.js +6 -4
- package/dist/esm/transactions/data/internal.js.map +2 -2
- package/dist/esm/transactions/data/v1.d.ts +95 -92
- package/dist/esm/transactions/data/v2.d.ts +15 -147
- package/dist/esm/version.d.ts +2 -2
- package/dist/esm/version.js +2 -2
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/transactions/data/internal.ts +21 -14
- package/src/version.ts +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../src/transactions/data/internal.ts"],
|
|
4
|
-
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { EnumInputShape, EnumOutputShape } from '@mysten/bcs';\nimport type { GenericSchema, InferInput, InferOutput } from 'valibot';\nimport {\n\tarray,\n\tboolean,\n\tcheck,\n\tinteger,\n\tlazy,\n\tliteral,\n\tnullable,\n\tnullish,\n\tnumber,\n\tobject,\n\toptional,\n\tpipe,\n\trecord,\n\tstring,\n\ttransform,\n\ttuple,\n\tunion,\n\tunknown,\n} from 'valibot';\n\nimport { isValidSuiAddress, normalizeSuiAddress } from '../../utils/sui-types.js';\nimport type { Simplify } from '@mysten/utils';\n\ntype
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKA,qBAmBO;AAEP,uBAAuD;
|
|
4
|
+
"sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport type { EnumInputShape, EnumOutputShape } from '@mysten/bcs';\nimport type { GenericSchema, InferInput, InferOutput } from 'valibot';\nimport {\n\tarray,\n\tboolean,\n\tcheck,\n\tinteger,\n\tlazy,\n\tliteral,\n\tnullable,\n\tnullish,\n\tnumber,\n\tobject,\n\toptional,\n\tpipe,\n\trecord,\n\tstring,\n\ttransform,\n\ttuple,\n\tunion,\n\tunknown,\n} from 'valibot';\n\nimport { isValidSuiAddress, normalizeSuiAddress } from '../../utils/sui-types.js';\nimport type { Simplify } from '@mysten/utils';\n\ntype EnumSchemaInput<T extends Record<string, GenericSchema<any>>> = EnumInputShape<\n\tSimplify<{\n\t\t[K in keyof T]: InferInput<T[K]>;\n\t}>\n>;\n\ntype EnumSchemaOutput<T extends Record<string, GenericSchema<any>>> = EnumOutputShape<\n\tSimplify<{\n\t\t[K in keyof T]: InferOutput<T[K]>;\n\t}>\n>;\n\ntype EnumSchema<T extends Record<string, GenericSchema<any>>> = GenericSchema<\n\tEnumSchemaInput<T>,\n\tEnumSchemaOutput<T>\n>;\n\nexport function safeEnum<T extends Record<string, GenericSchema<any>>>(options: T): EnumSchema<T> {\n\tconst unionOptions = Object.entries(options).map(([key, value]) => object({ [key]: value }));\n\n\treturn pipe(\n\t\tunion(unionOptions),\n\t\ttransform(\n\t\t\t(value) =>\n\t\t\t\t({\n\t\t\t\t\t...value,\n\t\t\t\t\t$kind: Object.keys(value)[0] as keyof typeof value,\n\t\t\t\t}) as EnumSchemaOutput<T>,\n\t\t),\n\t) as EnumSchema<T>;\n}\n\nexport const SuiAddress = pipe(\n\tstring(),\n\ttransform((value) => normalizeSuiAddress(value)),\n\tcheck(isValidSuiAddress),\n);\nexport const ObjectID = SuiAddress;\nexport const BCSBytes = string();\nexport const JsonU64 = pipe(\n\tunion([string(), pipe(number(), integer())]),\n\n\tcheck((val) => {\n\t\ttry {\n\t\t\tBigInt(val);\n\t\t\treturn BigInt(val) >= 0 && BigInt(val) <= 18446744073709551615n;\n\t\t} catch {\n\t\t\treturn false;\n\t\t}\n\t}, 'Invalid u64'),\n);\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/base_types.rs#L138\n// Implemented as a tuple in rust\nexport const ObjectRefSchema = object({\n\tobjectId: SuiAddress,\n\tversion: JsonU64,\n\tdigest: string(),\n});\nexport type ObjectRef = InferOutput<typeof ObjectRefSchema>;\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L690-L702\nexport const ArgumentSchema = pipe(\n\tunion([\n\t\tobject({ GasCoin: literal(true) }),\n\t\tobject({ Input: pipe(number(), integer()), type: optional(literal('pure')) }),\n\t\tobject({ Input: pipe(number(), integer()), type: optional(literal('object')) }),\n\t\tobject({ Result: pipe(number(), integer()) }),\n\t\tobject({ NestedResult: tuple([pipe(number(), integer()), pipe(number(), integer())]) }),\n\t]),\n\ttransform((value) => ({\n\t\t...value,\n\t\t$kind: Object.keys(value)[0] as keyof typeof value,\n\t})),\n\t// Defined manually to add `type?: 'pure' | 'object'` to Input\n) as GenericSchema<\n\t// Input\n\t| { GasCoin: true }\n\t| { Input: number; type?: 'pure' | 'object' }\n\t| { Result: number }\n\t| { NestedResult: [number, number] },\n\t// Output\n\t| { $kind: 'GasCoin'; GasCoin: true }\n\t| { $kind: 'Input'; Input: number; type?: 'pure' }\n\t| { $kind: 'Input'; Input: number; type?: 'object' }\n\t| { $kind: 'Result'; Result: number }\n\t| { $kind: 'NestedResult'; NestedResult: [number, number] }\n>;\n\nexport type Argument = InferOutput<typeof ArgumentSchema>;\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L1387-L1392\nexport const GasDataSchema = object({\n\tbudget: nullable(JsonU64),\n\tprice: nullable(JsonU64),\n\towner: nullable(SuiAddress),\n\tpayment: nullable(array(ObjectRefSchema)),\n});\nexport type GasData = InferOutput<typeof GasDataSchema>;\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/external-crates/move/crates/move-core-types/src/language_storage.rs#L140-L147\nexport const StructTagSchema = object({\n\taddress: string(),\n\tmodule: string(),\n\tname: string(),\n\t// type_params in rust, should be updated to use camelCase\n\ttypeParams: array(string()),\n});\nexport type StructTag = InferOutput<typeof StructTagSchema>;\n\n// https://github.com/MystenLabs/sui/blob/cea8742e810142a8145fd83c4c142d61e561004a/crates/sui-graphql-rpc/schema/current_progress_schema.graphql#L1614-L1627\nexport type OpenMoveTypeSignatureBody =\n\t| 'address'\n\t| 'bool'\n\t| 'u8'\n\t| 'u16'\n\t| 'u32'\n\t| 'u64'\n\t| 'u128'\n\t| 'u256'\n\t| { vector: OpenMoveTypeSignatureBody }\n\t| {\n\t\t\tdatatype: {\n\t\t\t\tpackage: string;\n\t\t\t\tmodule: string;\n\t\t\t\ttype: string;\n\t\t\t\ttypeParameters: OpenMoveTypeSignatureBody[];\n\t\t\t};\n\t }\n\t| { typeParameter: number };\n\nexport const OpenMoveTypeSignatureBodySchema: GenericSchema<OpenMoveTypeSignatureBody> = union([\n\tliteral('address'),\n\tliteral('bool'),\n\tliteral('u8'),\n\tliteral('u16'),\n\tliteral('u32'),\n\tliteral('u64'),\n\tliteral('u128'),\n\tliteral('u256'),\n\tobject({ vector: lazy(() => OpenMoveTypeSignatureBodySchema) }),\n\tobject({\n\t\tdatatype: object({\n\t\t\tpackage: string(),\n\t\t\tmodule: string(),\n\t\t\ttype: string(),\n\t\t\ttypeParameters: array(lazy(() => OpenMoveTypeSignatureBodySchema)),\n\t\t}),\n\t}),\n\tobject({ typeParameter: pipe(number(), integer()) }),\n]);\n\n// https://github.com/MystenLabs/sui/blob/cea8742e810142a8145fd83c4c142d61e561004a/crates/sui-graphql-rpc/schema/current_progress_schema.graphql#L1609-L1612\nexport const OpenMoveTypeSignatureSchema = object({\n\tref: nullable(union([literal('&'), literal('&mut')])),\n\tbody: OpenMoveTypeSignatureBodySchema,\n});\nexport type OpenMoveTypeSignature = InferOutput<typeof OpenMoveTypeSignatureSchema>;\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L707-L718\nconst ProgrammableMoveCallSchema = object({\n\tpackage: ObjectID,\n\tmodule: string(),\n\tfunction: string(),\n\t// snake case in rust\n\ttypeArguments: array(string()),\n\targuments: array(ArgumentSchema),\n\t_argumentTypes: optional(nullable(array(OpenMoveTypeSignatureSchema))),\n});\nexport type ProgrammableMoveCall = InferOutput<typeof ProgrammableMoveCallSchema>;\n\nexport const $Intent = object({\n\tname: string(),\n\tinputs: record(string(), union([ArgumentSchema, array(ArgumentSchema)])),\n\tdata: record(string(), unknown()),\n});\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L657-L685\nexport const CommandSchema = safeEnum({\n\tMoveCall: ProgrammableMoveCallSchema,\n\tTransferObjects: object({\n\t\tobjects: array(ArgumentSchema),\n\t\taddress: ArgumentSchema,\n\t}),\n\tSplitCoins: object({\n\t\tcoin: ArgumentSchema,\n\t\tamounts: array(ArgumentSchema),\n\t}),\n\tMergeCoins: object({\n\t\tdestination: ArgumentSchema,\n\t\tsources: array(ArgumentSchema),\n\t}),\n\tPublish: object({\n\t\tmodules: array(BCSBytes),\n\t\tdependencies: array(ObjectID),\n\t}),\n\tMakeMoveVec: object({\n\t\ttype: nullable(string()),\n\t\telements: array(ArgumentSchema),\n\t}),\n\tUpgrade: object({\n\t\tmodules: array(BCSBytes),\n\t\tdependencies: array(ObjectID),\n\t\tpackage: ObjectID,\n\t\tticket: ArgumentSchema,\n\t}),\n\t$Intent,\n});\n\nexport type Command<Arg = Argument> = EnumOutputShape<{\n\tMoveCall: {\n\t\tpackage: string;\n\t\tmodule: string;\n\t\tfunction: string;\n\t\ttypeArguments: string[];\n\t\targuments: Arg[];\n\t\t_argumentTypes?: OpenMoveTypeSignature[] | null;\n\t};\n\tTransferObjects: {\n\t\tobjects: Arg[];\n\t\taddress: Arg;\n\t};\n\tSplitCoins: {\n\t\tcoin: Arg;\n\t\tamounts: Arg[];\n\t};\n\tMergeCoins: {\n\t\tdestination: Arg;\n\t\tsources: Arg[];\n\t};\n\tPublish: {\n\t\tmodules: string[];\n\t\tdependencies: string[];\n\t};\n\tMakeMoveVec: {\n\t\ttype: string | null;\n\t\telements: Arg[];\n\t};\n\tUpgrade: {\n\t\tmodules: string[];\n\t\tdependencies: string[];\n\t\tpackage: string;\n\t\tticket: Arg;\n\t};\n\t$Intent: {\n\t\tname: string;\n\t\tinputs: Record<string, Argument | Argument[]>;\n\t\tdata: Record<string, unknown>;\n\t};\n}>;\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L102-L114\nexport const ObjectArgSchema = safeEnum({\n\tImmOrOwnedObject: ObjectRefSchema,\n\tSharedObject: object({\n\t\tobjectId: ObjectID,\n\t\t// snake case in rust\n\t\tinitialSharedVersion: JsonU64,\n\t\tmutable: boolean(),\n\t}),\n\tReceiving: ObjectRefSchema,\n});\n\n// https://github.com/MystenLabs/sui/blob/df41d5fa8127634ff4285671a01ead00e519f806/crates/sui-types/src/transaction.rs#L75-L80\nconst CallArgSchema = safeEnum({\n\tObject: ObjectArgSchema,\n\tPure: object({\n\t\tbytes: BCSBytes,\n\t}),\n\tUnresolvedPure: object({\n\t\tvalue: unknown(),\n\t}),\n\tUnresolvedObject: object({\n\t\tobjectId: ObjectID,\n\t\tversion: optional(nullable(JsonU64)),\n\t\tdigest: optional(nullable(string())),\n\t\tinitialSharedVersion: optional(nullable(JsonU64)),\n\t\tmutable: optional(nullable(boolean())),\n\t}),\n});\nexport type CallArg = InferOutput<typeof CallArgSchema>;\n\nexport const NormalizedCallArg = safeEnum({\n\tObject: ObjectArgSchema,\n\tPure: object({\n\t\tbytes: BCSBytes,\n\t}),\n});\n\nexport const TransactionExpiration = safeEnum({\n\tNone: literal(true),\n\tEpoch: JsonU64,\n});\n\nexport type TransactionExpiration = InferOutput<typeof TransactionExpiration>;\n\nexport const TransactionDataSchema = object({\n\tversion: literal(2),\n\tsender: nullish(SuiAddress),\n\texpiration: nullish(TransactionExpiration),\n\tgasData: GasDataSchema,\n\tinputs: array(CallArgSchema),\n\tcommands: array(CommandSchema),\n});\n\nexport type TransactionData = InferOutput<typeof TransactionDataSchema>;\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -4,33 +4,36 @@ import type { TransactionData } from './internal.js';
|
|
|
4
4
|
export declare const ObjectRef: import("valibot").ObjectSchema<{
|
|
5
5
|
readonly digest: import("valibot").StringSchema<undefined>;
|
|
6
6
|
readonly objectId: import("valibot").StringSchema<undefined>;
|
|
7
|
-
readonly version: import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>;
|
|
7
|
+
readonly version: import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>;
|
|
8
8
|
}, undefined>;
|
|
9
|
-
export declare const NormalizedCallArg:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
export declare const NormalizedCallArg: import("valibot").BaseSchema<{
|
|
10
|
+
Pure: number[];
|
|
11
|
+
} | {
|
|
12
|
+
Object: {
|
|
13
|
+
Receiving: {
|
|
14
14
|
digest: string;
|
|
15
|
+
objectId: string;
|
|
16
|
+
version: string | number | bigint;
|
|
15
17
|
};
|
|
18
|
+
} | {
|
|
16
19
|
Shared: {
|
|
17
20
|
objectId: string;
|
|
18
21
|
initialSharedVersion: string | number;
|
|
19
22
|
mutable: boolean;
|
|
20
23
|
};
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
objectId: string;
|
|
24
|
+
} | {
|
|
25
|
+
ImmOrOwned: {
|
|
24
26
|
digest: string;
|
|
27
|
+
objectId: string;
|
|
28
|
+
version: string | number | bigint;
|
|
25
29
|
};
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
}>, import("@mysten/bcs").EnumOutputShapeWithKeys<{
|
|
30
|
+
};
|
|
31
|
+
}, import("@mysten/bcs").EnumOutputShapeWithKeys<{
|
|
29
32
|
Object: import("@mysten/bcs").EnumOutputShapeWithKeys<{
|
|
30
33
|
ImmOrOwned: {
|
|
31
|
-
version: string | number | bigint;
|
|
32
|
-
objectId: string;
|
|
33
34
|
digest: string;
|
|
35
|
+
objectId: string;
|
|
36
|
+
version: string | number | bigint;
|
|
34
37
|
};
|
|
35
38
|
Shared: {
|
|
36
39
|
objectId: string;
|
|
@@ -38,9 +41,9 @@ export declare const NormalizedCallArg: GenericSchema<import("@mysten/bcs").Enum
|
|
|
38
41
|
mutable: boolean;
|
|
39
42
|
};
|
|
40
43
|
Receiving: {
|
|
41
|
-
version: string | number | bigint;
|
|
42
|
-
objectId: string;
|
|
43
44
|
digest: string;
|
|
45
|
+
objectId: string;
|
|
46
|
+
version: string | number | bigint;
|
|
44
47
|
};
|
|
45
48
|
}, "Receiving" | "Shared" | "ImmOrOwned">;
|
|
46
49
|
Pure: number[];
|
|
@@ -49,50 +52,50 @@ export declare const TypeTag: GenericSchema<TypeTagType>;
|
|
|
49
52
|
export declare const StructTag: GenericSchema<StructTagType>;
|
|
50
53
|
export declare const TransactionArgument: import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
51
54
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
52
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
55
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
53
56
|
readonly value: import("valibot").UnknownSchema;
|
|
54
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
57
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
55
58
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
56
59
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
57
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
60
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
58
61
|
readonly value: import("valibot").UnknownSchema;
|
|
59
62
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
60
63
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
61
64
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
62
65
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
63
66
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
64
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
67
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
65
68
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
66
69
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
67
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
68
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
70
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
71
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
69
72
|
}, undefined>], undefined>;
|
|
70
73
|
export declare const SerializedTransactionDataV1: import("valibot").ObjectSchema<{
|
|
71
74
|
readonly version: import("valibot").LiteralSchema<1, undefined>;
|
|
72
|
-
readonly sender: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>,
|
|
75
|
+
readonly sender: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
73
76
|
readonly expiration: import("valibot").NullishSchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
74
|
-
readonly Epoch: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
77
|
+
readonly Epoch: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
75
78
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
76
|
-
readonly None: import("valibot").NullableSchema<import("valibot").LiteralSchema<true, undefined>,
|
|
77
|
-
}, undefined>], undefined>,
|
|
79
|
+
readonly None: import("valibot").NullableSchema<import("valibot").LiteralSchema<true, undefined>, undefined>;
|
|
80
|
+
}, undefined>], undefined>, undefined>;
|
|
78
81
|
readonly gasConfig: import("valibot").ObjectSchema<{
|
|
79
|
-
readonly budget: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").UnionSchema<[import("valibot").NumberSchema<undefined>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>, import("valibot").CheckAction<string | number | bigint, undefined>]>,
|
|
80
|
-
readonly price: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<[import("valibot").UnionSchema<[import("valibot").NumberSchema<undefined>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>, import("valibot").CheckAction<string | number | bigint, undefined>]>,
|
|
82
|
+
readonly budget: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").UnionSchema<[import("valibot").NumberSchema<undefined>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>, import("valibot").CheckAction<string | number | bigint, undefined>]>, undefined>;
|
|
83
|
+
readonly price: import("valibot").OptionalSchema<import("valibot").SchemaWithPipe<readonly [import("valibot").UnionSchema<[import("valibot").NumberSchema<undefined>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>, import("valibot").CheckAction<string | number | bigint, undefined>]>, undefined>;
|
|
81
84
|
readonly payment: import("valibot").OptionalSchema<import("valibot").ArraySchema<import("valibot").ObjectSchema<{
|
|
82
85
|
readonly digest: import("valibot").StringSchema<undefined>;
|
|
83
86
|
readonly objectId: import("valibot").StringSchema<undefined>;
|
|
84
|
-
readonly version: import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>;
|
|
85
|
-
}, undefined>, undefined>,
|
|
86
|
-
readonly owner: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>,
|
|
87
|
+
readonly version: import("valibot").UnionSchema<[import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, import("valibot").StringSchema<undefined>, import("valibot").BigintSchema<undefined>], undefined>;
|
|
88
|
+
}, undefined>, undefined>, undefined>;
|
|
89
|
+
readonly owner: import("valibot").OptionalSchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
87
90
|
}, undefined>;
|
|
88
91
|
readonly inputs: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
89
92
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
90
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
93
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
91
94
|
readonly value: import("valibot").UnknownSchema;
|
|
92
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
95
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
93
96
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
94
97
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
95
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
98
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
96
99
|
readonly value: import("valibot").UnknownSchema;
|
|
97
100
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
98
101
|
}, undefined>], undefined>, undefined>;
|
|
@@ -102,205 +105,205 @@ export declare const SerializedTransactionDataV1: import("valibot").ObjectSchema
|
|
|
102
105
|
readonly typeArguments: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
103
106
|
readonly arguments: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
104
107
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
105
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
108
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
106
109
|
readonly value: import("valibot").UnknownSchema;
|
|
107
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
110
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
108
111
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
109
112
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
110
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
113
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
111
114
|
readonly value: import("valibot").UnknownSchema;
|
|
112
115
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
113
116
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
114
117
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
115
118
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
116
119
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
117
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
120
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
118
121
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
119
122
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
120
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
121
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
123
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
124
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
122
125
|
}, undefined>], undefined>, undefined>;
|
|
123
126
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
124
127
|
readonly kind: import("valibot").LiteralSchema<"TransferObjects", undefined>;
|
|
125
128
|
readonly objects: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
126
129
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
127
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
130
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
128
131
|
readonly value: import("valibot").UnknownSchema;
|
|
129
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
132
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
130
133
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
131
134
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
132
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
135
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
133
136
|
readonly value: import("valibot").UnknownSchema;
|
|
134
137
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
135
138
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
136
139
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
137
140
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
138
141
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
139
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
142
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
140
143
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
141
144
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
142
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
143
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
145
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
146
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
144
147
|
}, undefined>], undefined>, undefined>;
|
|
145
148
|
readonly address: import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
146
149
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
147
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
150
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
148
151
|
readonly value: import("valibot").UnknownSchema;
|
|
149
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
152
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
150
153
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
151
154
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
152
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
155
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
153
156
|
readonly value: import("valibot").UnknownSchema;
|
|
154
157
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
155
158
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
156
159
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
157
160
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
158
161
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
159
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
162
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
160
163
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
161
164
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
162
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
163
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
165
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
166
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
164
167
|
}, undefined>], undefined>;
|
|
165
168
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
166
169
|
readonly kind: import("valibot").LiteralSchema<"SplitCoins", undefined>;
|
|
167
170
|
readonly coin: import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
168
171
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
169
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
172
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
170
173
|
readonly value: import("valibot").UnknownSchema;
|
|
171
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
174
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
172
175
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
173
176
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
174
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
177
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
175
178
|
readonly value: import("valibot").UnknownSchema;
|
|
176
179
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
177
180
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
178
181
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
179
182
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
180
183
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
181
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
184
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
182
185
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
183
186
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
184
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
185
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
187
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
188
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
186
189
|
}, undefined>], undefined>;
|
|
187
190
|
readonly amounts: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
188
191
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
189
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
192
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
190
193
|
readonly value: import("valibot").UnknownSchema;
|
|
191
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
194
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
192
195
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
193
196
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
194
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
197
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
195
198
|
readonly value: import("valibot").UnknownSchema;
|
|
196
199
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
197
200
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
198
201
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
199
202
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
200
203
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
201
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
204
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
202
205
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
203
206
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
204
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
205
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
207
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
208
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
206
209
|
}, undefined>], undefined>, undefined>;
|
|
207
210
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
208
211
|
readonly kind: import("valibot").LiteralSchema<"MergeCoins", undefined>;
|
|
209
212
|
readonly destination: import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
210
213
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
211
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
214
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
212
215
|
readonly value: import("valibot").UnknownSchema;
|
|
213
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
216
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
214
217
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
215
218
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
216
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
219
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
217
220
|
readonly value: import("valibot").UnknownSchema;
|
|
218
221
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
219
222
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
220
223
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
221
224
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
222
225
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
223
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
226
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
224
227
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
225
228
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
226
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
227
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
229
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
230
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
228
231
|
}, undefined>], undefined>;
|
|
229
232
|
readonly sources: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
230
233
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
231
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
234
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
232
235
|
readonly value: import("valibot").UnknownSchema;
|
|
233
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
236
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
234
237
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
235
238
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
236
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
239
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
237
240
|
readonly value: import("valibot").UnknownSchema;
|
|
238
241
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
239
242
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
240
243
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
241
244
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
242
245
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
243
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
246
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
244
247
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
245
248
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
246
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
247
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
249
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
250
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
248
251
|
}, undefined>], undefined>, undefined>;
|
|
249
252
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
250
253
|
readonly kind: import("valibot").LiteralSchema<"Publish", undefined>;
|
|
251
|
-
readonly modules: import("valibot").ArraySchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, undefined>, undefined>;
|
|
254
|
+
readonly modules: import("valibot").ArraySchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, undefined>, undefined>;
|
|
252
255
|
readonly dependencies: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
253
256
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
254
257
|
readonly kind: import("valibot").LiteralSchema<"Upgrade", undefined>;
|
|
255
|
-
readonly modules: import("valibot").ArraySchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, undefined>, undefined>;
|
|
258
|
+
readonly modules: import("valibot").ArraySchema<import("valibot").ArraySchema<import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>, undefined>, undefined>;
|
|
256
259
|
readonly dependencies: import("valibot").ArraySchema<import("valibot").StringSchema<undefined>, undefined>;
|
|
257
260
|
readonly packageId: import("valibot").StringSchema<undefined>;
|
|
258
261
|
readonly ticket: import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
259
262
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
260
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
263
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
261
264
|
readonly value: import("valibot").UnknownSchema;
|
|
262
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
265
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
263
266
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
264
267
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
265
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
268
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
266
269
|
readonly value: import("valibot").UnknownSchema;
|
|
267
270
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
268
271
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
269
272
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
270
273
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
271
274
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
272
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
275
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
273
276
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
274
277
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
275
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
276
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
278
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
279
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
277
280
|
}, undefined>], undefined>;
|
|
278
281
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
279
282
|
readonly kind: import("valibot").LiteralSchema<"MakeMoveVec", undefined>;
|
|
280
283
|
readonly type: import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
281
|
-
readonly Some: GenericSchema<TypeTagType
|
|
284
|
+
readonly Some: GenericSchema<TypeTagType>;
|
|
282
285
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
283
|
-
readonly None: import("valibot").NullableSchema<import("valibot").LiteralSchema<true, undefined>,
|
|
286
|
+
readonly None: import("valibot").NullableSchema<import("valibot").LiteralSchema<true, undefined>, undefined>;
|
|
284
287
|
}, undefined>], undefined>;
|
|
285
288
|
readonly objects: import("valibot").ArraySchema<import("valibot").UnionSchema<[import("valibot").UnionSchema<[import("valibot").ObjectSchema<{
|
|
286
289
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
287
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
290
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
288
291
|
readonly value: import("valibot").UnknownSchema;
|
|
289
|
-
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>,
|
|
292
|
+
readonly type: import("valibot").OptionalSchema<import("valibot").LiteralSchema<"object", undefined>, undefined>;
|
|
290
293
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
291
294
|
readonly kind: import("valibot").LiteralSchema<"Input", undefined>;
|
|
292
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
295
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
293
296
|
readonly value: import("valibot").UnknownSchema;
|
|
294
297
|
readonly type: import("valibot").LiteralSchema<"pure", undefined>;
|
|
295
298
|
}, undefined>], undefined>, import("valibot").ObjectSchema<{
|
|
296
299
|
readonly kind: import("valibot").LiteralSchema<"GasCoin", undefined>;
|
|
297
300
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
298
301
|
readonly kind: import("valibot").LiteralSchema<"Result", undefined>;
|
|
299
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
302
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
300
303
|
}, undefined>, import("valibot").ObjectSchema<{
|
|
301
304
|
readonly kind: import("valibot").LiteralSchema<"NestedResult", undefined>;
|
|
302
|
-
readonly index: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
303
|
-
readonly resultIndex: import("valibot").SchemaWithPipe<[import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
305
|
+
readonly index: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
306
|
+
readonly resultIndex: import("valibot").SchemaWithPipe<readonly [import("valibot").NumberSchema<undefined>, import("valibot").IntegerAction<number, undefined>]>;
|
|
304
307
|
}, undefined>], undefined>, undefined>;
|
|
305
308
|
}, undefined>], undefined>, undefined>;
|
|
306
309
|
}, undefined>;
|