import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.crypto.ed25519"; /** * PubKey is an ed25519 public key for handling Tendermint keys in SDK. * It's needed for Any serialization and SDK compatibility. * It must not be used in a non Tendermint key context because it doesn't implement * ADR-28. Nevertheless, you will like to use ed25519 in app user level * then you must create a new proto message and follow ADR-28 for Address construction. */ export interface PubKey { key: Uint8Array; } /** * PubKey is an ed25519 public key for handling Tendermint keys in SDK. * It's needed for Any serialization and SDK compatibility. * It must not be used in a non Tendermint key context because it doesn't implement * ADR-28. Nevertheless, you will like to use ed25519 in app user level * then you must create a new proto message and follow ADR-28 for Address construction. */ export interface PubKeySDKType { key: Uint8Array; } /** * Deprecated: PrivKey defines a ed25519 private key. * NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. */ export interface PrivKey { key: Uint8Array; } /** * Deprecated: PrivKey defines a ed25519 private key. * NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context. */ export interface PrivKeySDKType { key: Uint8Array; } export declare const PubKey: { typeUrl: string; encode(message: PubKey, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): PubKey; fromJSON(object: any): PubKey; toJSON(message: PubKey): unknown; fromPartial & { key?: Uint8Array; } & Record, never>>(object: I): PubKey; }; export declare const PrivKey: { typeUrl: string; encode(message: PrivKey, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): PrivKey; fromJSON(object: any): PrivKey; toJSON(message: PrivKey): unknown; fromPartial & { key?: Uint8Array; } & Record, never>>(object: I): PrivKey; };