@keplr-wallet/provider 0.12.209 → 0.12.210-rc.0
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/core.d.ts +1 -1
- package/build/inject.d.ts +1 -1
- package/package.json +4 -4
- package/src/core.ts +1 -1
- package/src/inject.ts +1 -1
package/build/core.d.ts
CHANGED
@@ -4,7 +4,7 @@ import { MessageRequester } from "@keplr-wallet/router";
|
|
4
4
|
import Long from "long";
|
5
5
|
import { KeplrCoreTypes } from "./core-types";
|
6
6
|
import EventEmitter from "events";
|
7
|
-
import { AccountInterface, Call, DeployAccountSignerDetails, InvocationsSignerDetails, ProviderInterface } from "starknet";
|
7
|
+
import type { AccountInterface, Call, DeployAccountSignerDetails, InvocationsSignerDetails, ProviderInterface } from "starknet";
|
8
8
|
export declare class Keplr implements IKeplr, KeplrCoreTypes {
|
9
9
|
readonly version: string;
|
10
10
|
readonly mode: KeplrMode;
|
package/build/inject.d.ts
CHANGED
@@ -4,7 +4,7 @@ import { Result } from "@keplr-wallet/router";
|
|
4
4
|
import Long from "long";
|
5
5
|
import { KeplrCoreTypes } from "./core-types";
|
6
6
|
import EventEmitter from "events";
|
7
|
-
import { Call, DeployAccountSignerDetails, InvocationsSignerDetails } from "starknet";
|
7
|
+
import type { Call, DeployAccountSignerDetails, InvocationsSignerDetails } from "starknet";
|
8
8
|
export interface ProxyRequest {
|
9
9
|
type: string;
|
10
10
|
id: string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@keplr-wallet/provider",
|
3
|
-
"version": "0.12.
|
3
|
+
"version": "0.12.210-rc.0",
|
4
4
|
"main": "build/index.js",
|
5
5
|
"author": "chainapsis",
|
6
6
|
"license": "Apache-2.0",
|
@@ -16,8 +16,8 @@
|
|
16
16
|
"lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\""
|
17
17
|
},
|
18
18
|
"dependencies": {
|
19
|
-
"@keplr-wallet/router": "0.12.
|
20
|
-
"@keplr-wallet/types": "0.12.
|
19
|
+
"@keplr-wallet/router": "0.12.210-rc.0",
|
20
|
+
"@keplr-wallet/types": "0.12.210-rc.0",
|
21
21
|
"buffer": "^6.0.3",
|
22
22
|
"deepmerge": "^4.2.2",
|
23
23
|
"long": "^4.0.0"
|
@@ -25,5 +25,5 @@
|
|
25
25
|
"peerDependencies": {
|
26
26
|
"starknet": "^6"
|
27
27
|
},
|
28
|
-
"gitHead": "
|
28
|
+
"gitHead": "0f8f9bc9f9b5743ffe3ed47451771d35a67b8b73"
|
29
29
|
}
|
package/src/core.ts
CHANGED
package/src/inject.ts
CHANGED