@metamask-institutional/custody-keyring
Advanced tools
Comparing version 1.0.12 to 1.1.0
@@ -44,2 +44,24 @@ # Change Log | ||
## [1.1.0](https://github.com/consensys-vertical-apps/metamask-institutional/compare/custody-keyring-v1.0.12...custody-keyring-v1.1.0) (2024-04-17) | ||
### Features | ||
* **websocketclient transasctionupdate:** initial handshake work ([#670](https://github.com/consensys-vertical-apps/metamask-institutional/issues/670)) ([5cd3bd6](https://github.com/consensys-vertical-apps/metamask-institutional/commit/5cd3bd60e9fd342b4b82c8bb589de8b4a0373c5a)) | ||
### Dependencies | ||
* The following workspace dependencies were updated | ||
* dependencies | ||
* @metamask-institutional/sdk bumped from ^0.1.25 to ^0.1.26 | ||
* @metamask-institutional/types bumped from ^1.0.4 to ^1.1.0 | ||
## [1.0.12](https://github.com/consensys-vertical-apps/metamask-institutional/compare/custody-keyring-v1.0.11...custody-keyring-v1.0.12) (2024-04-05) | ||
### Bug Fixes | ||
* **manual update:** manual update ([#685](https://github.com/consensys-vertical-apps/metamask-institutional/issues/685)) ([162a0c0](https://github.com/consensys-vertical-apps/metamask-institutional/commit/162a0c03944c2ddc518a109debbfd4086b5ccd51)) | ||
## [1.0.10](https://github.com/consensys-vertical-apps/metamask-institutional/compare/custody-keyring-v1.0.9...custody-keyring-v1.0.10) (2024-02-13) | ||
@@ -46,0 +68,0 @@ |
@@ -15,2 +15,4 @@ export interface ICustodianEnvironment { | ||
isNoteToTraderSupported: boolean; | ||
isQRCodeSupported: boolean; | ||
isManualTokenInputSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
@@ -17,0 +19,0 @@ version: number; |
@@ -11,2 +11,4 @@ interface IEnvironment { | ||
isNoteToTraderSupported: boolean; | ||
isManualTokenInputSupported: boolean; | ||
isQRCodeSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
@@ -13,0 +15,0 @@ } |
@@ -61,2 +61,4 @@ "use strict"; | ||
isNoteToTraderSupported: false, | ||
isQRCodeSupported: false, | ||
isManualTokenInputSupported: false, | ||
custodianPublishesTransaction: custodian.custodianPublishesTransaction, | ||
@@ -92,2 +94,4 @@ version: 1, | ||
isNoteToTraderSupported: environment.isNoteToTraderSupported, | ||
isQRCodeSupported: environment.isQRCodeSupported, | ||
isManualTokenInputSupported: environment.isManualTokenInputSupported, | ||
custodianPublishesTransaction: environment.custodianPublishesTransaction, | ||
@@ -94,0 +98,0 @@ version: 2, |
{ | ||
"name": "@metamask-institutional/custody-keyring", | ||
"version": "1.0.12", | ||
"version": "1.1.0", | ||
"description": "The Custody Keyring Class is the initial point of contact with a custodian, it gets access to the sdk and all methods of interaction with a custodian, like custodian accounts, sign a tx, account details, tx details.", | ||
@@ -30,3 +30,3 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "162a0c03944c2ddc518a109debbfd4086b5ccd51", | ||
"gitHead": "77d24b36e98558ddca8ff460ac34b1c894aaea58", | ||
"dependencies": { | ||
@@ -36,4 +36,4 @@ "@ethereumjs/tx": "^4.1.1", | ||
"@metamask-institutional/configuration-client": "^2.0.1", | ||
"@metamask-institutional/sdk": "^0.1.25", | ||
"@metamask-institutional/types": "^1.0.4", | ||
"@metamask-institutional/sdk": "^0.1.26", | ||
"@metamask-institutional/types": "^1.1.0", | ||
"@metamask/obs-store": "^8.0.0", | ||
@@ -40,0 +40,0 @@ "crypto": "^1.0.1", |
{ | ||
"name": "@metamask-institutional/custody-keyring", | ||
"version": "1.0.12", | ||
"version": "1.1.0", | ||
"description": "The Custody Keyring Class is the initial point of contact with a custodian, it gets access to the sdk and all methods of interaction with a custodian, like custodian accounts, sign a tx, account details, tx details.", | ||
@@ -30,3 +30,3 @@ "author": "Albert Olive <albertolivecorbella@gmail.com>", | ||
}, | ||
"gitHead": "162a0c03944c2ddc518a109debbfd4086b5ccd51", | ||
"gitHead": "77d24b36e98558ddca8ff460ac34b1c894aaea58", | ||
"dependencies": { | ||
@@ -36,4 +36,4 @@ "@ethereumjs/tx": "^4.1.1", | ||
"@metamask-institutional/configuration-client": "^2.0.1", | ||
"@metamask-institutional/sdk": "^0.1.25", | ||
"@metamask-institutional/types": "^1.0.4", | ||
"@metamask-institutional/sdk": "^0.1.26", | ||
"@metamask-institutional/types": "^1.1.0", | ||
"@metamask/obs-store": "^8.0.0", | ||
@@ -40,0 +40,0 @@ "crypto": "^1.0.1", |
@@ -15,4 +15,6 @@ export interface ICustodianEnvironment { | ||
isNoteToTraderSupported: boolean; | ||
isQRCodeSupported: boolean; | ||
isManualTokenInputSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
version: number; | ||
} |
@@ -11,2 +11,4 @@ interface IEnvironment { | ||
isNoteToTraderSupported: boolean; | ||
isManualTokenInputSupported: boolean; | ||
isQRCodeSupported: boolean; | ||
custodianPublishesTransaction: boolean; | ||
@@ -13,0 +15,0 @@ } |
@@ -85,2 +85,4 @@ /** | ||
isNoteToTraderSupported: false, | ||
isQRCodeSupported: false, | ||
isManualTokenInputSupported: false, | ||
custodianPublishesTransaction: custodian.custodianPublishesTransaction, | ||
@@ -122,2 +124,4 @@ version: 1, | ||
isNoteToTraderSupported: environment.isNoteToTraderSupported, | ||
isQRCodeSupported: environment.isQRCodeSupported, | ||
isManualTokenInputSupported: environment.isManualTokenInputSupported, | ||
custodianPublishesTransaction: environment.custodianPublishesTransaction, | ||
@@ -124,0 +128,0 @@ version: 2, |
171668
3913