@xyo-network/boundwitness-model 6.0.3 → 6.0.5
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/dist/browser/BoundWitness/BoundWitness.d.ts +40 -8
- package/dist/browser/BoundWitness/BoundWitness.d.ts.map +1 -1
- package/dist/browser/BoundWitness/HydratedBoundWitness.d.ts +15 -3
- package/dist/browser/BoundWitness/HydratedBoundWitness.d.ts.map +1 -1
- package/dist/browser/BoundWitness/SignedBoundWitness.d.ts +10 -2
- package/dist/browser/BoundWitness/SignedBoundWitness.d.ts.map +1 -1
- package/dist/browser/BoundWitness/UnsignedBoundWitness.d.ts +10 -2
- package/dist/browser/BoundWitness/UnsignedBoundWitness.d.ts.map +1 -1
- package/dist/neutral/BoundWitness/BoundWitness.d.ts +40 -8
- package/dist/neutral/BoundWitness/BoundWitness.d.ts.map +1 -1
- package/dist/neutral/BoundWitness/HydratedBoundWitness.d.ts +15 -3
- package/dist/neutral/BoundWitness/HydratedBoundWitness.d.ts.map +1 -1
- package/dist/neutral/BoundWitness/SignedBoundWitness.d.ts +10 -2
- package/dist/neutral/BoundWitness/SignedBoundWitness.d.ts.map +1 -1
- package/dist/neutral/BoundWitness/UnsignedBoundWitness.d.ts +10 -2
- package/dist/neutral/BoundWitness/UnsignedBoundWitness.d.ts.map +1 -1
- package/dist/node/BoundWitness/BoundWitness.d.ts +40 -8
- package/dist/node/BoundWitness/BoundWitness.d.ts.map +1 -1
- package/dist/node/BoundWitness/HydratedBoundWitness.d.ts +15 -3
- package/dist/node/BoundWitness/HydratedBoundWitness.d.ts.map +1 -1
- package/dist/node/BoundWitness/SignedBoundWitness.d.ts +10 -2
- package/dist/node/BoundWitness/SignedBoundWitness.d.ts.map +1 -1
- package/dist/node/BoundWitness/UnsignedBoundWitness.d.ts +10 -2
- package/dist/node/BoundWitness/UnsignedBoundWitness.d.ts.map +1 -1
- package/package.json +7 -9
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import * as z from 'zod/mini';
|
|
2
2
|
import type { SignedSignaturesMeta, UnsignedSignaturesMeta } from './Signatures.ts';
|
|
3
3
|
export declare const BoundWitnessRequiredFieldsZod: z.ZodMiniObject<{
|
|
4
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
4
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
|
+
readonly __hex: true;
|
|
6
|
+
} & {
|
|
7
|
+
readonly __address: true;
|
|
8
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
9
|
readonly __hex: true;
|
|
6
10
|
} & {
|
|
7
11
|
readonly __address: true;
|
|
@@ -25,7 +29,11 @@ export declare const BoundWitnessZod: z.ZodMiniObject<{
|
|
|
25
29
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
26
30
|
readonly __schema: true;
|
|
27
31
|
}>;
|
|
28
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
32
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
|
+
readonly __hex: true;
|
|
34
|
+
} & {
|
|
35
|
+
readonly __address: true;
|
|
36
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
29
37
|
readonly __hex: true;
|
|
30
38
|
} & {
|
|
31
39
|
readonly __address: true;
|
|
@@ -46,7 +54,11 @@ export declare const isBoundWitness: <T>(value: T) => value is T & {
|
|
|
46
54
|
schema: "network.xyo.boundwitness" & {
|
|
47
55
|
readonly __schema: true;
|
|
48
56
|
};
|
|
49
|
-
addresses: (
|
|
57
|
+
addresses: ((Lowercase<string> & {
|
|
58
|
+
readonly __hex: true;
|
|
59
|
+
} & {
|
|
60
|
+
readonly __address: true;
|
|
61
|
+
}) | (Lowercase<string> & {
|
|
50
62
|
readonly __hex: true;
|
|
51
63
|
} & {
|
|
52
64
|
readonly __address: true;
|
|
@@ -67,7 +79,11 @@ export declare const asBoundWitness: {
|
|
|
67
79
|
schema: "network.xyo.boundwitness" & {
|
|
68
80
|
readonly __schema: true;
|
|
69
81
|
};
|
|
70
|
-
addresses: (
|
|
82
|
+
addresses: ((Lowercase<string> & {
|
|
83
|
+
readonly __hex: true;
|
|
84
|
+
} & {
|
|
85
|
+
readonly __address: true;
|
|
86
|
+
}) | (Lowercase<string> & {
|
|
71
87
|
readonly __hex: true;
|
|
72
88
|
} & {
|
|
73
89
|
readonly __address: true;
|
|
@@ -87,7 +103,11 @@ export declare const asBoundWitness: {
|
|
|
87
103
|
schema: "network.xyo.boundwitness" & {
|
|
88
104
|
readonly __schema: true;
|
|
89
105
|
};
|
|
90
|
-
addresses: (
|
|
106
|
+
addresses: ((Lowercase<string> & {
|
|
107
|
+
readonly __hex: true;
|
|
108
|
+
} & {
|
|
109
|
+
readonly __address: true;
|
|
110
|
+
}) | (Lowercase<string> & {
|
|
91
111
|
readonly __hex: true;
|
|
92
112
|
} & {
|
|
93
113
|
readonly __address: true;
|
|
@@ -109,7 +129,11 @@ export declare const toBoundWitness: {
|
|
|
109
129
|
schema: "network.xyo.boundwitness" & {
|
|
110
130
|
readonly __schema: true;
|
|
111
131
|
};
|
|
112
|
-
addresses: (
|
|
132
|
+
addresses: ((Lowercase<string> & {
|
|
133
|
+
readonly __hex: true;
|
|
134
|
+
} & {
|
|
135
|
+
readonly __address: true;
|
|
136
|
+
}) | (Lowercase<string> & {
|
|
113
137
|
readonly __hex: true;
|
|
114
138
|
} & {
|
|
115
139
|
readonly __address: true;
|
|
@@ -129,7 +153,11 @@ export declare const toBoundWitness: {
|
|
|
129
153
|
schema: "network.xyo.boundwitness" & {
|
|
130
154
|
readonly __schema: true;
|
|
131
155
|
};
|
|
132
|
-
addresses: (
|
|
156
|
+
addresses: ((Lowercase<string> & {
|
|
157
|
+
readonly __hex: true;
|
|
158
|
+
} & {
|
|
159
|
+
readonly __address: true;
|
|
160
|
+
}) | (Lowercase<string> & {
|
|
133
161
|
readonly __hex: true;
|
|
134
162
|
} & {
|
|
135
163
|
readonly __address: true;
|
|
@@ -150,7 +178,11 @@ export declare const AnyBoundWitnessZod: z.ZodMiniObject<{
|
|
|
150
178
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
151
179
|
readonly __schema: true;
|
|
152
180
|
}>;
|
|
153
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
181
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
182
|
+
readonly __hex: true;
|
|
183
|
+
} & {
|
|
184
|
+
readonly __address: true;
|
|
185
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
154
186
|
readonly __hex: true;
|
|
155
187
|
} & {
|
|
156
188
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;iBAKxC,CAAA;AAEF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAA;AAEtF,eAAO,MAAM,mBAAmB;;;;;;;;iBAM/B,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAElE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;iBAM3B,CAAA;AAED,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAE1D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAA;AAC3D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAC7E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAE7E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;iBAAuC,CAAA;AACtE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,MAAM,MAAM,QAAQ,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,sBAAsB,CAAA;AAE9F,MAAM,MAAM,MAAM,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,oBAAoB,CAAA;AAE1F,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,YAAY,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA"}
|
|
@@ -7,7 +7,11 @@ export declare const HydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.ZodMini
|
|
|
7
7
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
8
8
|
readonly __schema: true;
|
|
9
9
|
}>;
|
|
10
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
10
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
|
+
readonly __hex: true;
|
|
12
|
+
} & {
|
|
13
|
+
readonly __address: true;
|
|
14
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
15
|
readonly __hex: true;
|
|
12
16
|
} & {
|
|
13
17
|
readonly __address: true;
|
|
@@ -29,7 +33,11 @@ export declare const SignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.Z
|
|
|
29
33
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
30
34
|
readonly __schema: true;
|
|
31
35
|
}>;
|
|
32
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
36
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
37
|
+
readonly __hex: true;
|
|
38
|
+
} & {
|
|
39
|
+
readonly __address: true;
|
|
40
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
41
|
readonly __hex: true;
|
|
34
42
|
} & {
|
|
35
43
|
readonly __address: true;
|
|
@@ -51,7 +59,11 @@ export declare const UnsignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z
|
|
|
51
59
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
52
60
|
readonly __schema: true;
|
|
53
61
|
}>;
|
|
54
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
62
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
63
|
+
readonly __hex: true;
|
|
64
|
+
} & {
|
|
65
|
+
readonly __address: true;
|
|
66
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
55
67
|
readonly __hex: true;
|
|
56
68
|
} & {
|
|
57
69
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;0BAAkD,CAAA;AAGtF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;0BAAwD,CAAA;AAGlG,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0D,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const SignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnySignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;iBAA2D,CAAA;AAC7F,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;iBAA6C,CAAA;AAClF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const UnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnyUnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;iBAA6D,CAAA;AACjG,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE1E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;iBAA+C,CAAA;AACtF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import * as z from 'zod/mini';
|
|
2
2
|
import type { SignedSignaturesMeta, UnsignedSignaturesMeta } from './Signatures.ts';
|
|
3
3
|
export declare const BoundWitnessRequiredFieldsZod: z.ZodMiniObject<{
|
|
4
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
4
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
|
+
readonly __hex: true;
|
|
6
|
+
} & {
|
|
7
|
+
readonly __address: true;
|
|
8
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
9
|
readonly __hex: true;
|
|
6
10
|
} & {
|
|
7
11
|
readonly __address: true;
|
|
@@ -25,7 +29,11 @@ export declare const BoundWitnessZod: z.ZodMiniObject<{
|
|
|
25
29
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
26
30
|
readonly __schema: true;
|
|
27
31
|
}>;
|
|
28
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
32
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
|
+
readonly __hex: true;
|
|
34
|
+
} & {
|
|
35
|
+
readonly __address: true;
|
|
36
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
29
37
|
readonly __hex: true;
|
|
30
38
|
} & {
|
|
31
39
|
readonly __address: true;
|
|
@@ -46,7 +54,11 @@ export declare const isBoundWitness: <T>(value: T) => value is T & {
|
|
|
46
54
|
schema: "network.xyo.boundwitness" & {
|
|
47
55
|
readonly __schema: true;
|
|
48
56
|
};
|
|
49
|
-
addresses: (
|
|
57
|
+
addresses: ((Lowercase<string> & {
|
|
58
|
+
readonly __hex: true;
|
|
59
|
+
} & {
|
|
60
|
+
readonly __address: true;
|
|
61
|
+
}) | (Lowercase<string> & {
|
|
50
62
|
readonly __hex: true;
|
|
51
63
|
} & {
|
|
52
64
|
readonly __address: true;
|
|
@@ -67,7 +79,11 @@ export declare const asBoundWitness: {
|
|
|
67
79
|
schema: "network.xyo.boundwitness" & {
|
|
68
80
|
readonly __schema: true;
|
|
69
81
|
};
|
|
70
|
-
addresses: (
|
|
82
|
+
addresses: ((Lowercase<string> & {
|
|
83
|
+
readonly __hex: true;
|
|
84
|
+
} & {
|
|
85
|
+
readonly __address: true;
|
|
86
|
+
}) | (Lowercase<string> & {
|
|
71
87
|
readonly __hex: true;
|
|
72
88
|
} & {
|
|
73
89
|
readonly __address: true;
|
|
@@ -87,7 +103,11 @@ export declare const asBoundWitness: {
|
|
|
87
103
|
schema: "network.xyo.boundwitness" & {
|
|
88
104
|
readonly __schema: true;
|
|
89
105
|
};
|
|
90
|
-
addresses: (
|
|
106
|
+
addresses: ((Lowercase<string> & {
|
|
107
|
+
readonly __hex: true;
|
|
108
|
+
} & {
|
|
109
|
+
readonly __address: true;
|
|
110
|
+
}) | (Lowercase<string> & {
|
|
91
111
|
readonly __hex: true;
|
|
92
112
|
} & {
|
|
93
113
|
readonly __address: true;
|
|
@@ -109,7 +129,11 @@ export declare const toBoundWitness: {
|
|
|
109
129
|
schema: "network.xyo.boundwitness" & {
|
|
110
130
|
readonly __schema: true;
|
|
111
131
|
};
|
|
112
|
-
addresses: (
|
|
132
|
+
addresses: ((Lowercase<string> & {
|
|
133
|
+
readonly __hex: true;
|
|
134
|
+
} & {
|
|
135
|
+
readonly __address: true;
|
|
136
|
+
}) | (Lowercase<string> & {
|
|
113
137
|
readonly __hex: true;
|
|
114
138
|
} & {
|
|
115
139
|
readonly __address: true;
|
|
@@ -129,7 +153,11 @@ export declare const toBoundWitness: {
|
|
|
129
153
|
schema: "network.xyo.boundwitness" & {
|
|
130
154
|
readonly __schema: true;
|
|
131
155
|
};
|
|
132
|
-
addresses: (
|
|
156
|
+
addresses: ((Lowercase<string> & {
|
|
157
|
+
readonly __hex: true;
|
|
158
|
+
} & {
|
|
159
|
+
readonly __address: true;
|
|
160
|
+
}) | (Lowercase<string> & {
|
|
133
161
|
readonly __hex: true;
|
|
134
162
|
} & {
|
|
135
163
|
readonly __address: true;
|
|
@@ -150,7 +178,11 @@ export declare const AnyBoundWitnessZod: z.ZodMiniObject<{
|
|
|
150
178
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
151
179
|
readonly __schema: true;
|
|
152
180
|
}>;
|
|
153
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
181
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
182
|
+
readonly __hex: true;
|
|
183
|
+
} & {
|
|
184
|
+
readonly __address: true;
|
|
185
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
154
186
|
readonly __hex: true;
|
|
155
187
|
} & {
|
|
156
188
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;iBAKxC,CAAA;AAEF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAA;AAEtF,eAAO,MAAM,mBAAmB;;;;;;;;iBAM/B,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAElE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;iBAM3B,CAAA;AAED,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAE1D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAA;AAC3D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAC7E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAE7E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;iBAAuC,CAAA;AACtE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,MAAM,MAAM,QAAQ,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,sBAAsB,CAAA;AAE9F,MAAM,MAAM,MAAM,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,oBAAoB,CAAA;AAE1F,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,YAAY,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA"}
|
|
@@ -7,7 +7,11 @@ export declare const HydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.ZodMini
|
|
|
7
7
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
8
8
|
readonly __schema: true;
|
|
9
9
|
}>;
|
|
10
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
10
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
|
+
readonly __hex: true;
|
|
12
|
+
} & {
|
|
13
|
+
readonly __address: true;
|
|
14
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
15
|
readonly __hex: true;
|
|
12
16
|
} & {
|
|
13
17
|
readonly __address: true;
|
|
@@ -29,7 +33,11 @@ export declare const SignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.Z
|
|
|
29
33
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
30
34
|
readonly __schema: true;
|
|
31
35
|
}>;
|
|
32
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
36
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
37
|
+
readonly __hex: true;
|
|
38
|
+
} & {
|
|
39
|
+
readonly __address: true;
|
|
40
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
41
|
readonly __hex: true;
|
|
34
42
|
} & {
|
|
35
43
|
readonly __address: true;
|
|
@@ -51,7 +59,11 @@ export declare const UnsignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z
|
|
|
51
59
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
52
60
|
readonly __schema: true;
|
|
53
61
|
}>;
|
|
54
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
62
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
63
|
+
readonly __hex: true;
|
|
64
|
+
} & {
|
|
65
|
+
readonly __address: true;
|
|
66
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
55
67
|
readonly __hex: true;
|
|
56
68
|
} & {
|
|
57
69
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;0BAAkD,CAAA;AAGtF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;0BAAwD,CAAA;AAGlG,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0D,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const SignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnySignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;iBAA2D,CAAA;AAC7F,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;iBAA6C,CAAA;AAClF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const UnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnyUnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;iBAA6D,CAAA;AACjG,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE1E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;iBAA+C,CAAA;AACtF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import * as z from 'zod/mini';
|
|
2
2
|
import type { SignedSignaturesMeta, UnsignedSignaturesMeta } from './Signatures.ts';
|
|
3
3
|
export declare const BoundWitnessRequiredFieldsZod: z.ZodMiniObject<{
|
|
4
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
4
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
|
+
readonly __hex: true;
|
|
6
|
+
} & {
|
|
7
|
+
readonly __address: true;
|
|
8
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
5
9
|
readonly __hex: true;
|
|
6
10
|
} & {
|
|
7
11
|
readonly __address: true;
|
|
@@ -25,7 +29,11 @@ export declare const BoundWitnessZod: z.ZodMiniObject<{
|
|
|
25
29
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
26
30
|
readonly __schema: true;
|
|
27
31
|
}>;
|
|
28
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
32
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
|
+
readonly __hex: true;
|
|
34
|
+
} & {
|
|
35
|
+
readonly __address: true;
|
|
36
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
29
37
|
readonly __hex: true;
|
|
30
38
|
} & {
|
|
31
39
|
readonly __address: true;
|
|
@@ -46,7 +54,11 @@ export declare const isBoundWitness: <T>(value: T) => value is T & {
|
|
|
46
54
|
schema: "network.xyo.boundwitness" & {
|
|
47
55
|
readonly __schema: true;
|
|
48
56
|
};
|
|
49
|
-
addresses: (
|
|
57
|
+
addresses: ((Lowercase<string> & {
|
|
58
|
+
readonly __hex: true;
|
|
59
|
+
} & {
|
|
60
|
+
readonly __address: true;
|
|
61
|
+
}) | (Lowercase<string> & {
|
|
50
62
|
readonly __hex: true;
|
|
51
63
|
} & {
|
|
52
64
|
readonly __address: true;
|
|
@@ -67,7 +79,11 @@ export declare const asBoundWitness: {
|
|
|
67
79
|
schema: "network.xyo.boundwitness" & {
|
|
68
80
|
readonly __schema: true;
|
|
69
81
|
};
|
|
70
|
-
addresses: (
|
|
82
|
+
addresses: ((Lowercase<string> & {
|
|
83
|
+
readonly __hex: true;
|
|
84
|
+
} & {
|
|
85
|
+
readonly __address: true;
|
|
86
|
+
}) | (Lowercase<string> & {
|
|
71
87
|
readonly __hex: true;
|
|
72
88
|
} & {
|
|
73
89
|
readonly __address: true;
|
|
@@ -87,7 +103,11 @@ export declare const asBoundWitness: {
|
|
|
87
103
|
schema: "network.xyo.boundwitness" & {
|
|
88
104
|
readonly __schema: true;
|
|
89
105
|
};
|
|
90
|
-
addresses: (
|
|
106
|
+
addresses: ((Lowercase<string> & {
|
|
107
|
+
readonly __hex: true;
|
|
108
|
+
} & {
|
|
109
|
+
readonly __address: true;
|
|
110
|
+
}) | (Lowercase<string> & {
|
|
91
111
|
readonly __hex: true;
|
|
92
112
|
} & {
|
|
93
113
|
readonly __address: true;
|
|
@@ -109,7 +129,11 @@ export declare const toBoundWitness: {
|
|
|
109
129
|
schema: "network.xyo.boundwitness" & {
|
|
110
130
|
readonly __schema: true;
|
|
111
131
|
};
|
|
112
|
-
addresses: (
|
|
132
|
+
addresses: ((Lowercase<string> & {
|
|
133
|
+
readonly __hex: true;
|
|
134
|
+
} & {
|
|
135
|
+
readonly __address: true;
|
|
136
|
+
}) | (Lowercase<string> & {
|
|
113
137
|
readonly __hex: true;
|
|
114
138
|
} & {
|
|
115
139
|
readonly __address: true;
|
|
@@ -129,7 +153,11 @@ export declare const toBoundWitness: {
|
|
|
129
153
|
schema: "network.xyo.boundwitness" & {
|
|
130
154
|
readonly __schema: true;
|
|
131
155
|
};
|
|
132
|
-
addresses: (
|
|
156
|
+
addresses: ((Lowercase<string> & {
|
|
157
|
+
readonly __hex: true;
|
|
158
|
+
} & {
|
|
159
|
+
readonly __address: true;
|
|
160
|
+
}) | (Lowercase<string> & {
|
|
133
161
|
readonly __hex: true;
|
|
134
162
|
} & {
|
|
135
163
|
readonly __address: true;
|
|
@@ -150,7 +178,11 @@ export declare const AnyBoundWitnessZod: z.ZodMiniObject<{
|
|
|
150
178
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
151
179
|
readonly __schema: true;
|
|
152
180
|
}>;
|
|
153
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
181
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
182
|
+
readonly __hex: true;
|
|
183
|
+
} & {
|
|
184
|
+
readonly __address: true;
|
|
185
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
154
186
|
readonly __hex: true;
|
|
155
187
|
} & {
|
|
156
188
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"BoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/BoundWitness.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAG7B,OAAO,KAAK,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAA;AAGnF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;iBAKxC,CAAA;AAEF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAA;AAEtF,eAAO,MAAM,mBAAmB;;;;;;;;iBAM/B,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAA;AAElE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;iBAM3B,CAAA;AAED,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAA;AAE1D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAA;AAC3D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAC7E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkD,CAAA;AAE7E,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;iBAAuC,CAAA;AACtE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAEhE,MAAM,MAAM,QAAQ,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,sBAAsB,CAAA;AAE9F,MAAM,MAAM,MAAM,CAAC,CAAC,SAAS,YAAY,IAAI,IAAI,CAAC,CAAC,EAAE,aAAa,CAAC,GAAG,oBAAoB,CAAA;AAE1F,MAAM,MAAM,cAAc,CAAC,CAAC,SAAS,YAAY,IAAI,QAAQ,CAAC,CAAC,CAAC,GAAG,MAAM,CAAC,CAAC,CAAC,CAAA"}
|
|
@@ -7,7 +7,11 @@ export declare const HydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.ZodMini
|
|
|
7
7
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
8
8
|
readonly __schema: true;
|
|
9
9
|
}>;
|
|
10
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
10
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
|
+
readonly __hex: true;
|
|
12
|
+
} & {
|
|
13
|
+
readonly __address: true;
|
|
14
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
11
15
|
readonly __hex: true;
|
|
12
16
|
} & {
|
|
13
17
|
readonly __address: true;
|
|
@@ -29,7 +33,11 @@ export declare const SignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z.Z
|
|
|
29
33
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
30
34
|
readonly __schema: true;
|
|
31
35
|
}>;
|
|
32
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
36
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
37
|
+
readonly __hex: true;
|
|
38
|
+
} & {
|
|
39
|
+
readonly __address: true;
|
|
40
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
33
41
|
readonly __hex: true;
|
|
34
42
|
} & {
|
|
35
43
|
readonly __address: true;
|
|
@@ -51,7 +59,11 @@ export declare const UnsignedHydratedBoundWitnessZod: z.ZodMiniTuple<readonly [z
|
|
|
51
59
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
52
60
|
readonly __schema: true;
|
|
53
61
|
}>;
|
|
54
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
62
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
63
|
+
readonly __hex: true;
|
|
64
|
+
} & {
|
|
65
|
+
readonly __address: true;
|
|
66
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
55
67
|
readonly __hex: true;
|
|
56
68
|
} & {
|
|
57
69
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"HydratedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/HydratedBoundWitness.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,OAAO,EAAE,KAAK,YAAY,EAAmB,MAAM,mBAAmB,CAAA;AAItE,wBAAgB,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,CAAC;;2BAE/F;AAED,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;0BAAkD,CAAA;AAGtF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;0BAAwD,CAAA;AAGlG,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;0BAA0D,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const SignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnySignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"SignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/SignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;iBAA2D,CAAA;AAC7F,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAEtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;iBAA6C,CAAA;AAClF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA"}
|
|
@@ -3,7 +3,11 @@ export declare const UnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
3
3
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
4
4
|
readonly __schema: true;
|
|
5
5
|
}>;
|
|
6
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
6
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
|
+
readonly __hex: true;
|
|
8
|
+
} & {
|
|
9
|
+
readonly __address: true;
|
|
10
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
7
11
|
readonly __hex: true;
|
|
8
12
|
} & {
|
|
9
13
|
readonly __address: true;
|
|
@@ -24,7 +28,11 @@ export declare const AnyUnsignedBoundWitnessZod: z.ZodMiniObject<{
|
|
|
24
28
|
schema: z.ZodMiniLiteral<"network.xyo.boundwitness" & {
|
|
25
29
|
readonly __schema: true;
|
|
26
30
|
}>;
|
|
27
|
-
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<
|
|
31
|
+
addresses: z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
32
|
+
readonly __hex: true;
|
|
33
|
+
} & {
|
|
34
|
+
readonly __address: true;
|
|
35
|
+
}, string>>, z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<Lowercase<string> & {
|
|
28
36
|
readonly __hex: true;
|
|
29
37
|
} & {
|
|
30
38
|
readonly __address: true;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"UnsignedBoundWitness.d.ts","sourceRoot":"","sources":["../../../src/BoundWitness/UnsignedBoundWitness.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAK7B,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;iBAA6D,CAAA;AACjG,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA;AAE1E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;iBAA+C,CAAA;AACtF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/boundwitness-model",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.5",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -34,21 +34,20 @@
|
|
|
34
34
|
"README.md"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@xyo-network/account-model": "~6.0.
|
|
38
|
-
"@xyo-network/payload-model": "~6.0.
|
|
37
|
+
"@xyo-network/account-model": "~6.0.5",
|
|
38
|
+
"@xyo-network/payload-model": "~6.0.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@opentelemetry/api": "^1.9.1",
|
|
42
42
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
43
|
-
"@scure/base": "~2.2",
|
|
43
|
+
"@scure/base": "~2.2.0",
|
|
44
44
|
"@types/node": "^25.9.1",
|
|
45
|
-
"@xylabs/sdk-js": "~6.0.
|
|
46
|
-
"@xylabs/toolchain": "~8.1.
|
|
47
|
-
"@xylabs/tsconfig": "~8.1.
|
|
45
|
+
"@xylabs/sdk-js": "~6.0.3",
|
|
46
|
+
"@xylabs/toolchain": "~8.1.5",
|
|
47
|
+
"@xylabs/tsconfig": "~8.1.5",
|
|
48
48
|
"async-mutex": "^0.5.0",
|
|
49
49
|
"bn.js": "^5.2.3",
|
|
50
50
|
"buffer": "^6.0.3",
|
|
51
|
-
"chalk": "^5.6.2",
|
|
52
51
|
"eslint": "^10.4.0",
|
|
53
52
|
"ethers": "^6.16.0",
|
|
54
53
|
"pako": "~2.1.0",
|
|
@@ -65,7 +64,6 @@
|
|
|
65
64
|
"async-mutex": "^0.5",
|
|
66
65
|
"bn.js": "^5.2",
|
|
67
66
|
"buffer": "^6.0",
|
|
68
|
-
"chalk": "^5.6",
|
|
69
67
|
"ethers": "^6.16",
|
|
70
68
|
"pako": "~2.1",
|
|
71
69
|
"zod": "^4.4"
|