@reservoir0x/relay-kit-ui
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
21 lines • 612 B
TypeScript
import type { RelayTransaction } from './RelayTransaction.js';
import type { BridgeFee } from './BridgeFee.js';
import type { ChainVM } from '@reservoir0x/relay-sdk';
import type { FiatCurrency } from './Fiat.js';
type Token = {
chainId: number;
address: string;
name: string;
symbol: string;
decimals: number;
logoURI: string;
verified?: boolean;
};
type LinkedWallet = {
address: string;
vmType: ChainVM;
connector: string;
walletLogoUrl?: string;
};
export type { Token, RelayTransaction, BridgeFee, LinkedWallet, FiatCurrency };
//# sourceMappingURL=index.d.ts.map