@keplr-wallet/types 0.12.157-rc.0 → 0.12.158-rc.0
Sign up to get free protection for your applications and to get access to all the features.
- package/build/wallet/keplr.d.ts +2 -0
- package/package.json +2 -2
- package/src/wallet/keplr.ts +2 -0
package/build/wallet/keplr.d.ts
CHANGED
@@ -137,12 +137,14 @@ export interface Keplr {
|
|
137
137
|
hexAddress: string;
|
138
138
|
pubKey: Uint8Array;
|
139
139
|
address: Uint8Array;
|
140
|
+
isNanoLedger: boolean;
|
140
141
|
}>;
|
141
142
|
getStarknetKeysSettled(chainIds: string[]): Promise<SettledResponses<{
|
142
143
|
name: string;
|
143
144
|
hexAddress: string;
|
144
145
|
pubKey: Uint8Array;
|
145
146
|
address: Uint8Array;
|
147
|
+
isNanoLedger: boolean;
|
146
148
|
}>>;
|
147
149
|
signStarknetDeployAccountTransaction(chainId: string, transaction: DeployAccountSignerDetails): Promise<{
|
148
150
|
transaction: DeployAccountSignerDetails;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@keplr-wallet/types",
|
3
|
-
"version": "0.12.
|
3
|
+
"version": "0.12.158-rc.0",
|
4
4
|
"main": "build/index.js",
|
5
5
|
"author": "chainapsis",
|
6
6
|
"license": "Apache-2.0",
|
@@ -21,5 +21,5 @@
|
|
21
21
|
"peerDependencies": {
|
22
22
|
"starknet": "^6"
|
23
23
|
},
|
24
|
-
"gitHead": "
|
24
|
+
"gitHead": "bb665e095302f27112e7a8897d8edd8830607aec"
|
25
25
|
}
|
package/src/wallet/keplr.ts
CHANGED
@@ -255,6 +255,7 @@ export interface Keplr {
|
|
255
255
|
hexAddress: string;
|
256
256
|
pubKey: Uint8Array;
|
257
257
|
address: Uint8Array;
|
258
|
+
isNanoLedger: boolean;
|
258
259
|
}>;
|
259
260
|
getStarknetKeysSettled(chainIds: string[]): Promise<
|
260
261
|
SettledResponses<{
|
@@ -262,6 +263,7 @@ export interface Keplr {
|
|
262
263
|
hexAddress: string;
|
263
264
|
pubKey: Uint8Array;
|
264
265
|
address: Uint8Array;
|
266
|
+
isNanoLedger: boolean;
|
265
267
|
}>
|
266
268
|
>;
|
267
269
|
signStarknetDeployAccountTransaction(
|