@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
15 lines • 837 B
TypeScript
import { EthereumAccountAddress } from "./EthereumAccountAddress";
import { EthereumContractAddress } from "./EthereumContractAddress";
import { RegistryTokenId } from "./RegistryTokenId";
import { Signature } from "./Signature";
export declare class LazyMintingSignature {
registryAddress: EthereumContractAddress;
mintingSignature: Signature;
tokenId: RegistryTokenId;
ownerAccountAddress: EthereumAccountAddress;
registrationData: string;
registrarAddress: EthereumAccountAddress;
tokenClaimed: boolean;
constructor(registryAddress: EthereumContractAddress, mintingSignature: Signature, tokenId: RegistryTokenId, ownerAccountAddress: EthereumAccountAddress, registrationData: string, registrarAddress: EthereumAccountAddress, tokenClaimed: boolean);
}
//# sourceMappingURL=LazyMintingSignature.d.ts.map