@agoric/portfolio-api 0.1.1-dev-1311387.0.1311387 → 0.1.1-dev-6f7aaa6.0.6f7aaa6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/portfolio-api",
3
- "version": "0.1.1-dev-1311387.0.1311387",
3
+ "version": "0.1.1-dev-6f7aaa6.0.6f7aaa6",
4
4
  "description": "API for Portfolio management",
5
5
  "type": "module",
6
6
  "files": [
@@ -27,8 +27,8 @@
27
27
  "generate:ymax-machine": "npx tsx scripts/gen-ymax-machine.mts"
28
28
  },
29
29
  "dependencies": {
30
- "@agoric/internal": "0.3.3-dev-1311387.0.1311387",
31
- "@agoric/orchestration": "0.1.1-dev-1311387.0.1311387",
30
+ "@agoric/internal": "0.3.3-dev-6f7aaa6.0.6f7aaa6",
31
+ "@agoric/orchestration": "0.1.1-dev-6f7aaa6.0.6f7aaa6",
32
32
  "@endo/common": "^1.2.13",
33
33
  "@endo/errors": "^1.2.13",
34
34
  "@endo/patterns": "^1.7.0"
@@ -69,5 +69,5 @@
69
69
  "engines": {
70
70
  "node": "^20.9 || ^22.11"
71
71
  },
72
- "gitHead": "13113879550bcc28fa66b2f1d1edf689107f6de4"
72
+ "gitHead": "6f7aaa6d055993b9b51ad3ae885ce5b3865cb486"
73
73
  }
package/src/resolver.d.ts CHANGED
@@ -58,6 +58,10 @@ export type PublishedTx = {
58
58
  * - The expected smart wallet hex address to be created (for MAKE_ACCOUNT only, format: 0x...)
59
59
  */
60
60
  expectedAddr?: string | undefined;
61
+ /**
62
+ * - The smart wallet factory address (for MAKE_ACCOUNT only, format: 0x...)
63
+ */
64
+ factoryAddr?: string | undefined;
61
65
  /**
62
66
  * - Current status of the transaction (pending, success, or failed)
63
67
  */
@@ -1 +1 @@
1
- {"version":3,"file":"resolver.d.ts","sourceRoot":"","sources":["resolver.js"],"names":[],"mappings":";;;;;uBA0BU,CAAC,OAAO,QAAQ,EAAE,MAAM,OAAO,QAAQ,CAAC;;;;;;;;;;qBAaxC,QAAQ,CAAC,CAAC,OAAO,MAAM,EAAE,MAAM,OAAO,MAAM,CAAC,CAAC;AAHxD;;;;GAIG;AAEH;;;;;;;IAOE;;;;;OAKG;;GAEF;;;;;;;;UA7CW,MAAM;;;;;;;;;;;;;;;;;;;;YAKN,QAAQ"}
1
+ {"version":3,"file":"resolver.d.ts","sourceRoot":"","sources":["resolver.js"],"names":[],"mappings":";;;;;uBA2BU,CAAC,OAAO,QAAQ,EAAE,MAAM,OAAO,QAAQ,CAAC;;;;;;;;;;qBAaxC,QAAQ,CAAC,CAAC,OAAO,MAAM,EAAE,MAAM,OAAO,MAAM,CAAC,CAAC;AAHxD;;;;GAIG;AAEH;;;;;;;IAOE;;;;;OAKG;;GAEF;;;;;;;;UA9CW,MAAM;;;;;;;;;;;;;;;;;;;;;;;;YAMN,QAAQ"}
package/src/resolver.js CHANGED
@@ -14,6 +14,7 @@ import { keyMirror } from '@agoric/internal';
14
14
  * @property {AccountId} [destinationAddress] - The destination account identifier for the transaction
15
15
  * @property {AccountId} [sourceAddress] - The source LCA address initiating the transaction (for GMP transactions)
16
16
  * @property {string} [expectedAddr] - The expected smart wallet hex address to be created (for MAKE_ACCOUNT only, format: 0x...)
17
+ * @property {string} [factoryAddr] - The smart wallet factory address (for MAKE_ACCOUNT only, format: 0x...)
17
18
  * @property {TxStatus} status - Current status of the transaction (pending, success, or failed)
18
19
  * @property {string} [rejectionReason] - Optional reason for failure (only present when status is 'failed')
19
20
  * @property {TxId} [nextTxId] - Optional ID of the next transaction in operation