@airgap/astar
Version:
The @airgap/astar is an Astar implementation of the ICoinProtocol interface from @airgap/coinlib-core.
20 lines (19 loc) • 894 B
TypeScript
import { CurrencyUnit } from '@airgap/coinlib-core/protocols/ICoinProtocol';
import { ProtocolSymbols } from '@airgap/coinlib-core/utils/ProtocolSymbols';
import { SubstrateNetwork } from '@airgap/substrate/v0/protocol/SubstrateNetwork';
import { SubstrateProtocolOptions } from '@airgap/substrate/v0/protocol/SubstrateProtocolOptions';
import { AstarProtocol } from '../astar/AstarProtocol';
export declare class ShidenProtocol extends AstarProtocol {
readonly options: SubstrateProtocolOptions<SubstrateNetwork.ASTAR>;
symbol: string;
name: string;
marketSymbol: string;
feeSymbol: string;
identifier: ProtocolSymbols;
units: CurrencyUnit[];
standardDerivationPath: string;
addressIsCaseSensitive: boolean;
addressValidationPattern: string;
addressPlaceholder: string;
constructor(options?: SubstrateProtocolOptions<SubstrateNetwork.ASTAR>);
}