@ledgerhq/coin-tezos
Version:
27 lines • 798 B
TypeScript
import { type CurrencyConfig } from "@ledgerhq/coin-framework/config";
export type TezosConfig = {
baker: {
url: string;
};
explorer: {
url: string;
maxTxQuery: number;
};
node: {
url: string;
};
fees: {
minGasLimit: number;
minRevealGasLimit: number;
minStorageLimit: number;
minFees: number;
minEstimatedFees: number;
};
};
export type TezosCoinConfig = CurrencyConfig & TezosConfig;
declare const coinConfig: {
setCoinConfig: (config: import("@ledgerhq/coin-framework/config").CoinConfig<TezosCoinConfig>) => void;
getCoinConfig: (currency?: import("@ledgerhq/types-cryptoassets").CryptoCurrency) => TezosCoinConfig;
};
export default coinConfig;
//# sourceMappingURL=config.d.ts.map