@unconfirmed/sui-effect 0.1.1 → 0.1.2

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.
Files changed (58) hide show
  1. package/AGENTS.md +34 -11
  2. package/CHANGELOG.md +46 -0
  3. package/LLMS.md +953 -301
  4. package/README.md +171 -9
  5. package/dist/domain/bcs.d.ts.map +1 -1
  6. package/dist/domain/bcs.js +7 -0
  7. package/dist/domain/bcs.js.map +1 -1
  8. package/dist/domain/errors.d.ts +101 -5
  9. package/dist/domain/errors.d.ts.map +1 -1
  10. package/dist/domain/errors.js +158 -8
  11. package/dist/domain/errors.js.map +1 -1
  12. package/dist/domain/executed.d.ts +69 -0
  13. package/dist/domain/executed.d.ts.map +1 -1
  14. package/dist/domain/executed.js +196 -5
  15. package/dist/domain/executed.js.map +1 -1
  16. package/dist/domain/schemas.d.ts +27 -1
  17. package/dist/domain/schemas.d.ts.map +1 -1
  18. package/dist/domain/schemas.js +20 -2
  19. package/dist/domain/schemas.js.map +1 -1
  20. package/dist/index.d.ts +1 -1
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +1 -1
  23. package/dist/index.js.map +1 -1
  24. package/dist/script.d.ts +1 -1
  25. package/dist/script.d.ts.map +1 -1
  26. package/dist/script.js +1 -1
  27. package/dist/script.js.map +1 -1
  28. package/dist/services/Script.d.ts +42 -0
  29. package/dist/services/Script.d.ts.map +1 -1
  30. package/dist/services/Script.js +69 -2
  31. package/dist/services/Script.js.map +1 -1
  32. package/dist/services/Signer.d.ts +32 -7
  33. package/dist/services/Signer.d.ts.map +1 -1
  34. package/dist/services/Signer.js +69 -10
  35. package/dist/services/Signer.js.map +1 -1
  36. package/dist/services/Sui.d.ts +42 -1
  37. package/dist/services/Sui.d.ts.map +1 -1
  38. package/dist/services/Sui.js +18 -4
  39. package/dist/services/Sui.js.map +1 -1
  40. package/dist/services/SuiCoreFake.d.ts +47 -4
  41. package/dist/services/SuiCoreFake.d.ts.map +1 -1
  42. package/dist/services/SuiCoreFake.js +193 -22
  43. package/dist/services/SuiCoreFake.js.map +1 -1
  44. package/dist/services/Tx.d.ts +627 -11
  45. package/dist/services/Tx.d.ts.map +1 -1
  46. package/dist/services/Tx.js +187 -8
  47. package/dist/services/Tx.js.map +1 -1
  48. package/dist/testing.d.ts +1 -0
  49. package/dist/testing.d.ts.map +1 -1
  50. package/dist/testing.js +9 -0
  51. package/dist/testing.js.map +1 -1
  52. package/dist/tx.d.ts +1 -1
  53. package/dist/tx.d.ts.map +1 -1
  54. package/dist/tx.js +1 -1
  55. package/dist/tx.js.map +1 -1
  56. package/docs/extensions.md +533 -8
  57. package/examples/extension-template/src/Escrow.ts +1 -1
  58. package/package.json +1 -1
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * @since 0.1.0
7
7
  */
8
- import { Result, Schema } from "effect";
8
+ import { Effect, Result, Schema } from "effect";
9
9
  import { Digest, ExecutionReason, NotAppliedEvidence, ObjectId, SignedTransaction, TransactionEffects, Version } from "./schemas.js";
10
10
  export { CleverError, ExecutionReason, MoveLocation } from "./schemas.js";
11
11
  /**
@@ -62,6 +62,10 @@ export class TransportError extends Schema.TaggedError()("TransportError", {
62
62
  cause
63
63
  });
64
64
  };
65
+ /** The one actionable line `SuiError.describe` produces for this error. */
66
+ get message() {
67
+ return describe(this);
68
+ }
65
69
  }
66
70
  /**
67
71
  * gRPC status names a read may be retried on, plus HTTP 5xx and 429. Timeouts
@@ -112,31 +116,99 @@ export class ObjectNotFound extends Schema.TaggedError()("ObjectNotFound", {
112
116
  objectId: ObjectId,
113
117
  version: Schema.optional(Version)
114
118
  }) {
119
+ /**
120
+ * The one actionable line `SuiError.describe` produces for this error.
121
+ *
122
+ * `Schema.TaggedError` gives every class the `Error` constructor and no
123
+ * message of its own, so `error.message` was the empty string — and a
124
+ * consumer that surfaces `.message` (a log line, a UI, another library's
125
+ * error formatter) showed nothing at all. A getter rather than a schema
126
+ * field, so it is always in step with `describe`, costs nothing to
127
+ * construct, and stays out of `SuiError.toJson`'s encoding.
128
+ */
129
+ get message() {
130
+ return describe(this);
131
+ }
115
132
  }
116
133
  /** The object existed and has been deleted or wrapped. */
117
134
  export class ObjectDeleted extends Schema.TaggedError()("ObjectDeleted", {
118
135
  objectId: ObjectId,
119
136
  version: Schema.optional(Version)
120
137
  }) {
138
+ /** The one actionable line `SuiError.describe` produces for this error. */
139
+ get message() {
140
+ return describe(this);
141
+ }
121
142
  }
122
143
  /** The node could not say what happened to the object (`ObjectError.reason: "unknown"`). */
123
144
  export class ObjectUnavailable extends Schema.TaggedError()("ObjectUnavailable", { objectId: ObjectId, version: Schema.optional(Version) }) {
145
+ /** The one actionable line `SuiError.describe` produces for this error. */
146
+ get message() {
147
+ return describe(this);
148
+ }
124
149
  }
125
150
  /** No transaction with this digest is known to the node. */
126
151
  export class TransactionNotFound extends Schema.TaggedError()("TransactionNotFound", { digest: Digest }) {
152
+ /** The one actionable line `SuiError.describe` produces for this error. */
153
+ get message() {
154
+ return describe(this);
155
+ }
127
156
  }
128
157
  /** The chain identifier the node reported is not the one the layer was built for. */
129
158
  export class NetworkMismatch extends Schema.TaggedError()("NetworkMismatch", {
130
159
  expected: Schema.String,
131
160
  actual: Schema.String
132
161
  }) {
162
+ /** The one actionable line `SuiError.describe` produces for this error. */
163
+ get message() {
164
+ return describe(this);
165
+ }
133
166
  }
134
- /** BCS content or a schema boundary did not decode. */
167
+ /**
168
+ * Which of the three things that can go wrong at a decode boundary went wrong.
169
+ *
170
+ * - `"type"`: the object, the field or the event **is not of the expected Move
171
+ * type**. The bytes were never parsed. This is the one a caller answers with
172
+ * "that is not one of mine" — a 404 for a foreign object, a `filter` over a
173
+ * heterogeneous list — and the one it is safe to swallow.
174
+ * - `"bytes"`: the type matched and the **BCS parse failed**, or left trailing
175
+ * bytes. Either the layout this package was built with is not the layout the
176
+ * package on chain writes, or the object is corrupt. Never safe to swallow.
177
+ * - `"shape"`: a **domain schema** refused a value that was already parsed or
178
+ * that came from the node as JSON — a missing field in a node response, a
179
+ * number that is not a timestamp, a simulation with no such command. A bug
180
+ * here is in this library, the node, or the caller's expectations.
181
+ *
182
+ * Branch on this, never on {@link DecodeError}'s `issue`: `issue` is a human
183
+ * sentence and its wording changes between releases.
184
+ *
185
+ * @since 0.1.2
186
+ */
187
+ export const DecodeKind = Schema.Literals(["type", "bytes", "shape"]);
188
+ /**
189
+ * BCS content or a schema boundary did not decode.
190
+ *
191
+ * `kind` says which of the three (`"type"`, `"bytes"`, `"shape"`) and is what a
192
+ * consumer branches on; `issue` is the sentence for a human and is not stable.
193
+ * It defaults to `"shape"` when neither a constructor nor an encoded value
194
+ * carries one, so an extension that builds a `DecodeError` with no `kind` still
195
+ * compiles and still answers the question conservatively.
196
+ */
135
197
  export class DecodeError extends Schema.TaggedError()("DecodeError", {
136
198
  objectId: Schema.optional(ObjectId),
137
199
  expectedType: Schema.optional(Schema.String),
200
+ /**
201
+ * Which boundary failed. See {@link DecodeKind}.
202
+ *
203
+ * @since 0.1.2
204
+ */
205
+ kind: DecodeKind.pipe(Schema.withDecodingDefaultKey(Effect.succeed("shape")), Schema.withConstructorDefault(Effect.succeed("shape"))),
138
206
  issue: Schema.String
139
207
  }) {
208
+ /** The one actionable line `SuiError.describe` produces for this error. */
209
+ get message() {
210
+ return describe(this);
211
+ }
140
212
  }
141
213
  /** Simulation reported an execution failure. No gas was charged. */
142
214
  export class SimulationFailed extends Schema.TaggedError()("SimulationFailed", {
@@ -151,12 +223,20 @@ export class ExecutionFailed extends Schema.TaggedError()("ExecutionFailed", {
151
223
  command: Schema.optional(Schema.Number),
152
224
  effects: TransactionEffects
153
225
  }) {
226
+ /** The one actionable line `SuiError.describe` produces for this error. */
227
+ get message() {
228
+ return describe(this);
229
+ }
154
230
  }
155
231
  /**
156
232
  * Bytes may have reached the network and the outcome is unknown. Carries the
157
233
  * signed transaction so an operator or a later process can reconcile it.
158
234
  */
159
235
  export class SubmissionUnknown extends Schema.TaggedError()("SubmissionUnknown", { digest: Digest, signed: Schema.optional(SignedTransaction), cause: Schema.Defect() }) {
236
+ /** The one actionable line `SuiError.describe` produces for this error. */
237
+ get message() {
238
+ return describe(this);
239
+ }
160
240
  }
161
241
  /**
162
242
  * The transaction provably cannot have been applied, and never will be.
@@ -171,11 +251,19 @@ export class NotApplied extends Schema.TaggedError()("NotApplied", {
171
251
  digest: Digest,
172
252
  evidence: NotAppliedEvidence
173
253
  }) {
254
+ /** The one actionable line `SuiError.describe` produces for this error. */
255
+ get message() {
256
+ return describe(this);
257
+ }
174
258
  }
175
259
  /** A signer refused or failed to produce a signature. */
176
260
  export class SigningError extends Schema.TaggedError()("SigningError", {
177
261
  cause: Schema.Defect()
178
262
  }) {
263
+ /** The one actionable line `SuiError.describe` produces for this error. */
264
+ get message() {
265
+ return describe(this);
266
+ }
179
267
  }
180
268
  /** The transaction could not be built into bytes. */
181
269
  export class BuildError extends Schema.TaggedError()("BuildError", {
@@ -193,6 +281,10 @@ export class PolicyDenied extends Schema.TaggedError()("PolicyDenied", {
193
281
  export class JournalError extends Schema.TaggedError()("JournalError", {
194
282
  cause: Schema.Defect()
195
283
  }) {
284
+ /** The one actionable line `SuiError.describe` produces for this error. */
285
+ get message() {
286
+ return describe(this);
287
+ }
196
288
  }
197
289
  /**
198
290
  * The effects of an applied transaction did not contain what the caller
@@ -205,6 +297,10 @@ export class JournalError extends Schema.TaggedError()("JournalError", {
205
297
  * time for a transaction that already ran.
206
298
  */
207
299
  export class UnexpectedEffects extends Schema.TaggedError()("UnexpectedEffects", { digest: Digest, expected: Schema.String, found: Schema.Array(ObjectId) }) {
300
+ /** The one actionable line `SuiError.describe` produces for this error. */
301
+ get message() {
302
+ return describe(this);
303
+ }
208
304
  }
209
305
  /**
210
306
  * The GraphQL endpoint an extension needs is not usable: none was configured,
@@ -220,6 +316,10 @@ export class UnexpectedEffects extends Schema.TaggedError()("UnexpectedEffects",
220
316
  * Outcome `not_applied`: a read that did not happen changed nothing.
221
317
  */
222
318
  export class GraphQLUnavailable extends Schema.TaggedError()("GraphQLUnavailable", { method: Schema.String, reason: Schema.String }) {
319
+ /** The one actionable line `SuiError.describe` produces for this error. */
320
+ get message() {
321
+ return describe(this);
322
+ }
223
323
  }
224
324
  /**
225
325
  * A synchronous member of a Promise-faced extension was called before its
@@ -236,6 +336,10 @@ export class GraphQLUnavailable extends Schema.TaggedError()("GraphQLUnavailable
236
336
  * Outcome `not_applied`: nothing was sent.
237
337
  */
238
338
  export class ExtensionNotReady extends Schema.TaggedError()("ExtensionNotReady", { extension: Schema.String, member: Schema.String }) {
339
+ /** The one actionable line `SuiError.describe` produces for this error. */
340
+ get message() {
341
+ return describe(this);
342
+ }
239
343
  }
240
344
  /** The schema of the whole taxonomy, used for serialization. */
241
345
  export const SuiErrorSchema = Schema.Union([
@@ -293,13 +397,25 @@ const TAXONOMY_TAGS = new Set([
293
397
  * applied, and answering `"not_applied"` for it would tell a retry idiom to
294
398
  * send again on no evidence at all. `Script.exitCode` agrees by exiting 1 for
295
399
  * an unclassified error rather than 3.
400
+ *
401
+ * **`{ phase: "pre-submit" }` changes that last answer, and only that one.**
402
+ * A failure caught while building, simulating or signing cannot have applied,
403
+ * whoever's error it is, so an unrecognised tag there is `"not_applied"`
404
+ * rather than `"unknown"`. Use it where the code knows nothing has been sent —
405
+ * a `catchAll` around `Tx.build`/`Tx.sign`, an extension's validation — and
406
+ * leave the default everywhere a submission may already be on the wire.
407
+ * {@link isTaxonomy} answers the same question a level lower: is this even one
408
+ * of ours?
296
409
  */
297
- const outcome = (error) => {
410
+ const outcome = (error, options) => {
298
411
  if (hasOutcome(error))
299
412
  return error.outcome;
300
413
  const tag = error._tag;
301
- if (typeof tag !== "string" || !TAXONOMY_TAGS.has(tag))
302
- return "unknown";
414
+ if (typeof tag !== "string" || !TAXONOMY_TAGS.has(tag)) {
415
+ // Before anything was sent, an unclassifiable failure still means nothing
416
+ // reached the chain; after, it means exactly nothing.
417
+ return options?.phase === "pre-submit" ? "not_applied" : "unknown";
418
+ }
303
419
  switch (tag) {
304
420
  case "ExecutionFailed":
305
421
  // An `UnexpectedEffects` is built from an `Executed`: the transaction
@@ -360,7 +476,26 @@ const causeLine = (cause) => {
360
476
  return cause.name;
361
477
  return undefined;
362
478
  };
479
+ /**
480
+ * One actionable line for a failure.
481
+ *
482
+ * **It accepts a foreign error too**, the way {@link outcome} and {@link toJson}
483
+ * do: an extension's own `Schema.TaggedError`, or any object carrying a `_tag`.
484
+ * A tag the taxonomy owns gets the taxonomy's wording; anything else gets its
485
+ * own `message` after the tag, or the bare tag when there is nothing readable —
486
+ * never `undefined`, which is what a `switch` with no default used to return
487
+ * for a foreign tag while the signature promised a `string`. A wrapper script
488
+ * that prints one line per failure should not have to know whose error it is
489
+ * holding.
490
+ */
363
491
  const describe = (error) => {
492
+ if (!TAXONOMY_TAGS.has(error._tag)) {
493
+ const line = causeLine(error);
494
+ return line === undefined || line === error._tag ? error._tag : `${error._tag}: ${line}`;
495
+ }
496
+ return describeTaxonomy(error);
497
+ };
498
+ const describeTaxonomy = (error) => {
364
499
  switch (error._tag) {
365
500
  case "TransportError": {
366
501
  const cause = causeLine(error.cause);
@@ -375,7 +510,7 @@ const describe = (error) => {
375
510
  case "NetworkMismatch":
376
511
  return `NetworkMismatch expected ${error.expected} but the node reported ${error.actual}`;
377
512
  case "DecodeError":
378
- return `DecodeError ${error.expectedType ?? ""} ${error.objectId ?? ""} ${error.issue}`
513
+ return `DecodeError ${error.kind} ${error.expectedType ?? ""} ${error.objectId ?? ""} ${error.issue}`
379
514
  .replace(/\s+/g, " ")
380
515
  .trim();
381
516
  case "SimulationFailed":
@@ -479,11 +614,26 @@ const toJson = (error) => {
479
614
  return withOutcome(error, { _tag: error._tag, message });
480
615
  };
481
616
  /**
482
- * The four helpers every repo hand-rolls: is this worth retrying, did the
483
- * transaction land, what does an operator need to read, and what goes in a log.
617
+ * Whether this error is one of the tags the closed taxonomy owns.
618
+ *
619
+ * The question a wrapper asks before trusting {@link outcome}'s default answer,
620
+ * and the one a consumer asks before narrowing to `SuiError`. An extension's
621
+ * own error, a `ConfigError`, a `TypeError` — all `false`. Never fails.
622
+ *
623
+ * @since 0.1.2
624
+ */
625
+ const isTaxonomy = (error) => {
626
+ const tag = error?._tag;
627
+ return typeof tag === "string" && TAXONOMY_TAGS.has(tag);
628
+ };
629
+ /**
630
+ * The helpers every repo hand-rolls: is this worth retrying, did the
631
+ * transaction land, is it even one of ours, what does an operator need to read,
632
+ * and what goes in a log.
484
633
  */
485
634
  export const SuiError = {
486
635
  isRetryable,
636
+ isTaxonomy,
487
637
  outcome,
488
638
  describe,
489
639
  toJson
@@ -1 +1 @@
1
- {"version":3,"file":"errors.js","sourceRoot":"","sources":["../../src/domain/errors.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"errors.js","sourceRoot":"","sources":["../../src/domain/errors.ts"],"names":[],"mappings":"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"}
@@ -243,6 +243,7 @@ declare const Executed_base: Schema.Class<Executed, Schema.Struct<{
243
243
  };
244
244
  readonly eventType: Schema.String;
245
245
  readonly bcs: Schema.Uint8Array;
246
+ readonly json: Schema.optional<Schema.Unknown>;
246
247
  }>>;
247
248
  readonly balanceChanges: Schema.$Array<Schema.Struct<{
248
249
  readonly coinType: Schema.brand<Schema.decodeTo<Schema.toType<Schema.String>, Schema.String, never, never>, "CoinType">;
@@ -258,6 +259,16 @@ declare const Executed_base: Schema.Class<Executed, Schema.Struct<{
258
259
  /**
259
260
  * A transaction the network executed, built from the fixed execute include set:
260
261
  * effects, events, balance changes and object types.
262
+ *
263
+ * **`events` is `ReadonlyArray<Event>`, not `SuiClientTypes.Event[]`.** It is
264
+ * that type minus `json`: `packageId`, `module`, `sender`, `eventType` and
265
+ * `bcs`, with the branded ids this package uses. The SDK's `json` is dropped on
266
+ * purpose — it is the node's own rendering, it is absent on most transports,
267
+ * and the decode a caller wants is `SuiSchema.decode(codec, event.bcs)`, which
268
+ * gives a typed value rather than a shape that changes with the node. Code
269
+ * typed against the SDK's `Event[]` therefore does not accept these; take
270
+ * `ReadonlyArray<Event>` from `@unconfirmed/sui-effect`, or map the fields you
271
+ * need.
261
272
  */
262
273
  export declare class Executed extends Executed_base {
263
274
  /**
@@ -314,6 +325,17 @@ export declare class Executed extends Executed_base {
314
325
  * Never fails.
315
326
  */
316
327
  wrapped(): ReadonlyArray<ChangedRef>;
328
+ /**
329
+ * Whether this change wrote an object, treating `Unknown` as "the envelope
330
+ * did not say".
331
+ *
332
+ * A node always reports the output state; a reduced envelope from a relay or
333
+ * a sponsor often reports nothing but the id and the id operation, and
334
+ * {@link Executed.fromPartial} leaves what it was not told as `Unknown`
335
+ * rather than inventing `ObjectWrite`. Reading `Unknown` as "not an object
336
+ * write" would make `created()` silently empty for exactly those envelopes.
337
+ */
338
+ private static wroteAnObject;
317
339
  private static isDeleted;
318
340
  private static isWrapped;
319
341
  /**
@@ -328,6 +350,53 @@ export declare class Executed extends Executed_base {
328
350
  balanceChange(address: SuiAddress, coinType: CoinType): bigint;
329
351
  /** Computation plus storage less the storage rebate, in MIST. Can be negative. Never fails. */
330
352
  get gasUsedTotal(): bigint;
353
+ /**
354
+ * An `Executed` from the SDK's own `TransactionResult`, read with
355
+ * {@link EXECUTE_INCLUDE}.
356
+ *
357
+ * This is what `Tx.submit` uses, exported so a caller holding a result from
358
+ * somewhere else — `client.core.executeTransaction`, a sponsor's SDK call —
359
+ * can get the accessors without re-implementing the decode.
360
+ *
361
+ * Fails with: `ExecutionFailed` (the transaction applied and failed),
362
+ * `DecodeError` (the response does not carry the include set).
363
+ *
364
+ * @since 0.1.2
365
+ */
366
+ static readonly fromTransactionResult: (result: SuiClientTypes.TransactionResult<typeof EXECUTE_INCLUDE>) => Effect.Effect<Executed, ExecutionFailed | DecodeError>;
367
+ /**
368
+ * An `Executed` from a **reduced** execute envelope: what a relay, a sponsor
369
+ * or another service hands back, over JSON, after submitting on your behalf.
370
+ *
371
+ * Such an envelope is rarely the SDK's full include set. Everything optional
372
+ * is filled in with "the node did not say" rather than refused:
373
+ *
374
+ * - `changedObjects` entries need only `objectId` and `idOperation`; the
375
+ * version, digest and owner on either side default to `null`, and
376
+ * `outputState` defaults to `ObjectWrite` (`DoesNotExist` for a
377
+ * `Deleted`), so {@link created} and {@link deleted} classify correctly
378
+ * from the id operation alone.
379
+ * - `objectTypes` defaults to `{}`. **The type filters need it**:
380
+ * `created(type)`, `mutated(type)` and `expectCreated(type)` can only
381
+ * match a change whose type the envelope carried, so without
382
+ * `objectTypes` they return nothing. `created()` with no argument, and
383
+ * {@link createdWhere}, still list every created id.
384
+ * - `balanceChanges` and `events` default to `[]`, `checkpoint` and
385
+ * `timestampMs` to `null`, `gasUsed` to zeros, and `effects.status` to
386
+ * success.
387
+ * - **JSON spellings are accepted** where the SDK's types are not JSON:
388
+ * `bcs` as base64 or as an array of byte values as well as a
389
+ * `Uint8Array`, and every `u64` (versions, balances, gas, `checkpoint`)
390
+ * as a number or a `bigint` as well as the decimal string the wire uses.
391
+ *
392
+ * An envelope with no usable digest, or whose values are the wrong shape
393
+ * rather than merely absent, fails: absence is filled in, nonsense is not.
394
+ *
395
+ * Fails with: `DecodeError`.
396
+ *
397
+ * @since 0.1.2
398
+ */
399
+ static readonly fromPartial: (envelope: unknown) => Effect.Effect<Executed, DecodeError>;
331
400
  /**
332
401
  * The single object of this type the transaction created.
333
402
  *
@@ -1 +1 @@
1
- {"version":3,"file":"executed.d.ts","sourceRoot":"","sources":["../../src/domain/executed.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AACH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAA;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAA;AACvC,OAAO,EAAE,WAAW,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAA;AAC7E,OAAO,EAGL,QAAQ,EAIR,QAAQ,EACR,SAAS,EACT,UAAU,EACV,KAAK,EACL,UAAU,EAEV,OAAO,EACR,MAAM,cAAc,CAAA;AAMrB;;;;;;;;;GASG;AACH,MAAM,WAAW,UAAU;IACzB,QAAQ,CAAC,EAAE,EAAE,QAAQ,CAAA;IACrB,QAAQ,CAAC,IAAI,CAAC,EAAE,UAAU,CAAA;IAC1B,QAAQ,CAAC,OAAO,CAAC,EAAE,OAAO,CAAA;IAC1B,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,KAAK,CAAC,EAAE,KAAK,CAAA;CACvB;AAED;;;GAGG;AACH,eAAO,MAAM,WAAW,GAAI,KAAK,UAAU,KAAG,SAAS,GAAG,SAIsC,CAAA;AAEhG;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,QAAQ,GAAI,KAAK,UAAU,GAAG,SAAS,KAAG,YAAY,GAAG,SAGS,CAAA;AAE/E,iFAAiF;AACjF,MAAM,WAAW,YAAY;IAC3B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAED;;;GAGG;AACH,qBAAa,QAAS,SAAQ,aAQ5B;IACA;;;;OAIG;IACH,OAAO,CAAC,MAAM;IAOd;;;;;OAKG;IACH,OAAO,CAAC,KAAK;IAcb,OAAO,CAAC,MAAM;IAgBd,OAAO,CAAC,MAAM,CAAC,MAAM;IAKrB;;;OAGG;IACH,OAAO,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,aAAa,CAAC,UAAU,CAAC;IAQjD;;;;;;;OAOG;IACH,YAAY,CAAC,SAAS,EAAE,CAAC,GAAG,EAAE,UAAU,KAAK,OAAO,GAAG,aAAa,CAAC,UAAU,CAAC;IAQhF,2FAA2F;IAC3F,OAAO,CAAC,IAAI,CAAC,EAAE,MAAM,GAAG,aAAa,CAAC,UAAU,CAAC;IAWjD;;;;;;;;;;;;;;OAcG;IACH,OAAO,IAAI,aAAa,CAAC,UAAU,CAAC;IAOpC;;;;;OAKG;IACH,OAAO,IAAI,aAAa,CAAC,UAAU,CAAC;IAIpC,OAAO,CAAC,MAAM,CAAC,SAAS;IAIxB,OAAO,CAAC,MAAM,CAAC,SAAS;IAKxB;;;;;;OAMG;IACH,iBAAiB,IAAI,aAAa,CAAC,UAAU,CAAC;IAa9C,kFAAkF;IAClF,aAAa,CAAC,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,QAAQ,GAAG,MAAM;IAU9D,+FAA+F;IAC/F,IAAI,YAAY,IAAI,MAAM,CAGzB;IAED;;;;;OAKG;IACH,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,UAAU,EAAE,iBAAiB,CAAC;CAY1E;AAED,+EAA+E;AAC/E,eAAO,MAAM,eAAe;;;;;CAKlB,CAAA;AAIV;;;;;;;GAOG;AACH,eAAO,MAAM,qBAAqB;;;;;oEA6BjC,CAAA"}
1
+ {"version":3,"file":"executed.d.ts","sourceRoot":"","sources":["../../src/domain/executed.ts"],"names":[],"mappings":"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"}