UNPKG

@ledgerhq/live-common

Version:
61 lines 2.9 kB
import type { AccountLike, SignedOperation } from "@ledgerhq/types-live"; import type { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; import type { Transaction as WalletAPITransaction } from "@ledgerhq/wallet-api-core"; import type { CustomHandlers as WalletAPICustomHandlers } from "@ledgerhq/wallet-api-server"; import type { Transaction } from "../generated/types"; import { LiveAppManifest } from "../platform/types"; export type { WalletAPITransaction, WalletAPICustomHandlers }; export type { Families as WalletAPIFamilies, Account as WalletAPIAccount, Currency as WalletAPICurrency, CryptoCurrency as WalletAPICryptoCurrency, ERC20TokenCurrency as WalletAPIERC20TokenCurrency, } from "@ledgerhq/wallet-api-core"; export type { WalletAPIServer } from "@ledgerhq/wallet-api-server"; export type { CurrencyType as WalletAPICurrencyType, TokenStandard as WalletAPITokenStandard, } from "@ledgerhq/wallet-api-core"; export type TranslatableString = { en: string; [locale: string]: string; }; export type AppPlatform = "ios" | "android" | "desktop"; export type AppBranch = "stable" | "experimental" | "soon" | "debug"; export type Visibility = "complete" | "searchable" | "deep"; export type AppManifest = LiveAppManifest; export type WalletAPISignedTransaction = SignedOperation; export type WalletAPISupportedCurrency = CryptoCurrency | TokenCurrency; export type GetWalletAPITransactionSignFlowInfos<T extends WalletAPITransaction, U extends Transaction> = ({ walletApiTransaction, account }: { walletApiTransaction: T; account: AccountLike; }) => { canEditFees: boolean; hasFeesProvided: boolean; liveTx: Partial<U>; }; export type AreFeesProvided<T extends WalletAPITransaction> = (tx: T) => boolean; export type ConvertToLiveTransaction<T extends WalletAPITransaction, U extends Transaction> = ({ walletApiTransaction, account, }: { walletApiTransaction: T; account: AccountLike; }) => Partial<U>; export type CacheBustedLiveApps = Record<string, number>; export type DiscoverDB = { recentlyUsed: RecentlyUsedIdDb[]; localLiveApp: LiveAppManifest[]; currentAccountHist: CurrentAccountHistIDb; cacheBustedLiveApps: CacheBustedLiveApps; }; export type RecentlyUsedIdDb = { id: string; usedAt: string; }; export type CurrentAccountHistIDb = Record<string, string>; export type DAppTrackingData = { type: string; currency: string; network: CryptoCurrency["id"]; }; export type BroadcastTrackingData = { isEmbeddedSwap?: boolean; partner?: string; sourceCurrency?: string; targetCurrency?: string; network?: CryptoCurrency["id"]; }; export type AccountIdFormat = "uuid" | "encoded"; /** @developer note uuid = wallet API id format, encoded = ledger wallet default format */ export type AccountIdFormatsResponse = Record<string, AccountIdFormat>; //# sourceMappingURL=types.d.ts.map