@agoric/portfolio-api 0.1.1-dev-1145be3.0.1145be3 → 0.1.1-dev-b084a06.0.b084a06

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-1145be3.0.1145be3",
3
+ "version": "0.1.1-dev-b084a06.0.b084a06",
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-1145be3.0.1145be3",
31
- "@agoric/orchestration": "0.1.1-dev-1145be3.0.1145be3",
30
+ "@agoric/internal": "0.3.3-dev-b084a06.0.b084a06",
31
+ "@agoric/orchestration": "0.1.1-dev-b084a06.0.b084a06",
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": "1145be333a0554d3bae3c35a227347441ddf5b5e"
72
+ "gitHead": "b084a067b866127f7d05c66e6865750132c4a7d8"
73
73
  }
package/src/resolver.d.ts CHANGED
@@ -51,7 +51,7 @@ export type PublishedTx = {
51
51
  */
52
52
  destinationAddress?: `${string}:${string}:${string}` | undefined;
53
53
  /**
54
- * - The source LCA address initiating the transaction (for GMP transactions)
54
+ * - The source LCA address initiating the transaction (required for GMP and MAKE_ACCOUNT transactions)
55
55
  */
56
56
  sourceAddress?: `${string}:${string}:${string}` | undefined;
57
57
  /**
package/src/resolver.js CHANGED
@@ -12,7 +12,7 @@ import { keyMirror } from '@agoric/internal';
12
12
  * @property {TxType} type - The type of transaction (CCTP_TO_EVM, GMP, CCTP_TO_AGORIC, or MAKE_ACCOUNT)
13
13
  * @property {bigint} [amount] - Optional transaction amount as a bigint
14
14
  * @property {AccountId} [destinationAddress] - The destination account identifier for the transaction
15
- * @property {AccountId} [sourceAddress] - The source LCA address initiating the transaction (for GMP transactions)
15
+ * @property {AccountId} [sourceAddress] - The source LCA address initiating the transaction (required for GMP and MAKE_ACCOUNT transactions)
16
16
  * @property {string} [expectedAddr] - The expected smart wallet hex address to be created (for MAKE_ACCOUNT only, format: 0x...)
17
17
  * @property {string} [factoryAddr] - The smart wallet factory address (for MAKE_ACCOUNT only, format: 0x...)
18
18
  * @property {TxStatus} status - Current status of the transaction (pending, success, or failed)