@funkit/connect 6.9.0 → 6.10.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/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @funkit/connect
2
2
 
3
+ ## 6.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 31b3379: feat: bitcoin support
8
+
9
+ ### Patch Changes
10
+
11
+ - 3460c16: fix of error logging to datadog
12
+ - 2e0ebf7: feat: bitcoin support
13
+ - Updated dependencies [3460c16]
14
+ - Updated dependencies [31b3379]
15
+ - Updated dependencies [2e0ebf7]
16
+ - @funkit/api-base@1.12.0
17
+ - @funkit/chains@0.4.0
18
+ - @funkit/core@2.3.45
19
+ - @funkit/wagmi-tools@3.0.67
20
+
3
21
  ## 6.9.0
4
22
 
5
23
  ### Minor Changes
@@ -1,4 +1,5 @@
1
1
  import type { FunAddress } from '@funkit/api-base';
2
+ import { type QRCodeUri } from '~/utils/transfer';
2
3
  export type FeeValue = {
3
4
  label: string;
4
5
  value: number;
@@ -16,6 +17,8 @@ interface UseTokenTransferResult {
16
17
  showOriginalRecipient: boolean;
17
18
  estPriceImpact: FeeValue | undefined;
18
19
  maxSlippage: FeeValue | undefined;
20
+ qrCodeUri: QRCodeUri | undefined;
21
+ blockchain: 'ethereum' | 'solana' | 'bitcoin';
19
22
  }
20
23
  export declare const useTokenTransfer: (selectedChainId: number, selectedToken: string, chainIds?: number[]) => UseTokenTransferResult;
21
24
  export {};