@onekeyfe/onekey-solana-provider 2.2.7 → 2.2.8
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/dist/ProviderSolana.d.ts
CHANGED
|
@@ -61,7 +61,6 @@ type SolanaAccountInfo = {
|
|
|
61
61
|
};
|
|
62
62
|
interface IProviderSolana extends ProviderSolanaBase {
|
|
63
63
|
readonly isPhantom: true;
|
|
64
|
-
readonly isGlow: true;
|
|
65
64
|
readonly isSolflare: true;
|
|
66
65
|
isConnected: boolean;
|
|
67
66
|
publicKey: PublicKey | null;
|
|
@@ -113,7 +112,6 @@ type OneKeySolanaProviderProps = IInpageProviderConfig & {
|
|
|
113
112
|
declare class ProviderSolana extends ProviderSolanaBase implements IProviderSolana {
|
|
114
113
|
readonly isPhantom = true;
|
|
115
114
|
readonly isSolflare = true;
|
|
116
|
-
readonly isGlow = true;
|
|
117
115
|
private _publicKey;
|
|
118
116
|
get publicKey(): PublicKey | null;
|
|
119
117
|
get isConnected(): boolean;
|
package/dist/ProviderSolana.js
CHANGED
|
@@ -29,7 +29,6 @@ class ProviderSolana extends ProviderSolanaBase {
|
|
|
29
29
|
super(Object.assign(Object.assign({}, props), { bridge: props.bridge || getOrCreateExtInjectedJsBridge({ timeout: props.timeout }) }));
|
|
30
30
|
this.isPhantom = true;
|
|
31
31
|
this.isSolflare = true;
|
|
32
|
-
this.isGlow = true;
|
|
33
32
|
this._publicKey = null;
|
|
34
33
|
this._registerEvents = this._registerEvents.bind(this);
|
|
35
34
|
this._callBridge = this._callBridge.bind(this);
|
|
@@ -35,7 +35,6 @@ class ProviderSolana extends ProviderSolanaBase_1.ProviderSolanaBase {
|
|
|
35
35
|
super(Object.assign(Object.assign({}, props), { bridge: props.bridge || (0, extension_bridge_injected_1.getOrCreateExtInjectedJsBridge)({ timeout: props.timeout }) }));
|
|
36
36
|
this.isPhantom = true;
|
|
37
37
|
this.isSolflare = true;
|
|
38
|
-
this.isGlow = true;
|
|
39
38
|
this._publicKey = null;
|
|
40
39
|
this._registerEvents = this._registerEvents.bind(this);
|
|
41
40
|
this._callBridge = this._callBridge.bind(this);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onekeyfe/onekey-solana-provider",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.8",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"cross-inpage-provider",
|
|
6
6
|
"solona"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"start": "tsc --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@onekeyfe/cross-inpage-provider-core": "2.2.
|
|
33
|
-
"@onekeyfe/cross-inpage-provider-errors": "2.2.
|
|
34
|
-
"@onekeyfe/cross-inpage-provider-types": "2.2.
|
|
35
|
-
"@onekeyfe/extension-bridge-injected": "2.2.
|
|
32
|
+
"@onekeyfe/cross-inpage-provider-core": "2.2.8",
|
|
33
|
+
"@onekeyfe/cross-inpage-provider-errors": "2.2.8",
|
|
34
|
+
"@onekeyfe/cross-inpage-provider-types": "2.2.8",
|
|
35
|
+
"@onekeyfe/extension-bridge-injected": "2.2.8",
|
|
36
36
|
"@solana/wallet-standard-features": "^1.1.0",
|
|
37
37
|
"@solana/web3.js": "^1.98.0",
|
|
38
38
|
"@wallet-standard/base": "^1.0.1",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/bs58": "^4.0.1"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "22993ea91676b86d8b471590fe54401726529063"
|
|
45
45
|
}
|