@keplr-wallet/types 0.12.141 → 0.12.142
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/build/secretjs.d.ts +1 -0
- package/build/wallet/keplr.d.ts +1 -0
- package/package.json +2 -2
- package/src/secretjs.ts +1 -0
- package/src/wallet/keplr.ts +1 -0
package/build/secretjs.d.ts
CHANGED
package/build/wallet/keplr.d.ts
CHANGED
|
@@ -101,6 +101,7 @@ export interface Keplr {
|
|
|
101
101
|
getEnigmaTxEncryptionKey(chainId: string, nonce: Uint8Array): Promise<Uint8Array>;
|
|
102
102
|
enigmaEncrypt(chainId: string, contractCodeHash: string, msg: object): Promise<Uint8Array>;
|
|
103
103
|
enigmaDecrypt(chainId: string, ciphertext: Uint8Array, nonce: Uint8Array): Promise<Uint8Array>;
|
|
104
|
+
enigmaIsNewApi(chainId: string): Promise<boolean>;
|
|
104
105
|
/**
|
|
105
106
|
* Sign the sign doc with ethermint's EIP-712 format.
|
|
106
107
|
* The difference from signEthereum(..., EthSignType.EIP712) is that this api returns a new sign doc changed by the user's fee setting and the signature for that sign doc.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keplr-wallet/types",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.142",
|
|
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": "c2d22d11ad24d24248575c849a912c6cd654563d"
|
|
25
25
|
}
|
package/src/secretjs.ts
CHANGED
package/src/wallet/keplr.ts
CHANGED