@supanovaapp/sdk 0.2.4 → 0.2.5
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.cjs.js +376 -376
- package/dist/index.d.ts +4 -2
- package/dist/index.esm.js +17074 -17040
- package/package.json +1 -5
package/dist/index.d.ts
CHANGED
|
@@ -1002,8 +1002,10 @@ export declare interface SignTransactionModalProps {
|
|
|
1002
1002
|
export declare interface StellarWallet {
|
|
1003
1003
|
/** Stellar address (public key in Stellar format) */
|
|
1004
1004
|
address: string;
|
|
1005
|
-
/** Raw public key in hex format */
|
|
1006
|
-
publicKey
|
|
1005
|
+
/** Raw public key in hex format (camelCase) */
|
|
1006
|
+
publicKey?: string;
|
|
1007
|
+
/** Raw public key in hex format (snake_case from Privy API) */
|
|
1008
|
+
public_key?: string;
|
|
1007
1009
|
/** Chain type, always 'stellar' for Stellar wallets */
|
|
1008
1010
|
chainType: 'stellar';
|
|
1009
1011
|
/** Wallet client type (e.g., 'privy') */
|