@solana-mobile/wallet-standard-mobile 0.1.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/LICENSE +13 -0
- package/README.md +5 -0
- package/lib/cjs/index.browser.js +1632 -0
- package/lib/cjs/index.js +1632 -0
- package/lib/cjs/index.native.js +1939 -0
- package/lib/cjs/package.json +3 -0
- package/lib/esm/index.browser.js +1616 -0
- package/lib/esm/index.js +1616 -0
- package/lib/esm/package.json +3 -0
- package/lib/types/index.browser.d.ts +81 -0
- package/lib/types/index.browser.d.ts.map +1 -0
- package/lib/types/index.d.ts +81 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.native.d.ts +81 -0
- package/lib/types/index.native.d.ts.map +1 -0
- package/package.json +60 -0
@@ -0,0 +1,81 @@
|
|
1
|
+
import { SolanaSignAndSendTransactionFeature, SolanaSignInFeature, SolanaSignMessageFeature, SolanaSignTransactionFeature } from "@solana/wallet-standard-features";
|
2
|
+
import { AppIdentity, AuthorizationResult } from "@solana-mobile/mobile-wallet-adapter-protocol";
|
3
|
+
import { IdentifierArray, IdentifierString, Wallet, WalletAccount } from "@wallet-standard/base";
|
4
|
+
import { StandardConnectFeature, StandardDisconnectFeature, StandardEventsFeature } from "@wallet-standard/features";
|
5
|
+
type Authorization = AuthorizationResult & Readonly<{
|
6
|
+
chain: IdentifierString;
|
7
|
+
}>;
|
8
|
+
interface AuthorizationCache {
|
9
|
+
clear(): Promise<void>;
|
10
|
+
get(): Promise<Authorization | undefined>;
|
11
|
+
set(authorizationResult: Authorization): Promise<void>;
|
12
|
+
}
|
13
|
+
interface ChainSelector {
|
14
|
+
select(chains: IdentifierArray): Promise<IdentifierString>;
|
15
|
+
}
|
16
|
+
declare const SolanaMobileWalletAdapterWalletName = "Mobile Wallet Adapter";
|
17
|
+
interface SolanaMobileWalletAdapterWallet extends Wallet {
|
18
|
+
url: string;
|
19
|
+
}
|
20
|
+
interface SolanaMobileWalletAdapterAuthorization {
|
21
|
+
get isAuthorized(): boolean;
|
22
|
+
get currentAuthorization(): Authorization | undefined;
|
23
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
24
|
+
}
|
25
|
+
declare class LocalSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
26
|
+
#private;
|
27
|
+
get version(): "1.0.0";
|
28
|
+
get name(): string;
|
29
|
+
get url(): string;
|
30
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
31
|
+
get chains(): IdentifierArray;
|
32
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
33
|
+
get accounts(): WalletAccount[];
|
34
|
+
constructor(config: {
|
35
|
+
appIdentity: AppIdentity;
|
36
|
+
authorizationCache: AuthorizationCache;
|
37
|
+
chains: IdentifierArray;
|
38
|
+
chainSelector: ChainSelector;
|
39
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
40
|
+
});
|
41
|
+
get connected(): boolean;
|
42
|
+
get isAuthorized(): boolean;
|
43
|
+
get currentAuthorization(): Authorization | undefined;
|
44
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
45
|
+
}
|
46
|
+
declare class RemoteSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
47
|
+
#private;
|
48
|
+
get version(): "1.0.0";
|
49
|
+
get name(): string;
|
50
|
+
get url(): string;
|
51
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
52
|
+
get chains(): IdentifierArray;
|
53
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
54
|
+
get accounts(): WalletAccount[];
|
55
|
+
constructor(config: {
|
56
|
+
appIdentity: AppIdentity;
|
57
|
+
authorizationCache: AuthorizationCache;
|
58
|
+
chains: IdentifierArray;
|
59
|
+
chainSelector: ChainSelector;
|
60
|
+
remoteHostAuthority: string;
|
61
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
62
|
+
});
|
63
|
+
get connected(): boolean;
|
64
|
+
get isAuthorized(): boolean;
|
65
|
+
get currentAuthorization(): Authorization | undefined;
|
66
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
67
|
+
}
|
68
|
+
declare function registerMwa(config: {
|
69
|
+
appIdentity: AppIdentity;
|
70
|
+
authorizationCache: AuthorizationCache;
|
71
|
+
chains: IdentifierArray;
|
72
|
+
chainSelector: ChainSelector;
|
73
|
+
remoteHostAuthority?: string;
|
74
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
75
|
+
}): void;
|
76
|
+
declare function defaultErrorModalWalletNotFoundHandler(): Promise<void>;
|
77
|
+
declare function createDefaultWalletNotFoundHandler(): (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
78
|
+
declare function createDefaultAuthorizationCache(): AuthorizationCache;
|
79
|
+
declare function createDefaultChainSelector(): ChainSelector;
|
80
|
+
export { Authorization, AuthorizationCache, ChainSelector, SolanaMobileWalletAdapterWalletName, SolanaMobileWalletAdapterWallet, LocalSolanaMobileWalletAdapterWallet, RemoteSolanaMobileWalletAdapterWallet, registerMwa, defaultErrorModalWalletNotFoundHandler, createDefaultWalletNotFoundHandler as default, createDefaultWalletNotFoundHandler, createDefaultAuthorizationCache, createDefaultChainSelector };
|
81
|
+
//# sourceMappingURL=index.browser.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.browser.d.ts","sourceRoot":"","sources":["../../src/index.ts","../../src/embedded-modal/modal.ts","../../src/embedded-modal/remoteConnectionModal.ts","../../src/icon.ts","../../src/solana.ts","../../src/base64Utils.ts","../../src/wallet.ts","../../src/getIsSupported.ts","../../src/initialize.ts","../../src/embedded-modal/errorModal.ts","../../src/createDefaultWalletNotFoundHandler.ts","../../src/createDefaultAuthorizationCache.ts","../../src/createDefaultChainSelector.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import { SolanaSignAndSendTransactionFeature, SolanaSignInFeature, SolanaSignMessageFeature, SolanaSignTransactionFeature } from "@solana/wallet-standard-features";
|
2
|
+
import { AppIdentity, AuthorizationResult } from "@solana-mobile/mobile-wallet-adapter-protocol";
|
3
|
+
import { IdentifierArray, IdentifierString, Wallet, WalletAccount } from "@wallet-standard/base";
|
4
|
+
import { StandardConnectFeature, StandardDisconnectFeature, StandardEventsFeature } from "@wallet-standard/features";
|
5
|
+
type Authorization = AuthorizationResult & Readonly<{
|
6
|
+
chain: IdentifierString;
|
7
|
+
}>;
|
8
|
+
interface AuthorizationCache {
|
9
|
+
clear(): Promise<void>;
|
10
|
+
get(): Promise<Authorization | undefined>;
|
11
|
+
set(authorizationResult: Authorization): Promise<void>;
|
12
|
+
}
|
13
|
+
interface ChainSelector {
|
14
|
+
select(chains: IdentifierArray): Promise<IdentifierString>;
|
15
|
+
}
|
16
|
+
declare const SolanaMobileWalletAdapterWalletName = "Mobile Wallet Adapter";
|
17
|
+
interface SolanaMobileWalletAdapterWallet extends Wallet {
|
18
|
+
url: string;
|
19
|
+
}
|
20
|
+
interface SolanaMobileWalletAdapterAuthorization {
|
21
|
+
get isAuthorized(): boolean;
|
22
|
+
get currentAuthorization(): Authorization | undefined;
|
23
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
24
|
+
}
|
25
|
+
declare class LocalSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
26
|
+
#private;
|
27
|
+
get version(): "1.0.0";
|
28
|
+
get name(): string;
|
29
|
+
get url(): string;
|
30
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
31
|
+
get chains(): IdentifierArray;
|
32
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
33
|
+
get accounts(): WalletAccount[];
|
34
|
+
constructor(config: {
|
35
|
+
appIdentity: AppIdentity;
|
36
|
+
authorizationCache: AuthorizationCache;
|
37
|
+
chains: IdentifierArray;
|
38
|
+
chainSelector: ChainSelector;
|
39
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
40
|
+
});
|
41
|
+
get connected(): boolean;
|
42
|
+
get isAuthorized(): boolean;
|
43
|
+
get currentAuthorization(): Authorization | undefined;
|
44
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
45
|
+
}
|
46
|
+
declare class RemoteSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
47
|
+
#private;
|
48
|
+
get version(): "1.0.0";
|
49
|
+
get name(): string;
|
50
|
+
get url(): string;
|
51
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
52
|
+
get chains(): IdentifierArray;
|
53
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
54
|
+
get accounts(): WalletAccount[];
|
55
|
+
constructor(config: {
|
56
|
+
appIdentity: AppIdentity;
|
57
|
+
authorizationCache: AuthorizationCache;
|
58
|
+
chains: IdentifierArray;
|
59
|
+
chainSelector: ChainSelector;
|
60
|
+
remoteHostAuthority: string;
|
61
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
62
|
+
});
|
63
|
+
get connected(): boolean;
|
64
|
+
get isAuthorized(): boolean;
|
65
|
+
get currentAuthorization(): Authorization | undefined;
|
66
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
67
|
+
}
|
68
|
+
declare function registerMwa(config: {
|
69
|
+
appIdentity: AppIdentity;
|
70
|
+
authorizationCache: AuthorizationCache;
|
71
|
+
chains: IdentifierArray;
|
72
|
+
chainSelector: ChainSelector;
|
73
|
+
remoteHostAuthority?: string;
|
74
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
75
|
+
}): void;
|
76
|
+
declare function defaultErrorModalWalletNotFoundHandler(): Promise<void>;
|
77
|
+
declare function createDefaultWalletNotFoundHandler(): (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
78
|
+
declare function createDefaultAuthorizationCache(): AuthorizationCache;
|
79
|
+
declare function createDefaultChainSelector(): ChainSelector;
|
80
|
+
export { Authorization, AuthorizationCache, ChainSelector, SolanaMobileWalletAdapterWalletName, SolanaMobileWalletAdapterWallet, LocalSolanaMobileWalletAdapterWallet, RemoteSolanaMobileWalletAdapterWallet, registerMwa, defaultErrorModalWalletNotFoundHandler, createDefaultWalletNotFoundHandler as default, createDefaultWalletNotFoundHandler, createDefaultAuthorizationCache, createDefaultChainSelector };
|
81
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts","../../src/embedded-modal/modal.ts","../../src/embedded-modal/remoteConnectionModal.ts","../../src/icon.ts","../../src/solana.ts","../../src/base64Utils.ts","../../src/wallet.ts","../../src/getIsSupported.ts","../../src/initialize.ts","../../src/embedded-modal/errorModal.ts","../../src/createDefaultWalletNotFoundHandler.ts","../../src/createDefaultAuthorizationCache.ts","../../src/createDefaultChainSelector.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,81 @@
|
|
1
|
+
import { SolanaSignAndSendTransactionFeature, SolanaSignInFeature, SolanaSignMessageFeature, SolanaSignTransactionFeature } from "@solana/wallet-standard-features";
|
2
|
+
import { AppIdentity, AuthorizationResult } from "@solana-mobile/mobile-wallet-adapter-protocol";
|
3
|
+
import { IdentifierArray, IdentifierString, Wallet, WalletAccount } from "@wallet-standard/base";
|
4
|
+
import { StandardConnectFeature, StandardDisconnectFeature, StandardEventsFeature } from "@wallet-standard/features";
|
5
|
+
type Authorization = AuthorizationResult & Readonly<{
|
6
|
+
chain: IdentifierString;
|
7
|
+
}>;
|
8
|
+
interface AuthorizationCache {
|
9
|
+
clear(): Promise<void>;
|
10
|
+
get(): Promise<Authorization | undefined>;
|
11
|
+
set(authorizationResult: Authorization): Promise<void>;
|
12
|
+
}
|
13
|
+
interface ChainSelector {
|
14
|
+
select(chains: IdentifierArray): Promise<IdentifierString>;
|
15
|
+
}
|
16
|
+
declare const SolanaMobileWalletAdapterWalletName = "Mobile Wallet Adapter";
|
17
|
+
interface SolanaMobileWalletAdapterWallet extends Wallet {
|
18
|
+
url: string;
|
19
|
+
}
|
20
|
+
interface SolanaMobileWalletAdapterAuthorization {
|
21
|
+
get isAuthorized(): boolean;
|
22
|
+
get currentAuthorization(): Authorization | undefined;
|
23
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
24
|
+
}
|
25
|
+
declare class LocalSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
26
|
+
#private;
|
27
|
+
get version(): "1.0.0";
|
28
|
+
get name(): string;
|
29
|
+
get url(): string;
|
30
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
31
|
+
get chains(): IdentifierArray;
|
32
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
33
|
+
get accounts(): WalletAccount[];
|
34
|
+
constructor(config: {
|
35
|
+
appIdentity: AppIdentity;
|
36
|
+
authorizationCache: AuthorizationCache;
|
37
|
+
chains: IdentifierArray;
|
38
|
+
chainSelector: ChainSelector;
|
39
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
40
|
+
});
|
41
|
+
get connected(): boolean;
|
42
|
+
get isAuthorized(): boolean;
|
43
|
+
get currentAuthorization(): Authorization | undefined;
|
44
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
45
|
+
}
|
46
|
+
declare class RemoteSolanaMobileWalletAdapterWallet implements SolanaMobileWalletAdapterWallet, SolanaMobileWalletAdapterAuthorization {
|
47
|
+
#private;
|
48
|
+
get version(): "1.0.0";
|
49
|
+
get name(): string;
|
50
|
+
get url(): string;
|
51
|
+
get icon(): `data:image/svg+xml;base64,${string}` | `data:image/webp;base64,${string}` | `data:image/png;base64,${string}` | `data:image/gif;base64,${string}`;
|
52
|
+
get chains(): IdentifierArray;
|
53
|
+
get features(): StandardConnectFeature & StandardDisconnectFeature & StandardEventsFeature & SolanaSignMessageFeature & SolanaSignInFeature & (SolanaSignAndSendTransactionFeature | SolanaSignTransactionFeature);
|
54
|
+
get accounts(): WalletAccount[];
|
55
|
+
constructor(config: {
|
56
|
+
appIdentity: AppIdentity;
|
57
|
+
authorizationCache: AuthorizationCache;
|
58
|
+
chains: IdentifierArray;
|
59
|
+
chainSelector: ChainSelector;
|
60
|
+
remoteHostAuthority: string;
|
61
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
62
|
+
});
|
63
|
+
get connected(): boolean;
|
64
|
+
get isAuthorized(): boolean;
|
65
|
+
get currentAuthorization(): Authorization | undefined;
|
66
|
+
get cachedAuthorizationResult(): Promise<Authorization | undefined>;
|
67
|
+
}
|
68
|
+
declare function registerMwa(config: {
|
69
|
+
appIdentity: AppIdentity;
|
70
|
+
authorizationCache: AuthorizationCache;
|
71
|
+
chains: IdentifierArray;
|
72
|
+
chainSelector: ChainSelector;
|
73
|
+
remoteHostAuthority?: string;
|
74
|
+
onWalletNotFound: (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
75
|
+
}): void;
|
76
|
+
declare function defaultErrorModalWalletNotFoundHandler(): Promise<void>;
|
77
|
+
declare function createDefaultWalletNotFoundHandler(): (mobileWalletAdapter: SolanaMobileWalletAdapterWallet) => Promise<void>;
|
78
|
+
declare function createDefaultAuthorizationCache(): AuthorizationCache;
|
79
|
+
declare function createDefaultChainSelector(): ChainSelector;
|
80
|
+
export { Authorization, AuthorizationCache, ChainSelector, SolanaMobileWalletAdapterWalletName, SolanaMobileWalletAdapterWallet, LocalSolanaMobileWalletAdapterWallet, RemoteSolanaMobileWalletAdapterWallet, registerMwa, defaultErrorModalWalletNotFoundHandler, createDefaultWalletNotFoundHandler as default, createDefaultWalletNotFoundHandler, createDefaultAuthorizationCache, createDefaultChainSelector };
|
81
|
+
//# sourceMappingURL=index.native.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.native.d.ts","sourceRoot":"","sources":["../../src/index.ts","../../src/embedded-modal/modal.ts","../../src/embedded-modal/remoteConnectionModal.ts","../../src/icon.ts","../../src/solana.ts","../../src/base64Utils.ts","../../src/wallet.ts","../../src/getIsSupported.ts","../../src/initialize.ts","../../src/embedded-modal/errorModal.ts","../../src/createDefaultWalletNotFoundHandler.ts","../../src/createDefaultAuthorizationCache.ts","../../src/createDefaultChainSelector.ts","../../src/__forks__/react-native/createDefaultAuthorizationCache.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
{
|
2
|
+
"name": "@solana-mobile/wallet-standard-mobile",
|
3
|
+
"description": "A wallet-standard wallet for mobile wallet apps that conform to the Solana Mobile Wallet Adapter protocol",
|
4
|
+
"version": "0.1.0",
|
5
|
+
"author": "Marco Martinez <marco.martinez@solana.com>",
|
6
|
+
"repository": "https://github.com/solana-mobile/mobile-wallet-adapter",
|
7
|
+
"license": "Apache-2.0",
|
8
|
+
"type": "module",
|
9
|
+
"sideEffects": false,
|
10
|
+
"main": "lib/cjs/index.js",
|
11
|
+
"module": "lib/esm/index.js",
|
12
|
+
"react-native": "lib/cjs/index.native.js",
|
13
|
+
"types": "lib/types/index.d.ts",
|
14
|
+
"browser": {
|
15
|
+
"./lib/cjs/index.js": "./lib/cjs/index.browser.js",
|
16
|
+
"./lib/esm/index.js": "./lib/esm/index.browser.js"
|
17
|
+
},
|
18
|
+
"exports": {
|
19
|
+
"./package.json": "./package.json",
|
20
|
+
".": {
|
21
|
+
"import": "./lib/esm/index.js",
|
22
|
+
"require": "./lib/cjs/index.js",
|
23
|
+
"types": "./lib/types/index.d.ts"
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"files": [
|
27
|
+
"lib",
|
28
|
+
"LICENSE"
|
29
|
+
],
|
30
|
+
"publishConfig": {
|
31
|
+
"access": "public"
|
32
|
+
},
|
33
|
+
"scripts": {
|
34
|
+
"clean": "shx rm -rf lib/*",
|
35
|
+
"build": "yarn clean && rollup --config ../../rollup.config.ts --configPlugin rollup-plugin-ts",
|
36
|
+
"build:watch": "yarn clean && rollup --config ../../rollup.config.ts --configPlugin rollup-plugin-ts --watch",
|
37
|
+
"postbuild": "cross-env echo {\\\"type\\\":\\\"commonjs\\\"} | npx json > lib/cjs/package.json && echo {\\\"type\\\":\\\"module\\\"} | npx json > lib/esm/package.json",
|
38
|
+
"prepublishOnly": "agadoo"
|
39
|
+
},
|
40
|
+
"peerDependencies": {
|
41
|
+
"@solana/web3.js": "^1.58.0"
|
42
|
+
},
|
43
|
+
"dependencies": {
|
44
|
+
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "^2.1.5",
|
45
|
+
"@solana/wallet-standard-chains": "^1.1.0",
|
46
|
+
"@solana/wallet-standard-features": "^1.2.0",
|
47
|
+
"@wallet-standard/base": "^1.0.1",
|
48
|
+
"@wallet-standard/features": "^1.0.3",
|
49
|
+
"bs58": "^5.0.0",
|
50
|
+
"js-base64": "^3.7.5",
|
51
|
+
"qrcode": "^1.5.4"
|
52
|
+
},
|
53
|
+
"devDependencies": {
|
54
|
+
"@solana/web3.js": "^1.95.3",
|
55
|
+
"@types/qrcode": "^1.5.5",
|
56
|
+
"agadoo": "^3.0.0",
|
57
|
+
"cross-env": "^7.0.3",
|
58
|
+
"shx": "^0.3.4"
|
59
|
+
}
|
60
|
+
}
|