@supanovaapp/sdk 0.2.15 → 0.2.16
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/README.md +75 -1
- package/dist/hooks/useAuth.d.ts +5 -1
- package/dist/hooks/useCantonWallet.d.ts +10 -0
- package/dist/hooks/useSendTransaction.d.ts +3 -3
- package/dist/hooks/useSignMessage.d.ts +3 -3
- package/dist/hooks/useSignRawHashWithModal.d.ts +11 -3
- package/dist/hooks/useSupa.d.ts +4 -1
- package/dist/index.cjs.js +327 -327
- package/dist/index.d.ts +7 -7
- package/dist/index.esm.js +20051 -19954
- package/dist/providers/CantonProvider.d.ts +9 -5
- package/dist/providers/SupaProvider.d.ts +7 -0
- package/dist/services/apiService.d.ts +7 -7
- package/dist/services/cantonService.d.ts +3 -3
- package/dist/utils/converters.d.ts +13 -0
- package/dist/utils/wallet.d.ts +92 -0
- package/package.json +1 -1
- package/dist/hooks/useStellarWallet.d.ts +0 -6
- package/dist/utils/stellar.d.ts +0 -90
package/dist/index.d.ts
CHANGED
|
@@ -97,11 +97,11 @@ export type { UseSignRawHashWithModalReturn, SignRawHashModalOptions } from './h
|
|
|
97
97
|
export { useConfirmModal } from './hooks/useConfirmModal';
|
|
98
98
|
export type { UseConfirmModalReturn } from './hooks/useConfirmModal';
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
101
|
-
* @see {@link
|
|
100
|
+
* Canton wallet hook (works with Stellar or Solana based on withExport config)
|
|
101
|
+
* @see {@link useCantonWallet}
|
|
102
102
|
*/
|
|
103
|
-
export { useStellarWallet } from './hooks/
|
|
104
|
-
export type { UseStellarWalletReturn } from './hooks/
|
|
103
|
+
export { useCantonWallet, useStellarWallet } from './hooks/useCantonWallet';
|
|
104
|
+
export type { UseCantonWalletReturn, UseStellarWalletReturn } from './hooks/useCantonWallet';
|
|
105
105
|
/**
|
|
106
106
|
* Smart Wallets hook (EVM)
|
|
107
107
|
* @see {@link useSmartWallets}
|
|
@@ -126,10 +126,10 @@ export * from './core/types';
|
|
|
126
126
|
*/
|
|
127
127
|
export * from './utils/converters';
|
|
128
128
|
/**
|
|
129
|
-
*
|
|
130
|
-
* @see {@link
|
|
129
|
+
* Canton wallet utilities
|
|
130
|
+
* @see {@link getCantonWallets}, {@link getPublicKeyBase64}, {@link isCantonWallet}, {@link CantonWallet}
|
|
131
131
|
*/
|
|
132
|
-
export * from './utils/
|
|
132
|
+
export * from './utils/wallet';
|
|
133
133
|
/**
|
|
134
134
|
* Canton Network service for direct API access (advanced usage)
|
|
135
135
|
* @see {@link CantonService}
|