@metamask-institutional/custody-controller
Advanced tools
Comparing version 0.2.15 to 0.2.16
@@ -89,2 +89,9 @@ # Change Log | ||
### Dependencies | ||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @metamask-institutional/custody-keyring bumped from ^1.0.4 to ^1.0.5 | ||
* @metamask-institutional/sdk bumped from ^0.1.20 to ^0.1.21 | ||
## [0.2.6](https://github.com/consensys-vertical-apps/metamask-institutional/compare/custody-controller-v0.2.5...custody-controller-v0.2.6) (2023-05-17) | ||
@@ -91,0 +98,0 @@ |
{ | ||
"name": "@metamask-institutional/custody-controller", | ||
"version": "0.2.15", | ||
"version": "0.2.16", | ||
"description": "Custody controller is a background controller responsible for maintaining a cache of custody data in local storage", | ||
@@ -30,7 +30,7 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "a153ffb44d1f4c792cedf5d43249050d51a34ad4", | ||
"gitHead": "32f6154de94897da0006cd394e10d91800e4a2b4", | ||
"dependencies": { | ||
"@ethereumjs/util": "^8.0.5", | ||
"@metamask-institutional/custody-keyring": "^1.0.4", | ||
"@metamask-institutional/sdk": "^0.1.20", | ||
"@metamask-institutional/custody-keyring": "^1.0.5", | ||
"@metamask-institutional/sdk": "^0.1.21", | ||
"@metamask-institutional/types": "^1.0.3", | ||
@@ -37,0 +37,0 @@ "@metamask/obs-store": "^8.0.0" |
@@ -9,5 +9,5 @@ import { IEthereumAccountCustodianDetails } from "@metamask-institutional/sdk"; | ||
custodyType: string; | ||
chainId: string; | ||
chainId: number; | ||
custodianName: string; | ||
} | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "@metamask-institutional/custody-controller", | ||
"version": "0.2.15", | ||
"version": "0.2.16", | ||
"description": "Custody controller is a background controller responsible for maintaining a cache of custody data in local storage", | ||
@@ -30,7 +30,7 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "a153ffb44d1f4c792cedf5d43249050d51a34ad4", | ||
"gitHead": "32f6154de94897da0006cd394e10d91800e4a2b4", | ||
"dependencies": { | ||
"@ethereumjs/util": "^8.0.5", | ||
"@metamask-institutional/custody-keyring": "^1.0.4", | ||
"@metamask-institutional/sdk": "^0.1.20", | ||
"@metamask-institutional/custody-keyring": "^1.0.5", | ||
"@metamask-institutional/sdk": "^0.1.21", | ||
"@metamask-institutional/types": "^1.0.3", | ||
@@ -37,0 +37,0 @@ "@metamask/obs-store": "^8.0.0" |
@@ -10,4 +10,4 @@ import { IEthereumAccountCustodianDetails } from "@metamask-institutional/sdk"; | ||
custodyType: string; | ||
chainId: string; | ||
chainId: number; | ||
custodianName: string; // e.g. saturn-dev - this will be used to look up custodian details from the MMI configuration store | ||
} |
29363