UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

17 lines (16 loc) 714 B
/// <reference types="react" /> import { TokenBalance } from '@dynamic-labs/sdk-api-core'; import { IUITransaction } from '@dynamic-labs/types'; export declare const SendBalanceTransactionCard: ({ transaction, currentToken, currencySymbol, valueRounded, transactionValue, isGasSponsored, gasFiatValue, totalGasFiatValue, currency, total, t, }: { transaction: IUITransaction; currentToken: TokenBalance | undefined; currencySymbol: string | undefined; valueRounded?: string; transactionValue: string | undefined; isGasSponsored: boolean; gasFiatValue: string; totalGasFiatValue: string; currency: string | undefined; total: bigint | undefined; t: any; }) => JSX.Element;