@payburner/payburner-payid-client
Version:
Client library for PayID
13 lines (12 loc) • 504 B
TypeScript
import { Address } from "../interfaces/Address";
import * as jose from "node-jose";
export declare class ResolvedCryptoAddressWithThumbprint {
constructor(network: string, environment: string, address: Address, key: jose.JWK.Key, thumbprint: string, thumbprintHex: string, thumbprintMatrix: string[][]);
network: string;
environment: string;
address: Address;
publicKey: jose.JWK.Key;
thumbprint: string;
thumbprintHex: string;
thumbprintMatrix: string[][];
}