@funkit/connect 6.14.13 → 6.14.14
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 +7 -0
- package/dist/components/FunSelectBrokerage/FunBrokerageItem.d.ts +1 -1
- package/dist/consts/bluvo.d.ts +4 -0
- package/dist/domains/feeEstimate.d.ts +1 -1
- package/dist/index.js +1657 -1588
- package/dist/utils/flags/config.d.ts +8 -0
- package/dist/wallets/walletConnectors/index.js +46 -46
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,6 @@ export interface FunBrokerageItemProps {
|
|
|
3
3
|
exchangeName: string;
|
|
4
4
|
exchangeIcon: React.ReactNode;
|
|
5
5
|
hasActiveConnection: boolean;
|
|
6
|
-
badgeText?: string
|
|
6
|
+
badgeText?: string;
|
|
7
7
|
}
|
|
8
8
|
export declare const FunBrokerageItem: ({ exchangeName, exchangeIcon, hasActiveConnection, badgeText, }: FunBrokerageItemProps) => React.JSX.Element;
|
package/dist/consts/bluvo.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type BluvoWithdrawableBalance = UseBluvoFlowHook['walletBalances'];
|
|
|
8
8
|
export type BluvoWithdrawal = UseBluvoFlowHook['withdrawal'];
|
|
9
9
|
export declare enum BluvoExchangeType {
|
|
10
10
|
Coinbase = "coinbase",
|
|
11
|
+
Binance = "binance",
|
|
11
12
|
Gemini = "gemini",
|
|
12
13
|
Kraken = "kraken"
|
|
13
14
|
}
|
|
@@ -24,6 +25,9 @@ export declare enum BluvoExchangeStatus {
|
|
|
24
25
|
export declare const SUPPORTED_EXCHANGES: readonly [{
|
|
25
26
|
readonly exchange: BluvoExchangeType.Coinbase;
|
|
26
27
|
readonly status: BluvoExchangeStatus.Live;
|
|
28
|
+
}, {
|
|
29
|
+
readonly exchange: BluvoExchangeType.Binance;
|
|
30
|
+
readonly status: BluvoExchangeStatus.ComingSoon;
|
|
27
31
|
}, {
|
|
28
32
|
readonly exchange: BluvoExchangeType.Kraken;
|
|
29
33
|
readonly status: BluvoExchangeStatus.ComingSoon;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PaymentMethod } from './paymentMethods';
|
|
2
|
-
export declare const L1_FEES_ESTIMATE =
|
|
2
|
+
export declare const L1_FEES_ESTIMATE = 5;
|
|
3
3
|
export declare const L2_FEES_ESTIMATE = 1;
|
|
4
4
|
export declare const MESH_L1_FEES_ESTIMATE = 8;
|
|
5
5
|
export declare const MESH_L2_FEES_ESTIMATE = 2;
|