/******************************************************************************** * Ledger Node JS API * (c) 2017-2018 Ledger * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ********************************************************************************/ import type Transport from "@ledgerhq/hw-transport"; /** * Polkadot API * * @example * import Polkadot from "@ledgerhq/hw-app-polkadot"; * const polkadot = new Polkadot(transport) */ export default class Polkadot { transport: Transport; constructor(transport: Transport); serializePath(path: Array, ss58?: number): Buffer; /** * @param {string} path * @param {number} ss58prefix * @param {boolean} showAddrInDevice - if true, user must valid if the address is correct on the device */ getAddress(path: string, ss58prefix?: number, showAddrInDevice?: boolean): Promise<{ pubKey: string; address: string; return_code: number; }>; foreach(arr: T[], callback: (arg0: T, arg1: number) => Promise): Promise; /** * Sign a payload * @param {*} path * @param {string} message - payload * @returns {string} - signed payload to be broadcasted */ sign(path: string, message: Uint8Array, metadata: string): Promise<{ signature: string | null; return_code: number; }>; } //# sourceMappingURL=Polkadot.d.ts.map