@b3dotfun/sdk 0.0.7-alpha.10 → 0.0.7-alpha.11

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.
@@ -125,7 +125,7 @@ export interface AnySpendNftProps extends BaseModalProps {
125
125
  /** Recipient address to receive the NFT */
126
126
  recipientAddress?: string;
127
127
  /** Callback function called when the NFT is successfully transferred */
128
- onSuccess?: () => void;
128
+ onSuccess?: (txHash?: string) => void;
129
129
  }
130
130
  /**
131
131
  * Props for the AnySpend tournament modal
@@ -125,7 +125,7 @@ export interface AnySpendNftProps extends BaseModalProps {
125
125
  /** Recipient address to receive the NFT */
126
126
  recipientAddress?: string;
127
127
  /** Callback function called when the NFT is successfully transferred */
128
- onSuccess?: () => void;
128
+ onSuccess?: (txHash?: string) => void;
129
129
  }
130
130
  /**
131
131
  * Props for the AnySpend tournament modal
@@ -125,7 +125,7 @@ export interface AnySpendNftProps extends BaseModalProps {
125
125
  /** Recipient address to receive the NFT */
126
126
  recipientAddress?: string;
127
127
  /** Callback function called when the NFT is successfully transferred */
128
- onSuccess?: () => void;
128
+ onSuccess?: (txHash?: string) => void;
129
129
  }
130
130
  /**
131
131
  * Props for the AnySpend tournament modal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@b3dotfun/sdk",
3
- "version": "0.0.7-alpha.10",
3
+ "version": "0.0.7-alpha.11",
4
4
  "source": "src/index.ts",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "react-native": "./dist/cjs/index.native.js",
@@ -132,7 +132,7 @@ export interface AnySpendNftProps extends BaseModalProps {
132
132
  /** Recipient address to receive the NFT */
133
133
  recipientAddress?: string;
134
134
  /** Callback function called when the NFT is successfully transferred */
135
- onSuccess?: () => void;
135
+ onSuccess?: (txHash?: string) => void;
136
136
  }
137
137
 
138
138
  /**