@uniswap/client-embeddedwallet
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -62,2 +62,10 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; | ||
credential: string; | ||
/** | ||
* For mobile and extension to create and export using a single passkey click | ||
* | ||
* base64 encoded public key | ||
* | ||
* @generated from field: optional string b64_encryption_public_key = 2; | ||
*/ | ||
b64EncryptionPublicKey?: string; | ||
constructor(data?: PartialMessage<CreateWalletRequest>); | ||
@@ -80,2 +88,6 @@ static readonly runtime: typeof proto3; | ||
walletAddress: string; | ||
/** | ||
* @generated from field: string encrypted_seed_phrase = 2; | ||
*/ | ||
encryptedSeedPhrase: string; | ||
constructor(data?: PartialMessage<CreateWalletResponse>); | ||
@@ -211,5 +223,5 @@ static readonly runtime: typeof proto3; | ||
* | ||
* @generated from field: string encryption_key = 2; | ||
* @generated from field: string b64_encryption_public_key = 2; | ||
*/ | ||
encryptionKey: string; | ||
b64EncryptionPublicKey: string; | ||
constructor(data?: PartialMessage<ExportSeedPhraseRequest>); | ||
@@ -216,0 +228,0 @@ static readonly runtime: typeof proto3; |
@@ -119,2 +119,3 @@ // @generated by protoc-gen-es v1.10.0 with parameter "target=ts" | ||
{ no: 1, name: "credential", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "b64_encryption_public_key", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true }, | ||
]); | ||
@@ -131,2 +132,6 @@ /** | ||
this.walletAddress = ""; | ||
/** | ||
* @generated from field: string encrypted_seed_phrase = 2; | ||
*/ | ||
this.encryptedSeedPhrase = ""; | ||
proto3.util.initPartial(data, this); | ||
@@ -151,2 +156,3 @@ } | ||
{ no: 1, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "encrypted_seed_phrase", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
]); | ||
@@ -356,5 +362,5 @@ /** | ||
* | ||
* @generated from field: string encryption_key = 2; | ||
* @generated from field: string b64_encryption_public_key = 2; | ||
*/ | ||
this.encryptionKey = ""; | ||
this.b64EncryptionPublicKey = ""; | ||
proto3.util.initPartial(data, this); | ||
@@ -379,3 +385,3 @@ } | ||
{ no: 1, name: "credential", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "encryption_key", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "b64_encryption_public_key", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
]); | ||
@@ -382,0 +388,0 @@ /** |
{ | ||
"name": "@uniswap/client-embeddedwallet", | ||
"version": "0.0.6", | ||
"version": "0.0.7", | ||
"publishConfig": { | ||
"access": "restricted" | ||
"access": "public" | ||
}, | ||
@@ -7,0 +7,0 @@ "files": [ |
48242
1168