@wallet-ui/react-native-web3js 2.2.0-canary-20251120223258 → 2.2.0-canary-20251206072155
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/index.browser.cjs +95 -82
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.mjs +95 -81
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.native.mjs +95 -81
- package/dist/index.native.mjs.map +1 -1
- package/dist/index.node.cjs +95 -82
- package/dist/index.node.cjs.map +1 -1
- package/dist/index.node.mjs +95 -81
- package/dist/index.node.mjs.map +1 -1
- package/dist/types/get-account-from-authorized-account.d.ts +4 -0
- package/dist/types/get-account-from-authorized-account.d.ts.map +1 -0
- package/dist/types/get-authorization-from-authorization-result.d.ts +4 -0
- package/dist/types/get-authorization-from-authorization-result.d.ts.map +1 -0
- package/dist/types/get-public-key-from-address.d.ts +4 -0
- package/dist/types/get-public-key-from-address.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -2
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/mobile-wallet-provider.d.ts +18 -0
- package/dist/types/mobile-wallet-provider.d.ts.map +1 -0
- package/dist/types/use-authorization.d.ts +3 -9
- package/dist/types/use-authorization.d.ts.map +1 -1
- package/dist/types/use-fetch-authorization.d.ts +6 -0
- package/dist/types/use-fetch-authorization.d.ts.map +1 -0
- package/dist/types/use-invalidate-authorizations.d.ts +2 -0
- package/dist/types/use-invalidate-authorizations.d.ts.map +1 -0
- package/dist/types/use-mobile-wallet.d.ts +19 -6
- package/dist/types/use-mobile-wallet.d.ts.map +1 -1
- package/dist/types/use-persist-authorization.d.ts +6 -0
- package/dist/types/use-persist-authorization.d.ts.map +1 -0
- package/dist/types/use-query-config.d.ts +6 -0
- package/dist/types/use-query-config.d.ts.map +1 -0
- package/package.json +2 -2
- package/dist/types/mobile-wallet-adapter-provider.d.ts +0 -18
- package/dist/types/mobile-wallet-adapter-provider.d.ts.map +0 -1
- package/dist/types/use-mobile-wallet-adapter.d.ts +0 -19
- package/dist/types/use-mobile-wallet-adapter.d.ts.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mobile-wallet-adapter-provider.d.ts","sourceRoot":"","sources":["../../src/mobile-wallet-adapter-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,+CAA+C,CAAC;AAC5E,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,KAAK,EAAE,EAAiB,KAAK,SAAS,EAAW,MAAM,OAAO,CAAC;AAEtE,MAAM,WAAW,gCAAgC;IAC7C,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,EAAE,eAAe,CAAC;IAC3B,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,WAAW,CAAC;CACzB;AACD,MAAM,WAAW,gCAAgC;IAC7C,SAAS,EAAE,eAAe,CAAC;IAC3B,UAAU,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,WAAW,CAAC;CACzB;AAED,eAAO,MAAM,kCAAkC,iDAE9C,CAAC;AACF,wBAAgB,2BAA2B,CAAC,EACxC,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,QAAQ,GACX,EAAE,gCAAgC,qBASlC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export declare function useMobileWalletAdapter(): {
|
|
2
|
-
account: Readonly<{
|
|
3
|
-
address: import("@solana-mobile/mobile-wallet-adapter-protocol").Base64EncodedAddress;
|
|
4
|
-
displayAddress?: string;
|
|
5
|
-
icon?: import("@wallet-standard/core").WalletIcon;
|
|
6
|
-
label?: string;
|
|
7
|
-
publicKey: import("@solana/web3.js").PublicKey;
|
|
8
|
-
}> | null;
|
|
9
|
-
connect: () => Promise<import("./use-authorization").Account>;
|
|
10
|
-
connectAnd: (cb: (wallet: import("@solana-mobile/mobile-wallet-adapter-protocol").AuthorizeAPI) => Promise<import("./use-authorization").Account | void>) => Promise<import("./use-authorization").Account | void>;
|
|
11
|
-
disconnect: () => Promise<void>;
|
|
12
|
-
signAndSendTransaction: (transaction: import("@solana/web3.js").Transaction | import("@solana/web3.js").VersionedTransaction, minContextSlot: number) => Promise<import("@solana/web3.js").TransactionSignature>;
|
|
13
|
-
signIn: (signInPayload: import("@solana-mobile/mobile-wallet-adapter-protocol").SignInPayload) => Promise<import("./use-authorization").Account>;
|
|
14
|
-
signMessage: (message: Uint8Array) => Promise<Uint8Array>;
|
|
15
|
-
clusterId: import("@wallet-ui/core/src").SolanaClusterId;
|
|
16
|
-
connection: import("@solana/web3.js").Connection;
|
|
17
|
-
identity: import("@solana-mobile/mobile-wallet-adapter-protocol").AppIdentity;
|
|
18
|
-
};
|
|
19
|
-
//# sourceMappingURL=use-mobile-wallet-adapter.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"use-mobile-wallet-adapter.d.ts","sourceRoot":"","sources":["../../src/use-mobile-wallet-adapter.ts"],"names":[],"mappings":"AAMA,wBAAgB,sBAAsB;;;;;;;;;;;;;;;;;EAerC"}
|