@agoric/portfolio-api 0.1.1-dev-776528e.0.776528e → 0.1.1-dev-cbcea8c.0.cbcea8c

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-776528e.0.776528e",
3
+ "version": "0.1.1-dev-cbcea8c.0.cbcea8c",
4
4
  "description": "API for Portfolio management",
5
5
  "repository": {
6
6
  "type": "git",
@@ -46,11 +46,11 @@
46
46
  "generate:ymax-machine": "npx tsx scripts/gen-ymax-machine.mts"
47
47
  },
48
48
  "dependencies": {
49
- "@agoric/internal": "0.3.3-dev-776528e.0.776528e",
50
- "@agoric/orchestration": "0.1.1-dev-776528e.0.776528e",
51
- "@endo/common": "^1.2.13",
52
- "@endo/errors": "^1.2.13",
53
- "@endo/patterns": "^1.7.0"
49
+ "@agoric/internal": "0.3.3-dev-cbcea8c.0.cbcea8c",
50
+ "@agoric/orchestration": "0.1.1-dev-cbcea8c.0.cbcea8c",
51
+ "@endo/common": "^1.4.0",
52
+ "@endo/errors": "^1.3.1",
53
+ "@endo/patterns": "^1.9.1"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@endo/far": "^1.1.14",
@@ -89,5 +89,5 @@
89
89
  "engines": {
90
90
  "node": "^22.11"
91
91
  },
92
- "gitHead": "776528eb7ca6f31911f2ca21a9702e20fdca2595"
92
+ "gitHead": "cbcea8c2415f2c9c4bc1ea9ff90730f2773bafaa"
93
93
  }
@@ -64,13 +64,13 @@ export declare const makeEVMHandlerUtils: (viemUtils: {
64
64
  domain: Permit2Domain;
65
65
  }, owner: Address, signature: WithSignature<object>["signature"]): PermitDetails;
66
66
  };
67
- extractOperationDetailsFromDataWithAddress: <T extends OperationTypeNames = "Deposit" | "Withdraw" | "OpenPortfolio" | "Rebalance" | "SetTargetAllocation" | "Grant" | "SetAutoFeatures">(data: (WithSignature<YmaxPermitWitnessTransferFromData<T>> | YmaxStandaloneOperationData<T>) & {
67
+ extractOperationDetailsFromDataWithAddress: <T extends OperationTypeNames = "Grant" | "Deposit" | "Withdraw" | "OpenPortfolio" | "Rebalance" | "SetTargetAllocation" | "SetAutoFeatures">(data: (WithSignature<YmaxPermitWitnessTransferFromData<T>> | YmaxStandaloneOperationData<T>) & {
68
68
  address: Address;
69
69
  }, contractAddresses?: {
70
70
  permit2?: Partial<Record<number | string, Address>>;
71
71
  ymaxRepresentative?: Partial<Record<number | string, Address>>;
72
72
  }) => FullMessageDetails<T>;
73
- extractOperationDetailsFromSignedData: <T extends OperationTypeNames = "Deposit" | "Withdraw" | "OpenPortfolio" | "Rebalance" | "SetTargetAllocation" | "Grant" | "SetAutoFeatures">(signedData: WithSignature<YmaxPermitWitnessTransferFromData<T> | YmaxStandaloneOperationData<T>> & {
73
+ extractOperationDetailsFromSignedData: <T extends OperationTypeNames = "Grant" | "Deposit" | "Withdraw" | "OpenPortfolio" | "Rebalance" | "SetTargetAllocation" | "SetAutoFeatures">(signedData: WithSignature<YmaxPermitWitnessTransferFromData<T> | YmaxStandaloneOperationData<T>> & {
74
74
  address?: Address;
75
75
  }, validYmaxRepresentativeContractAddresses?: Partial<Record<number | string, Address>>) => Promise<FullMessageDetails<T>>;
76
76
  };