UNPKG

@airgap/astar

Version:

The @airgap/astar is an Astar implementation of the ICoinProtocol interface from @airgap/coinlib-core.

23 lines (22 loc) 1.06 kB
import { CurrencyUnit, FeeDefaults } from '@airgap/coinlib-core/protocols/ICoinProtocol'; import { ProtocolSymbols } from '@airgap/coinlib-core/utils/ProtocolSymbols'; import { SubstrateDelegateProtocol } from '@airgap/substrate/v0/protocol/SubstrateDelegateProtocol'; import { SubstrateNetwork } from '@airgap/substrate/v0/protocol/SubstrateNetwork'; import { SubstrateProtocolOptions } from '@airgap/substrate/v0/protocol/SubstrateProtocolOptions'; export declare class AstarProtocol extends SubstrateDelegateProtocol<SubstrateNetwork.ASTAR> { readonly options: SubstrateProtocolOptions<SubstrateNetwork.ASTAR>; symbol: string; name: string; marketSymbol: string; feeSymbol: string; decimals: number; feeDecimals: number; identifier: ProtocolSymbols; feeDefaults: FeeDefaults; units: CurrencyUnit[]; standardDerivationPath: string; addressIsCaseSensitive: boolean; addressValidationPattern: string; addressPlaceholder: string; constructor(options?: SubstrateProtocolOptions<SubstrateNetwork.ASTAR>); }