@funkit/connect 5.5.13 → 5.5.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 +24 -0
- package/dist/components/CopyAddress/CopyInputDisplayedAddress.css.d.ts +11 -0
- package/dist/components/CopyAddress/CopyInputDisplayedAddress.d.ts +0 -1
- package/dist/components/FunCheckoutHistory/FunCheckoutHistoryContent.d.ts +3 -1
- package/dist/components/Icons/CheckIcon.d.ts +2 -1
- package/dist/consts/customers.d.ts +0 -1
- package/dist/domains/asset.d.ts +2 -3
- package/dist/domains/clientMetadata.d.ts +7 -1
- package/dist/domains/quote.d.ts +3 -2
- package/dist/domains/relay.d.ts +5 -0
- package/dist/domains/wallet.d.ts +1 -1
- package/dist/hooks/queries/useWithdrawalQuote.d.ts +2 -3
- package/dist/hooks/useCheckoutDirectExecution.d.ts +17 -15
- package/dist/hooks/useCheckoutTimeEstimate.d.ts +3 -0
- package/dist/index.css +230 -88
- package/dist/index.js +8162 -8023
- package/dist/modals/CheckoutModal/ConfirmationStep/useCheckoutConfirmation.d.ts +1 -0
- package/dist/modals/CheckoutModal/InputAmount/InputAmountLoaded.d.ts +1 -1
- package/dist/modals/CheckoutModal/InputAmount/state.d.ts +1 -2
- package/dist/{components/Withdraw/WithdrawContent.d.ts → modals/WithdrwalModal/WithdrawalContent.d.ts} +1 -9
- package/dist/{components/Withdraw/WithdrawSuccess.d.ts → modals/WithdrwalModal/WithdrawalSuccess.d.ts} +3 -1
- package/dist/modals/WithdrwalModal/useWithdrawal.d.ts +24 -0
- package/dist/providers/FunkitCheckoutContext.d.ts +4 -1
- package/dist/utils/flags/config.d.ts +19 -12
- package/dist/wallets/walletConnectors/index.js +54 -54
- package/package.json +6 -6
- package/dist/hooks/useWithdrawal.d.ts +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @funkit/connect
|
|
2
2
|
|
|
3
|
+
## 5.5.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0f27d4f: fix(connect): select chain dropdown width and position
|
|
8
|
+
- 7232b85: chore(connect): deprecate vertex related code
|
|
9
|
+
- 3ecab67: fix fee display
|
|
10
|
+
- e4b274b: add icons to withdrawal
|
|
11
|
+
- a650b5d: feat: add hyperevm chain
|
|
12
|
+
- 3c3ea82: support exact input for withdrawal
|
|
13
|
+
- 072a1c6: fix: fix fallback values for checkout time estimates
|
|
14
|
+
- 08b7da3: chore: deprecate zoraTestnet
|
|
15
|
+
- c3ea232: feat(connect): update Deposit with cash disclaimer
|
|
16
|
+
- Updated dependencies [7232b85]
|
|
17
|
+
- Updated dependencies [a650b5d]
|
|
18
|
+
- Updated dependencies [afb6a57]
|
|
19
|
+
- Updated dependencies [48d11b9]
|
|
20
|
+
- Updated dependencies [08b7da3]
|
|
21
|
+
- @funkit/api-base@1.9.6
|
|
22
|
+
- @funkit/chains@0.3.3
|
|
23
|
+
- @funkit/core@2.3.28
|
|
24
|
+
- @funkit/utils@1.1.5
|
|
25
|
+
- @funkit/wagmi-tools@3.0.50
|
|
26
|
+
|
|
3
27
|
## 5.5.13
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -1,2 +1,13 @@
|
|
|
1
1
|
export declare const copyButtonWrapper: string;
|
|
2
2
|
export declare const copyButton: string;
|
|
3
|
+
export declare const copyButtonIcon: string;
|
|
4
|
+
export declare const copyButtonIconBase: string;
|
|
5
|
+
export declare const copyButtonIconActive: string;
|
|
6
|
+
export declare const copyInputTextBox: string;
|
|
7
|
+
export declare const copyInputTextBoxActive: string;
|
|
8
|
+
export declare const copyInputText: string;
|
|
9
|
+
export declare const copyInputTextWrapper: string;
|
|
10
|
+
export declare const copyInputTextDefault: string;
|
|
11
|
+
export declare const copyInputTextActive: string;
|
|
12
|
+
export declare const textOut: string;
|
|
13
|
+
export declare const textIn: string;
|
|
@@ -3,6 +3,5 @@ interface CopyInputDisplayedAddressProps {
|
|
|
3
3
|
address: string;
|
|
4
4
|
truncateAddress?: boolean;
|
|
5
5
|
}
|
|
6
|
-
/** Element displaying the provided address along with a copy button below */
|
|
7
6
|
export declare function CopyInputDisplayedAddress({ address, truncateAddress, }: CopyInputDisplayedAddressProps): React.JSX.Element;
|
|
8
7
|
export {};
|
|
@@ -5,7 +5,9 @@ interface FunCheckoutHistoryContentProps {
|
|
|
5
5
|
currentPage: HistoryContentPages;
|
|
6
6
|
onHelp: () => void;
|
|
7
7
|
onBackFromHelpPage: () => void;
|
|
8
|
-
onClose: (
|
|
8
|
+
onClose: (opt?: {
|
|
9
|
+
isNewDeposit?: boolean;
|
|
10
|
+
}) => void;
|
|
9
11
|
onAnimationComplete?: (callback: () => void) => void;
|
|
10
12
|
/** Element ID to be used to mount the CTA action bar */
|
|
11
13
|
bottomBarId: string;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare function isDydxCustomer(apiKey: string): apiKey is "NJq0CGrsE19xBbP1vHyBOp8xJvzYo9kayJHqDFP5";
|
|
2
2
|
export declare function isPolymarketCustomer(apiKey: string): apiKey is "Y53dikxXdT4E3afI1l8BMBSWgyhKvf65k6Dut1k6";
|
|
3
|
-
export declare function isVertexCustomer(apiKey: string): apiKey is "OQXhzzkLHE2vHAK8nZBS76el5utuw3527RmnYn26";
|
|
4
3
|
export declare function isOstiumCustomer(apiKey: string): apiKey is "SMbBD7DS9b3EPcyBVg4a8az1rRWR9xB068chHoUN";
|
|
5
4
|
export declare function isBankrCustomer(apiKey: string): apiKey is "vWe20Dfyui2ouvfOhtSTY3Czeo8lFdbo5xXQBALZ";
|
|
6
5
|
export declare function isBsxCustomer(apiKey: string): apiKey is "zN1zrkmLQn4oZtLUW9Qt02uuBI3Jvrgj8Ni40Gf1";
|
package/dist/domains/asset.d.ts
CHANGED
|
@@ -8,7 +8,6 @@ export declare function isNativeTokenAddress(address: Address): boolean;
|
|
|
8
8
|
export declare function isDefaultToken(asset: AssetHoldingsItem, checkoutConfig: FunkitCheckoutConfig): boolean;
|
|
9
9
|
export declare const isPolygonEcosystemToken: (chainId: string, tokenAddress: string) => boolean;
|
|
10
10
|
interface AssetUsableToPayParms {
|
|
11
|
-
apiKey: string;
|
|
12
11
|
config: FunkitCheckoutConfig;
|
|
13
12
|
payerAddress: string;
|
|
14
13
|
paymentMethod: PaymentMethod;
|
|
@@ -20,9 +19,9 @@ interface AssetUsableToPayParms {
|
|
|
20
19
|
loginType: LoginType;
|
|
21
20
|
isAllowedForCheckout: boolean;
|
|
22
21
|
}
|
|
23
|
-
export declare const isAssetUsableToPayForCheckout: ({
|
|
22
|
+
export declare const isAssetUsableToPayForCheckout: ({ config, payerAddress, paymentMethod, targetChainId, targetTokenAddress, assetChainId, assetTokenAddress, assetUsdAmount, loginType, isAllowedForCheckout, }: AssetUsableToPayParms) => {
|
|
24
23
|
isUsable: boolean;
|
|
25
24
|
reason: string;
|
|
26
25
|
};
|
|
27
|
-
export declare function getUsdAvailableAmount(targetChainId: string, assetChainId: string | undefined, assetUsdAmount: number | null | undefined, paymentMethod: PaymentMethod | undefined
|
|
26
|
+
export declare function getUsdAvailableAmount(targetChainId: string, assetChainId: string | undefined, assetUsdAmount: number | null | undefined, paymentMethod: PaymentMethod | undefined): number | null;
|
|
28
27
|
export {};
|
|
@@ -31,11 +31,17 @@ export interface HistoricalCheckoutItem {
|
|
|
31
31
|
};
|
|
32
32
|
selectedSourceAssetInfo: FunkitActiveCheckoutItem['selectedSourceAssetInfo'];
|
|
33
33
|
selectedPaymentMethodInfo: FunkitActiveCheckoutItem['selectedPaymentMethodInfo'];
|
|
34
|
+
isWithdrawal?: boolean;
|
|
34
35
|
}
|
|
35
36
|
/**
|
|
36
37
|
* Sanitizes checkoutItem to generate a clientMetadata object to be saved in backend.
|
|
37
38
|
* Ensures that no react components get sent to backend and the object isn't too big as well.
|
|
38
39
|
*/
|
|
39
|
-
export declare function generateClientMetadataForBackend(checkoutItem
|
|
40
|
+
export declare function generateClientMetadataForBackend({ checkoutItem, latestQuote, actionsParams, isWithdrawal, }: {
|
|
41
|
+
checkoutItem: FunkitActiveCheckoutItem;
|
|
42
|
+
latestQuote: FunkitCheckoutQuoteResult;
|
|
43
|
+
actionsParams?: FunkitCheckoutActionParams[];
|
|
44
|
+
isWithdrawal?: boolean;
|
|
45
|
+
}): ApiCheckoutClientMetadata;
|
|
40
46
|
export declare function generateClientMetadataForTokenTransfer(): HistoricalCheckoutItem;
|
|
41
47
|
export declare function toApiSelectedPaymentMethodInfo(paymentMethodInfo: PaymentMethodInfo): ApiSelectedPaymentMethodInfo;
|
package/dist/domains/quote.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export interface FunkitCheckoutQuoteResult extends Omit<ApiFunkitCheckoutQuoteRe
|
|
|
10
10
|
finalSpreadUsd: string;
|
|
11
11
|
finalFeesBreakdown: CheckoutFees;
|
|
12
12
|
}
|
|
13
|
-
export declare function getCheckoutBaseQuote(checkoutItem: FunkitActiveCheckoutItem, userId: string, walletAddress: Address, apiKey: string, sponsorInitialTransferGasLimit: number, wagmiConfig: Config, directExecutionInfo: FunkitDirectExecutionInfo, senderAddress?: Address): Promise<CheckoutQuoteResponse>;
|
|
13
|
+
export declare function getCheckoutBaseQuote(checkoutItem: FunkitActiveCheckoutItem, userId: string, walletAddress: Address, apiKey: string, sponsorInitialTransferGasLimit: number, wagmiConfig: Config, directExecutionInfo: FunkitDirectExecutionInfo, senderAddress?: Address, isWithdrawal?: boolean): Promise<CheckoutQuoteResponse>;
|
|
14
14
|
export declare function getQuoteFinalEstimation(baseQuote: CheckoutQuoteResponse, checkoutItem: FunkitActiveCheckoutItem, newPaymentMethodInfo: PaymentMethodInfo, wagmiConfig: Config, apiKey: string, loginType: LoginType, enableFrogProxyServer?: boolean): Promise<{
|
|
15
15
|
finalEstimation: FunkitCheckoutQuoteResult;
|
|
16
16
|
brokerage?: BrokerageDetails;
|
|
@@ -37,8 +37,9 @@ export interface CheckoutQuoteParams {
|
|
|
37
37
|
* this happens when withdrawing from a different wallet
|
|
38
38
|
**/
|
|
39
39
|
senderAddress?: Address;
|
|
40
|
+
isWithdrawal?: boolean;
|
|
40
41
|
}
|
|
41
|
-
export declare function getQuoteAndEstimation({ checkoutItem, userId, walletAddress, apiKey, sponsorInitialTransferGasLimit, newPaymentMethodInfo, wagmiConfig, loginType, enableFrogProxyServer, directExecutionInfo, senderAddress, }: CheckoutQuoteParams): Promise<{
|
|
42
|
+
export declare function getQuoteAndEstimation({ checkoutItem, userId, walletAddress, apiKey, sponsorInitialTransferGasLimit, newPaymentMethodInfo, wagmiConfig, loginType, enableFrogProxyServer, directExecutionInfo, senderAddress, isWithdrawal, }: CheckoutQuoteParams): Promise<{
|
|
42
43
|
baseQuote: CheckoutQuoteResponse;
|
|
43
44
|
checkedAssetAmount: CheckedAssetAmount;
|
|
44
45
|
finalEstimation: FunkitCheckoutQuoteResult;
|
package/dist/domains/relay.d.ts
CHANGED
|
@@ -2,10 +2,15 @@ import type { RelayQuote } from '@funkit/fun-relay';
|
|
|
2
2
|
export declare const KATANA_BRIDGE_ALERT_THRESHOLD_PERCENT = 0.5;
|
|
3
3
|
export declare function extractRelayFeeInfo(relayQuote: RelayQuote['metadata']['relayQuote']): {
|
|
4
4
|
gasUsd: number;
|
|
5
|
+
fillCostUsd: number;
|
|
6
|
+
fillCostPercent: number;
|
|
5
7
|
chainName: string | undefined;
|
|
8
|
+
totalImpactUsd: number;
|
|
6
9
|
totalImpact: number;
|
|
7
10
|
swapImpact: number;
|
|
11
|
+
swapImpactUsd: number;
|
|
8
12
|
appFeePercent: number;
|
|
13
|
+
appFeeUsd: number;
|
|
9
14
|
maxSlippage: number;
|
|
10
15
|
minReceived: number;
|
|
11
16
|
};
|
package/dist/domains/wallet.d.ts
CHANGED
|
@@ -25,5 +25,5 @@ type RecommendedAsset = {
|
|
|
25
25
|
chainSymbolKey: string;
|
|
26
26
|
label: string | null;
|
|
27
27
|
};
|
|
28
|
-
export declare const getRecommendedAsset: (
|
|
28
|
+
export declare const getRecommendedAsset: (checkoutItem: FunkitActiveCheckoutItem, accountHoldings: KnownAssetHoldingsItem[]) => RecommendedAsset | null;
|
|
29
29
|
export {};
|
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
import { type Address } from 'viem';
|
|
2
2
|
import type { WithdrawalClient } from '~/wallets/Wallet';
|
|
3
3
|
interface CheckoutQuoteParams {
|
|
4
|
-
recipientAddress:
|
|
4
|
+
recipientAddress: string;
|
|
5
5
|
sourceAmount: number;
|
|
6
6
|
chainId: string;
|
|
7
7
|
symbol: string;
|
|
8
8
|
targetAsset: Address | undefined;
|
|
9
|
-
targetAssetAmount: number | undefined;
|
|
10
9
|
withdrawalClient: WithdrawalClient;
|
|
11
10
|
}
|
|
12
11
|
/**
|
|
13
12
|
* Simplified quoting logic used for withdrawal UI only.
|
|
14
13
|
*/
|
|
15
|
-
export declare function useWithdrawalQuote({ recipientAddress, sourceAmount, chainId, symbol, targetAsset,
|
|
14
|
+
export declare function useWithdrawalQuote({ recipientAddress, sourceAmount, chainId, symbol, targetAsset, withdrawalClient, }: CheckoutQuoteParams): {
|
|
16
15
|
quoteEnabled: boolean;
|
|
17
16
|
data: {
|
|
18
17
|
baseQuote: import("@funkit/utils").CheckoutQuoteResponse;
|
|
@@ -1,25 +1,36 @@
|
|
|
1
1
|
import { DirectExecutionType } from '@funkit/api-base';
|
|
2
|
-
import {
|
|
2
|
+
import type { CheckoutQuoteResponse } from '@funkit/utils';
|
|
3
3
|
import type { Address, Hex } from 'viem';
|
|
4
|
-
import { PaymentMethod } from '~/domains/paymentMethods';
|
|
5
4
|
import type { FunkitCheckoutQuoteResult } from '~/domains/quote';
|
|
6
|
-
import type { FunkitActiveCheckoutItem, FunkitCheckoutActionParams
|
|
7
|
-
|
|
5
|
+
import type { FunkitActiveCheckoutItem, FunkitCheckoutActionParams } from '~/providers/FunkitCheckoutContext';
|
|
6
|
+
import type { WithdrawalClient } from '~/wallets/Wallet';
|
|
7
|
+
interface DirectExecutionQuoteRequestParamsBase {
|
|
8
8
|
actionParams: FunkitCheckoutActionParams[];
|
|
9
9
|
toChainId: string;
|
|
10
10
|
toTokenAddress: Address;
|
|
11
|
-
toTokenAmount: number;
|
|
12
|
-
toTokenDecimals: number;
|
|
13
11
|
fromChainId: string;
|
|
14
12
|
fromTokenAddress: Address;
|
|
15
13
|
recipientAddress: Address;
|
|
16
14
|
senderAddress?: Address;
|
|
15
|
+
isExactIn?: boolean;
|
|
16
|
+
}
|
|
17
|
+
interface RegularDEQuoteRequest extends DirectExecutionQuoteRequestParamsBase {
|
|
18
|
+
toTokenAmount: number;
|
|
19
|
+
toTokenDecimals: number;
|
|
20
|
+
isExactIn?: false;
|
|
21
|
+
}
|
|
22
|
+
interface WithdrawalDEQuoteRequest extends DirectExecutionQuoteRequestParamsBase {
|
|
23
|
+
fromTokenAmount: number;
|
|
24
|
+
isExactIn: true;
|
|
25
|
+
fromTokenDecimals: number;
|
|
17
26
|
}
|
|
27
|
+
type DirectExecutionQuoteRequestParams = RegularDEQuoteRequest | WithdrawalDEQuoteRequest;
|
|
18
28
|
interface DirectExecutionStartParams {
|
|
19
29
|
checkoutItem: FunkitActiveCheckoutItem;
|
|
20
30
|
stepMessageSetter: (m: string) => void;
|
|
21
31
|
actionsParams: FunkitCheckoutActionParams[];
|
|
22
32
|
latestQuote: FunkitCheckoutQuoteResult;
|
|
33
|
+
withdrawalClient?: WithdrawalClient;
|
|
23
34
|
}
|
|
24
35
|
export interface FunkitDirectExecutionInfo {
|
|
25
36
|
isDirectExecution: boolean;
|
|
@@ -31,14 +42,5 @@ interface UseCheckoutDirectExecutionReturn {
|
|
|
31
42
|
getDirectExecutionInfo: (checkoutItem: FunkitActiveCheckoutItem | null) => FunkitDirectExecutionInfo;
|
|
32
43
|
getWithdrawalDirectExecution: () => FunkitDirectExecutionInfo;
|
|
33
44
|
}
|
|
34
|
-
export declare function isVertexDirectExecution({ apiKey, config, paymentMethod, sourceAsset, sourceChain, targetAsset, targetChain, }: {
|
|
35
|
-
apiKey: string;
|
|
36
|
-
config: FunkitCheckoutConfig;
|
|
37
|
-
paymentMethod: PaymentMethod | undefined;
|
|
38
|
-
sourceAsset: string;
|
|
39
|
-
sourceChain: string;
|
|
40
|
-
targetAsset?: string;
|
|
41
|
-
targetChain?: string;
|
|
42
|
-
}): boolean;
|
|
43
45
|
export declare function useCheckoutDirectExecution(): UseCheckoutDirectExecutionReturn;
|
|
44
46
|
export {};
|
|
@@ -2,6 +2,9 @@ import { PaymentMethod } from '~/domains/paymentMethods';
|
|
|
2
2
|
/**
|
|
3
3
|
* https://linear.app/funxyz/issue/ENG-1154/update-dydx-and-polymarkets-time-estimate
|
|
4
4
|
* https://linear.app/funxyz/issue/PE-775/sdkconnectwith-next-pm-requests
|
|
5
|
+
* @param originalTimeEstimationMs time estimation in milliseconds
|
|
6
|
+
* @param paymentMethod payment method
|
|
7
|
+
* @param bypassFlag whether to ignore flag value and return the original time estimation fallback even if flag is defined
|
|
5
8
|
* @returns time estimation in seconds
|
|
6
9
|
*/
|
|
7
10
|
export declare function useCheckoutTimeEstimate(originalTimeEstimationMs: number | undefined, paymentMethod?: PaymentMethod, //TODO: questionable
|
package/dist/index.css
CHANGED
|
@@ -8411,6 +8411,77 @@
|
|
|
8411
8411
|
z-index: -1;
|
|
8412
8412
|
}
|
|
8413
8413
|
|
|
8414
|
+
/* vanilla-extract-css-ns:src/components/FunCountdown/FunCountdown.css.ts.vanilla.css?source=Ll8xdDBiYzExMSB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIGxlZnQ6IDA7CiAgdG9wOiAwOwogIGJvdHRvbTogMDsKICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpOwp9Ci5fMXQwYmMxMTMgewogIHBvc2l0aW9uOiBhYnNvbHV0ZTsKICBsZWZ0OiAwOwogIHRvcDogMDsKICBib3R0b206IDA7CiAgdHJhbnNmb3JtOiByb3RhdGUoLTkwZGVnKTsKfQ== */
|
|
8415
|
+
[data-rk] ._1t0bc111 {
|
|
8416
|
+
position: absolute;
|
|
8417
|
+
left: 0;
|
|
8418
|
+
top: 0;
|
|
8419
|
+
bottom: 0;
|
|
8420
|
+
transform: rotate(-90deg);
|
|
8421
|
+
}
|
|
8422
|
+
[data-rk] ._1t0bc113 {
|
|
8423
|
+
position: absolute;
|
|
8424
|
+
left: 0;
|
|
8425
|
+
top: 0;
|
|
8426
|
+
bottom: 0;
|
|
8427
|
+
transform: rotate(-90deg);
|
|
8428
|
+
}
|
|
8429
|
+
|
|
8430
|
+
/* vanilla-extract-css-ns:src/components/FunSkeletonLoader/FunSkeletonLoader.css.ts.vanilla.css?source=QGtleWZyYW1lcyBkajB4NjAwIHsKICAwJSB7CiAgICBvcGFjaXR5OiAxOwogIH0KICAxMDAlIHsKICAgIG9wYWNpdHk6IDAuNTsKICB9Cn0KLmRqMHg2MDIgewogIGFuaW1hdGlvbi1kaXJlY3Rpb246IGFsdGVybmF0ZTsKICBhbmltYXRpb24tZHVyYXRpb246IDcwMG1zOwogIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjsKICBhbmltYXRpb24taXRlcmF0aW9uLWNvdW50OiBpbmZpbml0ZTsKICBhbmltYXRpb24tZmlsbC1tb2RlOiBmb3J3YXJkczsKICBhbmltYXRpb24tbmFtZTogZGoweDYwMDsKfQouZGoweDYwMyB7CiAgZmxleDogMCAwIGF1dG87Cn0= */
|
|
8431
|
+
@keyframes dj0x600 {
|
|
8432
|
+
0% {
|
|
8433
|
+
opacity: 1;
|
|
8434
|
+
}
|
|
8435
|
+
100% {
|
|
8436
|
+
opacity: 0.5;
|
|
8437
|
+
}
|
|
8438
|
+
}
|
|
8439
|
+
[data-rk] .dj0x602 {
|
|
8440
|
+
animation-direction: alternate;
|
|
8441
|
+
animation-duration: 700ms;
|
|
8442
|
+
animation-timing-function: linear;
|
|
8443
|
+
animation-iteration-count: infinite;
|
|
8444
|
+
animation-fill-mode: forwards;
|
|
8445
|
+
animation-name: dj0x600;
|
|
8446
|
+
}
|
|
8447
|
+
[data-rk] .dj0x603 {
|
|
8448
|
+
flex: 0 0 auto;
|
|
8449
|
+
}
|
|
8450
|
+
|
|
8451
|
+
/* vanilla-extract-css-ns:src/components/FunCheckoutHistory/FunCheckoutStatus.css.ts.vanilla.css?source=Ll8xMDFhdWptMCB7CiAgbWFyZ2luLXRvcDogLTYwcHg7CiAgbWFyZ2luLWJvdHRvbTogLTYwcHg7CiAgZGlzcGxheTogZmxleDsKICBhbGlnbi1pdGVtczogY2VudGVyOwogIGp1c3RpZnktY29udGVudDogY2VudGVyOwogIGhlaWdodDogMTk2cHg7CiAgd2lkdGg6IDEwMCU7CiAgcG9zaXRpb246IHJlbGF0aXZlOwogIGJhY2tncm91bmQ6IHJhZGlhbC1ncmFkaWVudChlbGxpcHNlIGNsb3Nlc3Qtc2lkZSwgcmdiYSgyMTEsMjExLDIxMSwwLjE4KSAwJSwgcmdiYSgxNzYsMTc2LDE3NiwwLjA0KSA4MCUsIHRyYW5zcGFyZW50KTsKfQouXzEwMWF1am0xIHsKICBtYXJnaW4tdG9wOiAtNjBweDsKICBtYXJnaW4tYm90dG9tOiAtNjBweDsKICBkaXNwbGF5OiBmbGV4OwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7CiAgaGVpZ2h0OiAxOTZweDsKICB3aWR0aDogMTAwJTsKICBwb3NpdGlvbjogcmVsYXRpdmU7Cn0KLl8xMDFhdWptMiB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIHRvcDogMDsKICBsZWZ0OiBhdXRvOwogIHJpZ2h0OiBhdXRvOwp9 */
|
|
8452
|
+
[data-rk] ._101aujm0 {
|
|
8453
|
+
margin-top: -60px;
|
|
8454
|
+
margin-bottom: -60px;
|
|
8455
|
+
display: flex;
|
|
8456
|
+
align-items: center;
|
|
8457
|
+
justify-content: center;
|
|
8458
|
+
height: 196px;
|
|
8459
|
+
width: 100%;
|
|
8460
|
+
position: relative;
|
|
8461
|
+
background:
|
|
8462
|
+
radial-gradient(
|
|
8463
|
+
ellipse closest-side,
|
|
8464
|
+
rgba(211, 211, 211, 0.18) 0%,
|
|
8465
|
+
rgba(176, 176, 176, 0.04) 80%,
|
|
8466
|
+
transparent);
|
|
8467
|
+
}
|
|
8468
|
+
[data-rk] ._101aujm1 {
|
|
8469
|
+
margin-top: -60px;
|
|
8470
|
+
margin-bottom: -60px;
|
|
8471
|
+
display: flex;
|
|
8472
|
+
align-items: center;
|
|
8473
|
+
justify-content: center;
|
|
8474
|
+
height: 196px;
|
|
8475
|
+
width: 100%;
|
|
8476
|
+
position: relative;
|
|
8477
|
+
}
|
|
8478
|
+
[data-rk] ._101aujm2 {
|
|
8479
|
+
position: absolute;
|
|
8480
|
+
top: 0;
|
|
8481
|
+
left: auto;
|
|
8482
|
+
right: auto;
|
|
8483
|
+
}
|
|
8484
|
+
|
|
8414
8485
|
/* vanilla-extract-css-ns:src/components/FunButton/FunButton.css.ts.vanilla.css?source=Ll8xdHl4NW51MCB7CiAgdHJhbnNpdGlvbjogYWxsIDE1MG1zIGN1YmljLWJlemllcigwLjMsIDAsIDAuMDYsIDEpOwp9Ci5fMXR5eDVudTE6YWN0aXZlIHsKICB0cmFuc2Zvcm06IHNjYWxlKDAuOTgpOwp9Ci5fMXR5eDVudTMgewogIHRleHQtZGVjb3JhdGlvbi1jb2xvcjogdHJhbnNwYXJlbnQ7CiAgdGV4dC1kZWNvcmF0aW9uLWxpbmU6IHVuZGVybGluZTsKICB0cmFuc2l0aW9uOiBhbGwgMTUwbXMgY3ViaWMtYmV6aWVyKDAuMywgMCwgMC4wNiwgMSk7Cn0KLl8xdHl4NW51Mzpob3ZlciB7CiAgdGV4dC1kZWNvcmF0aW9uLWNvbG9yOiBpbmhlcml0Owp9Ci5fMXR5eDVudTM6Zm9jdXMtdmlzaWJsZSB7CiAgb3V0bGluZS1jb2xvcjogdmFyKC0tcmstY29sb3JzLXNlY29uZGFyeVRleHQpOwp9Ci5fMXR5eDVudTUgewogIHRleHQtZGVjb3JhdGlvbi1saW5lOiB1bmRlcmxpbmU7Cn0KLl8xdHl4NW51NTpmb2N1cy12aXNpYmxlIHsKICBvdXRsaW5lLWNvbG9yOiB2YXIoLS1yay1jb2xvcnMtc2Vjb25kYXJ5VGV4dCk7Cn0KLl8xdHl4NW51NiB7CiAgY3Vyc29yOiBwb2ludGVyOwp9Ci5fMXR5eDVudTY6Zm9jdXMtdmlzaWJsZSB7CiAgb3V0bGluZTogdmFyKC0tcmstY29sb3JzLWJ1dHRvbkZvY3VzZWRPdXRsaW5lKTsKfQouXzF0eXg1bnU3IHsKICBjdXJzb3I6IGRlZmF1bHQ7Cn0KLl8xdHl4NW51OCB7CiAgY3Vyc29yOiBub3QtYWxsb3dlZDsKfQ== */
|
|
8415
8486
|
[data-rk] ._1tyx5nu0 {
|
|
8416
8487
|
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
@@ -8491,27 +8562,6 @@
|
|
|
8491
8562
|
transform: translate(calc(-100% - 18px), 100%);
|
|
8492
8563
|
}
|
|
8493
8564
|
|
|
8494
|
-
/* vanilla-extract-css-ns:src/components/FunSkeletonLoader/FunSkeletonLoader.css.ts.vanilla.css?source=QGtleWZyYW1lcyBkajB4NjAwIHsKICAwJSB7CiAgICBvcGFjaXR5OiAxOwogIH0KICAxMDAlIHsKICAgIG9wYWNpdHk6IDAuNTsKICB9Cn0KLmRqMHg2MDIgewogIGFuaW1hdGlvbi1kaXJlY3Rpb246IGFsdGVybmF0ZTsKICBhbmltYXRpb24tZHVyYXRpb246IDcwMG1zOwogIGFuaW1hdGlvbi10aW1pbmctZnVuY3Rpb246IGxpbmVhcjsKICBhbmltYXRpb24taXRlcmF0aW9uLWNvdW50OiBpbmZpbml0ZTsKICBhbmltYXRpb24tZmlsbC1tb2RlOiBmb3J3YXJkczsKICBhbmltYXRpb24tbmFtZTogZGoweDYwMDsKfQouZGoweDYwMyB7CiAgZmxleDogMCAwIGF1dG87Cn0= */
|
|
8495
|
-
@keyframes dj0x600 {
|
|
8496
|
-
0% {
|
|
8497
|
-
opacity: 1;
|
|
8498
|
-
}
|
|
8499
|
-
100% {
|
|
8500
|
-
opacity: 0.5;
|
|
8501
|
-
}
|
|
8502
|
-
}
|
|
8503
|
-
[data-rk] .dj0x602 {
|
|
8504
|
-
animation-direction: alternate;
|
|
8505
|
-
animation-duration: 700ms;
|
|
8506
|
-
animation-timing-function: linear;
|
|
8507
|
-
animation-iteration-count: infinite;
|
|
8508
|
-
animation-fill-mode: forwards;
|
|
8509
|
-
animation-name: dj0x600;
|
|
8510
|
-
}
|
|
8511
|
-
[data-rk] .dj0x603 {
|
|
8512
|
-
flex: 0 0 auto;
|
|
8513
|
-
}
|
|
8514
|
-
|
|
8515
8565
|
/* vanilla-extract-css-ns:src/components/FunInput/FunInput.css.ts.vanilla.css?source=Lnp1ZTBpNjAgewogIHRyYW5zaXRpb246IGFsbCAxNTBtcyBjdWJpYy1iZXppZXIoMC4zLCAwLCAwLjA2LCAxKTsKfQouenVlMGk2MTo6LXdlYmtpdC1vdXRlci1zcGluLWJ1dHRvbiwgLnp1ZTBpNjE6Oi13ZWJraXQtaW5uZXItc3Bpbi1idXR0b24gewogIG1hcmdpbjogMDsKICAtd2Via2l0LWFwcGVhcmFuY2U6IG5vbmU7Cn0KLnp1ZTBpNjFbdHlwZT1udW1iZXJdIHsKICAtbW96LWFwcGVhcmFuY2U6IG5vbmU7Cn0KLnp1ZTBpNjMgewogIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50OwogIGJvcmRlcjogbm9uZTsKICBvdXRsaW5lOiBub25lOwogIHdpZHRoOiAxMDAlOwogIHRyYW5zaXRpb246IGFsbCAxNTBtcyBjdWJpYy1iZXppZXIoMC4zLCAwLCAwLjA2LCAxKTsKfQouenVlMGk2Mzo6cGxhY2Vob2xkZXIgewogIGNvbG9yOiB2YXIoLS1yay1jb2xvcnMtc2Vjb25kYXJ5VGV4dCk7Cn0KLnp1ZTBpNjUgewogIGJhY2tncm91bmQtY29sb3I6IHRyYW5zcGFyZW50OwogIGJvcmRlcjogbm9uZTsKICBvdXRsaW5lOiBub25lOwogIHdpZHRoOiAxMDAlOwogIHRyYW5zaXRpb246IGFsbCAxNTBtcyBjdWJpYy1iZXppZXIoMC4zLCAwLCAwLjA2LCAxKTsKICBvcGFjaXR5OiAwLjU7Cn0KLnp1ZTBpNjU6OnBsYWNlaG9sZGVyIHsKICBjb2xvcjogdmFyKC0tcmstY29sb3JzLWFjdGlvbkNvbG9yRGlzYWJsZWQpOwp9Ci56dWUwaTY3IHsKICBiYWNrZ3JvdW5kLWNvbG9yOiB0cmFuc3BhcmVudDsKICBib3JkZXI6IG5vbmU7CiAgb3V0bGluZTogbm9uZTsKICB3aWR0aDogMTAwJTsKICB0cmFuc2l0aW9uOiBhbGwgMTUwbXMgY3ViaWMtYmV6aWVyKDAuMywgMCwgMC4wNiwgMSk7Cn0KLnp1ZTBpNjc6OnBsYWNlaG9sZGVyIHsKICBjb2xvcjogdmFyKC0tcmstY29sb3JzLXNlY29uZGFyeVRleHQpOwp9 */
|
|
8516
8566
|
[data-rk] .zue0i60 {
|
|
8517
8567
|
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
@@ -8619,13 +8669,13 @@
|
|
|
8619
8669
|
opacity: 0.5;
|
|
8620
8670
|
}
|
|
8621
8671
|
|
|
8622
|
-
/* vanilla-extract-css-ns:src/components/FunBadge/FunBadge.css.ts.vanilla.css?source=
|
|
8672
|
+
/* vanilla-extract-css-ns:src/components/FunBadge/FunBadge.css.ts.vanilla.css?source=QGtleWZyYW1lcyBiYzJ1enkwIHsKICAwJSB7CiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTIwMCUpOwogIH0KICAzNSUsIDEwMCUgewogICAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKDIwMCUpOwogIH0KfQouYmMydXp5MSB7CiAgZGlzcGxheTogZmxleDsKICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjsKICBhbGlnbi1pdGVtczogY2VudGVyOwogIHdpZHRoOiBmaXQtY29udGVudDsKICB3aGl0ZS1zcGFjZTogbm93cmFwOwp9Ci5iYzJ1enkyIHsKICBwb3NpdGlvbjogcmVsYXRpdmU7CiAgb3ZlcmZsb3c6IGhpZGRlbjsKfQouYmMydXp5Mjo6YmVmb3JlIHsKICBjb250ZW50OiAiIjsKICBwb3NpdGlvbjogYWJzb2x1dGU7CiAgaW5zZXQ6IDA7CiAgZGlzcGxheTogYmxvY2s7CiAgd2lkdGg6IDEwMCU7CiAgaGVpZ2h0OiAxMDAlOwogIGJhY2tncm91bmQ6IGxpbmVhci1ncmFkaWVudCg5MGRlZywgdHJhbnNwYXJlbnQgMzAlLCB3aGl0ZSA0NSUsIHdoaXRlIDU1JSwgdHJhbnNwYXJlbnQgNzAlKSBuby1yZXBlYXQ7CiAgdHJhbnNmb3JtOiB0cmFuc2xhdGVYKC0yMDAlKTsKICBiYWNrZ3JvdW5kLXNpemU6IDIwMCUgMTAwJTsKICBvcGFjaXR5OiAwLjk7CiAgZmlsdGVyOiBibHVyKDJweCk7CiAgYW5pbWF0aW9uOiBiYzJ1enkwIDVzIGxpbmVhciBpbmZpbml0ZSAxczsKICBtaXgtYmxlbmQtbW9kZTogc29mdC1saWdodDsKfQ== */
|
|
8623
8673
|
@keyframes bc2uzy0 {
|
|
8624
8674
|
0% {
|
|
8625
|
-
transform: translateX(-
|
|
8675
|
+
transform: translateX(-200%);
|
|
8626
8676
|
}
|
|
8627
8677
|
35%, 100% {
|
|
8628
|
-
transform: translateX(
|
|
8678
|
+
transform: translateX(200%);
|
|
8629
8679
|
}
|
|
8630
8680
|
}
|
|
8631
8681
|
[data-rk] .bc2uzy1 {
|
|
@@ -8644,18 +8694,22 @@
|
|
|
8644
8694
|
content: "";
|
|
8645
8695
|
position: absolute;
|
|
8646
8696
|
inset: 0;
|
|
8647
|
-
|
|
8697
|
+
display: block;
|
|
8698
|
+
width: 100%;
|
|
8699
|
+
height: 100%;
|
|
8648
8700
|
background:
|
|
8649
8701
|
linear-gradient(
|
|
8650
8702
|
90deg,
|
|
8651
8703
|
transparent 30%,
|
|
8652
8704
|
white 45%,
|
|
8653
8705
|
white 55%,
|
|
8654
|
-
transparent 70%);
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
|
|
8658
|
-
|
|
8706
|
+
transparent 70%) no-repeat;
|
|
8707
|
+
transform: translateX(-200%);
|
|
8708
|
+
background-size: 200% 100%;
|
|
8709
|
+
opacity: 0.9;
|
|
8710
|
+
filter: blur(2px);
|
|
8711
|
+
animation: bc2uzy0 5s linear infinite 1s;
|
|
8712
|
+
mix-blend-mode: soft-light;
|
|
8659
8713
|
}
|
|
8660
8714
|
|
|
8661
8715
|
/* vanilla-extract-css-ns:src/components/FunInfoBanner/InfoBanner.css.ts.vanilla.css?source=LnZ5ZWRpeDAgewogICYgPiBhIHsKICAgIGNvbG9yOiB2YXIoLS1yay1jb2xvcnMtcHJpbWFyeVRleHQpOwogIH0KICAmID4gYTpmb2N1cy12aXNpYmxlIHsKICAgIG91dGxpbmUtY29sb3I6IHZhcigtLXJrLWNvbG9ycy1zZWNvbmRhcnlUZXh0KTsKICB9Cn0KLnZ5ZWRpeDIgewogIGFsaWduLXNlbGY6IGZsZXgtc3RhcnQ7CiAgZmxleC1zaHJpbms6IDA7Cn0= */
|
|
@@ -8704,56 +8758,6 @@
|
|
|
8704
8758
|
opacity: 0;
|
|
8705
8759
|
}
|
|
8706
8760
|
|
|
8707
|
-
/* vanilla-extract-css-ns:src/components/FunCountdown/FunCountdown.css.ts.vanilla.css?source=Ll8xdDBiYzExMSB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIGxlZnQ6IDA7CiAgdG9wOiAwOwogIGJvdHRvbTogMDsKICB0cmFuc2Zvcm06IHJvdGF0ZSgtOTBkZWcpOwp9Ci5fMXQwYmMxMTMgewogIHBvc2l0aW9uOiBhYnNvbHV0ZTsKICBsZWZ0OiAwOwogIHRvcDogMDsKICBib3R0b206IDA7CiAgdHJhbnNmb3JtOiByb3RhdGUoLTkwZGVnKTsKfQ== */
|
|
8708
|
-
[data-rk] ._1t0bc111 {
|
|
8709
|
-
position: absolute;
|
|
8710
|
-
left: 0;
|
|
8711
|
-
top: 0;
|
|
8712
|
-
bottom: 0;
|
|
8713
|
-
transform: rotate(-90deg);
|
|
8714
|
-
}
|
|
8715
|
-
[data-rk] ._1t0bc113 {
|
|
8716
|
-
position: absolute;
|
|
8717
|
-
left: 0;
|
|
8718
|
-
top: 0;
|
|
8719
|
-
bottom: 0;
|
|
8720
|
-
transform: rotate(-90deg);
|
|
8721
|
-
}
|
|
8722
|
-
|
|
8723
|
-
/* vanilla-extract-css-ns:src/components/FunCheckoutHistory/FunCheckoutStatus.css.ts.vanilla.css?source=Ll8xMDFhdWptMCB7CiAgbWFyZ2luLXRvcDogLTYwcHg7CiAgbWFyZ2luLWJvdHRvbTogLTYwcHg7CiAgZGlzcGxheTogZmxleDsKICBhbGlnbi1pdGVtczogY2VudGVyOwogIGp1c3RpZnktY29udGVudDogY2VudGVyOwogIGhlaWdodDogMTk2cHg7CiAgd2lkdGg6IDEwMCU7CiAgcG9zaXRpb246IHJlbGF0aXZlOwogIGJhY2tncm91bmQ6IHJhZGlhbC1ncmFkaWVudChlbGxpcHNlIGNsb3Nlc3Qtc2lkZSwgcmdiYSgyMTEsMjExLDIxMSwwLjE4KSAwJSwgcmdiYSgxNzYsMTc2LDE3NiwwLjA0KSA4MCUsIHRyYW5zcGFyZW50KTsKfQouXzEwMWF1am0xIHsKICBtYXJnaW4tdG9wOiAtNjBweDsKICBtYXJnaW4tYm90dG9tOiAtNjBweDsKICBkaXNwbGF5OiBmbGV4OwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7CiAgaGVpZ2h0OiAxOTZweDsKICB3aWR0aDogMTAwJTsKICBwb3NpdGlvbjogcmVsYXRpdmU7Cn0KLl8xMDFhdWptMiB7CiAgcG9zaXRpb246IGFic29sdXRlOwogIHRvcDogMDsKICBsZWZ0OiBhdXRvOwogIHJpZ2h0OiBhdXRvOwp9 */
|
|
8724
|
-
[data-rk] ._101aujm0 {
|
|
8725
|
-
margin-top: -60px;
|
|
8726
|
-
margin-bottom: -60px;
|
|
8727
|
-
display: flex;
|
|
8728
|
-
align-items: center;
|
|
8729
|
-
justify-content: center;
|
|
8730
|
-
height: 196px;
|
|
8731
|
-
width: 100%;
|
|
8732
|
-
position: relative;
|
|
8733
|
-
background:
|
|
8734
|
-
radial-gradient(
|
|
8735
|
-
ellipse closest-side,
|
|
8736
|
-
rgba(211, 211, 211, 0.18) 0%,
|
|
8737
|
-
rgba(176, 176, 176, 0.04) 80%,
|
|
8738
|
-
transparent);
|
|
8739
|
-
}
|
|
8740
|
-
[data-rk] ._101aujm1 {
|
|
8741
|
-
margin-top: -60px;
|
|
8742
|
-
margin-bottom: -60px;
|
|
8743
|
-
display: flex;
|
|
8744
|
-
align-items: center;
|
|
8745
|
-
justify-content: center;
|
|
8746
|
-
height: 196px;
|
|
8747
|
-
width: 100%;
|
|
8748
|
-
position: relative;
|
|
8749
|
-
}
|
|
8750
|
-
[data-rk] ._101aujm2 {
|
|
8751
|
-
position: absolute;
|
|
8752
|
-
top: 0;
|
|
8753
|
-
left: auto;
|
|
8754
|
-
right: auto;
|
|
8755
|
-
}
|
|
8756
|
-
|
|
8757
8761
|
/* vanilla-extract-css-ns:src/components/FunSelectBrokerage/FunBrokerageItem.css.ts.vanilla.css?source=LmFuMzR5OTAgewogIGRpc3BsYXk6IGZsZXg7CiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuOwogIGFsaWduLWl0ZW1zOiBjZW50ZXI7CiAgZmxleDogMTsKfQ== */
|
|
8758
8762
|
[data-rk] .an34y90 {
|
|
8759
8763
|
display: flex;
|
|
@@ -8944,6 +8948,152 @@
|
|
|
8944
8948
|
overflow-x: hidden;
|
|
8945
8949
|
}
|
|
8946
8950
|
|
|
8951
|
+
/* vanilla-extract-css-ns:src/components/CopyAddress/CopyInputDisplayedAddress.css.ts.vanilla.css?source=#H4sIAAAAAAAAE81WXavbOBB9v79iKFxIwDJyUqe97ktp90e0+7LI8jgRkSUjKfcmXe5/L5LtxLLTNN2FUgKx9TEzZ2aOj/Rxj6fasAYt/JPty28onhD+fQCgj+EB4AxTttamIdqIrVAF5PQR6OOHeLXoXiVz+HVBl2C0Yw6/LGiF2yVYziQusmVnpFvGhTsVkPnx6wNAlg/h5msbOluj6dvOUy2kQ1NAKQ9msWqPy7ND+r8S2NDHSwpkPU4i3UyzoFewbM5YXh8+zmtc9zVORplfx+kTuYWURFDvQerL835e0+zu0v0M0i92//UhHcqyDnH1wUmhkHAttSngmZkFIWbfjS1h3AmtPvvBX8KyUmIVPJfaVGhIqZ3TDZFYO2JYJQ525MJPCMK1Usjdp4NzWl2xNWK7+wXjkLrwoApgUkKW08YCP5SCkxK/CTQLmq4ToAnQlG4S8JUYZf02ZE0I3yHfE8G1IhVKdiogzXL7YbbG7I7ourboCt+L2YZubfBBg4dWDwgNSubEM/rZF1G5XQHZpj364Q594pdxJWwbfGyNqIIXyTgS4bCxBXBUDk2cSVGUWGvTSQjXyqFyBbx5E0NgpdXy4AIEp9sCVl0837PzoMf2FEPrh32/hhathtkjsTtW6ZcChLLogIZflubtEfjBGFQuEGfatjORIV3lNumC9+9d6H4QBQ5zsauh6h1pph2d0IU40Qi1JfVB8Q7HhDSrPFAmECenCWQppctpxVnt0NxfcNMV8lwyz/jfV3QuRUta5oO0Wp62Wnmp9J9GkJ3h6f8S76R/btpj4v9g0NW5Mp3tftbbXn/+gObloWsjER3pdrTNFyzstc7oPQYJGBRgDvaiD6GaAffIkBnjk8xoV+xk0JB+S0+BVZpPCzkLDul6pnM/yPquMo+FKy7B5opEjmVwdUUGI/27IZDpysaxIhEbJHLt6RyJ5Hlm8l2862avnY0Lkr7LPZW753Ia9/Ipz0jRFXF8ko9M319srpJ+dhiNmkRnTZqA/nsxoe3TFOF565fFirbH5Q1bFmyvn0bn40aocP7XEo+RcXnDuEVjW+R+GLg9aQKx7iSxgNagRfOMZF1FrnlwPUVQSs333g9TomGBu4o1OFA3nk1AaYXLeHtE9cl0AtROtx8M63KjgzxdFv+j4Ixd1EJK0ugKC6i1eWGmshGtpjj7hdmVpfohBe65kd6+Vt64J9DLLYHehzvQ7zsc4XsT5QwAAA== */
|
|
8952
|
+
@keyframes _1kbzei9e {
|
|
8953
|
+
0% {
|
|
8954
|
+
transform-origin: 50% 0%;
|
|
8955
|
+
transform: translateY(0) rotateX(0deg) scale(1);
|
|
8956
|
+
opacity: 1;
|
|
8957
|
+
}
|
|
8958
|
+
15% {
|
|
8959
|
+
opacity: 1;
|
|
8960
|
+
}
|
|
8961
|
+
60% {
|
|
8962
|
+
opacity: 0.4;
|
|
8963
|
+
filter: blur(2px);
|
|
8964
|
+
}
|
|
8965
|
+
100% {
|
|
8966
|
+
transform-origin: 50% 0%;
|
|
8967
|
+
transform: translateY(60%) rotateX(-30deg) scale(.6);
|
|
8968
|
+
opacity: 0;
|
|
8969
|
+
filter: blur(6px);
|
|
8970
|
+
}
|
|
8971
|
+
}
|
|
8972
|
+
@keyframes _1kbzei9f {
|
|
8973
|
+
0%, 15% {
|
|
8974
|
+
transform-origin: 50% 100%;
|
|
8975
|
+
transform: translateY(-60%) rotateX(30deg) scale(.6);
|
|
8976
|
+
opacity: 0;
|
|
8977
|
+
}
|
|
8978
|
+
80% {
|
|
8979
|
+
opacity: 1;
|
|
8980
|
+
}
|
|
8981
|
+
100% {
|
|
8982
|
+
transform-origin: 50% 100%;
|
|
8983
|
+
transform: translateY(0) rotateX(0deg) scale(1);
|
|
8984
|
+
opacity: 1;
|
|
8985
|
+
}
|
|
8986
|
+
}
|
|
8987
|
+
[data-rk] ._1kbzei93 {
|
|
8988
|
+
outline-color: var(--rk-colors-actionColorDisabled);
|
|
8989
|
+
border-bottom-left-radius: var(--rk-radii-connectButton);
|
|
8990
|
+
border-bottom-right-radius: var(--rk-radii-connectButton);
|
|
8991
|
+
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
8992
|
+
}
|
|
8993
|
+
[data-rk] ._1kbzei94 {
|
|
8994
|
+
--check-icon-delay: .15s;
|
|
8995
|
+
--check-icon-dash-offset: 100;
|
|
8996
|
+
--check-icon-offset-delay: 0s;
|
|
8997
|
+
position: relative;
|
|
8998
|
+
width: 16px;
|
|
8999
|
+
height: 16px;
|
|
9000
|
+
display: grid;
|
|
9001
|
+
place-items: center;
|
|
9002
|
+
}
|
|
9003
|
+
[data-rk] ._1kbzei94::before {
|
|
9004
|
+
content: "";
|
|
9005
|
+
position: absolute;
|
|
9006
|
+
top: 2px;
|
|
9007
|
+
left: 2px;
|
|
9008
|
+
width: 9px;
|
|
9009
|
+
height: 9px;
|
|
9010
|
+
border-radius: 2px;
|
|
9011
|
+
box-shadow: inset 0 0 0 1.5px currentColor;
|
|
9012
|
+
transition:
|
|
9013
|
+
transform .25s,
|
|
9014
|
+
width .25s,
|
|
9015
|
+
height .25s,
|
|
9016
|
+
border-radius .25s;
|
|
9017
|
+
transition-delay: var(--check-icon-delay);
|
|
9018
|
+
transition-timing-function: cubic-bezier(0.25, 0.00, 0.50, 1.00);
|
|
9019
|
+
}
|
|
9020
|
+
[data-rk] ._1kbzei94::after {
|
|
9021
|
+
content: "";
|
|
9022
|
+
position: absolute;
|
|
9023
|
+
right: 2px;
|
|
9024
|
+
bottom: 2px;
|
|
9025
|
+
width: 9px;
|
|
9026
|
+
height: 9px;
|
|
9027
|
+
border-radius: 2px;
|
|
9028
|
+
box-shadow: inset 0 0 0 1.5px currentColor;
|
|
9029
|
+
clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%, 0 6px, 6px 6px);
|
|
9030
|
+
transform-origin: 100% 100%;
|
|
9031
|
+
transition: transform .25s, opacity .25s;
|
|
9032
|
+
transition-delay: var(--check-icon-delay);
|
|
9033
|
+
transition-timing-function: cubic-bezier(0.25, 0.00, 0.50, 1.00);
|
|
9034
|
+
}
|
|
9035
|
+
[data-rk] ._1kbzei95 {
|
|
9036
|
+
transform: scale(.6);
|
|
9037
|
+
}
|
|
9038
|
+
[data-rk] ._1kbzei95 path {
|
|
9039
|
+
stroke-dashoffset: var(--check-icon-dash-offset, 100);
|
|
9040
|
+
stroke-dasharray:
|
|
9041
|
+
100,
|
|
9042
|
+
100,
|
|
9043
|
+
100;
|
|
9044
|
+
stroke-width: 2.5;
|
|
9045
|
+
transition: stroke-dashoffset .3s cubic-bezier(0.25, 0.00, 0.50, 1.00);
|
|
9046
|
+
transition-delay: var(--check-icon-offset-delay);
|
|
9047
|
+
}
|
|
9048
|
+
[data-rk] ._1kbzei96 {
|
|
9049
|
+
--check-icon-dash-offset: 200;
|
|
9050
|
+
--check-icon-delay: 0s;
|
|
9051
|
+
--check-icon-offset-delay: .2s;
|
|
9052
|
+
}
|
|
9053
|
+
[data-rk] ._1kbzei96::before {
|
|
9054
|
+
width: 13.5px;
|
|
9055
|
+
height: 13.5px;
|
|
9056
|
+
border-radius: 7px;
|
|
9057
|
+
transform: translate(-.75px, -.75px);
|
|
9058
|
+
}
|
|
9059
|
+
[data-rk] ._1kbzei96::after {
|
|
9060
|
+
transform: scale(0);
|
|
9061
|
+
opacity: 0;
|
|
9062
|
+
}
|
|
9063
|
+
[data-rk] ._1kbzei98 {
|
|
9064
|
+
transition: transform .25s cubic-bezier(0.35, 0.00, 0.00, 1.00);
|
|
9065
|
+
transform: translateZ(0);
|
|
9066
|
+
}
|
|
9067
|
+
[data-rk] ._1kbzei99 {
|
|
9068
|
+
transform: translateX(20px) translateZ(0);
|
|
9069
|
+
}
|
|
9070
|
+
[data-rk] ._1kbzei9a {
|
|
9071
|
+
position: relative;
|
|
9072
|
+
display: inline-flex;
|
|
9073
|
+
}
|
|
9074
|
+
[data-rk] ._1kbzei9b {
|
|
9075
|
+
position: relative;
|
|
9076
|
+
perspective: 100px;
|
|
9077
|
+
transform-style: preserve-3d;
|
|
9078
|
+
}
|
|
9079
|
+
[data-rk] ._1kbzei9c {
|
|
9080
|
+
display: inline-block;
|
|
9081
|
+
animation-name: var(--animation-name, none);
|
|
9082
|
+
animation-delay: var(--animation-delay, 0s);
|
|
9083
|
+
animation-duration: 0.25s;
|
|
9084
|
+
animation-timing-function: cubic-bezier(0.25, 0.00, 0.50, 1.00);
|
|
9085
|
+
animation-fill-mode: forwards;
|
|
9086
|
+
opacity: var(--animation-opacity, 1);
|
|
9087
|
+
}
|
|
9088
|
+
[data-rk] ._1kbzei9d {
|
|
9089
|
+
transform: translateY(-60%) rotateX(30deg) scale(.6);
|
|
9090
|
+
transform-origin: 50% 100%;
|
|
9091
|
+
position: absolute;
|
|
9092
|
+
top: 0;
|
|
9093
|
+
left: 0;
|
|
9094
|
+
opacity: var(--animation-opacity, 0);
|
|
9095
|
+
}
|
|
9096
|
+
|
|
8947
9097
|
/* vanilla-extract-css-ns:src/components/FunPayments/FunPaymentMoonpayType.css.ts.vanilla.css?source=Ll8xa21wZXlmMCB7CiAgaGVpZ2h0OiB1bnNldCAhaW1wb3J0YW50OwogIHdpZHRoOiB1bnNldCAhaW1wb3J0YW50OwogIGZsZXg6IDEgIWltcG9ydGFudDsKfQouXzFrbXBleWYwIGlmcmFtZSB7CiAgYm9yZGVyOiBub25lOwp9Ci5fMWttcGV5ZjEgewogIGRpc3BsYXk6IGZsZXg7CiAgZmxleDogMTsKfQ== */
|
|
8948
9098
|
[data-rk] ._1kmpeyf0 {
|
|
8949
9099
|
height: unset !important;
|
|
@@ -8958,14 +9108,6 @@
|
|
|
8958
9108
|
flex: 1;
|
|
8959
9109
|
}
|
|
8960
9110
|
|
|
8961
|
-
/* vanilla-extract-css-ns:src/components/CopyAddress/CopyInputDisplayedAddress.css.ts.vanilla.css?source=Ll8xa2J6ZWk5MyB7CiAgb3V0bGluZS1jb2xvcjogdmFyKC0tcmstY29sb3JzLWFjdGlvbkNvbG9yRGlzYWJsZWQpOwogIGJvcmRlci1ib3R0b20tbGVmdC1yYWRpdXM6IHZhcigtLXJrLXJhZGlpLWNvbm5lY3RCdXR0b24pOwogIGJvcmRlci1ib3R0b20tcmlnaHQtcmFkaXVzOiB2YXIoLS1yay1yYWRpaS1jb25uZWN0QnV0dG9uKTsKICB0cmFuc2l0aW9uOiBhbGwgMTUwbXMgY3ViaWMtYmV6aWVyKDAuMywgMCwgMC4wNiwgMSk7Cn0= */
|
|
8962
|
-
[data-rk] ._1kbzei93 {
|
|
8963
|
-
outline-color: var(--rk-colors-actionColorDisabled);
|
|
8964
|
-
border-bottom-left-radius: var(--rk-radii-connectButton);
|
|
8965
|
-
border-bottom-right-radius: var(--rk-radii-connectButton);
|
|
8966
|
-
transition: all 150ms cubic-bezier(0.3, 0, 0.06, 1);
|
|
8967
|
-
}
|
|
8968
|
-
|
|
8969
9111
|
/* vanilla-extract-css-ns:src/components/FunFeatureList/FunFeatureList.css.ts.vanilla.css?source=Ll8xMDQ1cXI3MSB7CiAgb3V0bGluZS1jb2xvcjogdmFyKC0tcmstY29sb3JzLWFjdGlvbkNvbG9yRGlzYWJsZWQpOwogIHRyYW5zaXRpb246IGFsbCAxNTBtcyBjdWJpYy1iZXppZXIoMC4zLCAwLCAwLjA2LCAxKTsKfQ== */
|
|
8970
9112
|
[data-rk] ._1045qr71 {
|
|
8971
9113
|
outline-color: var(--rk-colors-actionColorDisabled);
|