github.com/hyperledger/burrow@v0.34.5-0.20220512172541-77f09336001d/js/proto/tendermint_pb.d.ts (about) 1 // package: tendermint 2 // file: tendermint.proto 3 4 /* tslint:disable */ 5 /* eslint-disable */ 6 7 import * as jspb from "google-protobuf"; 8 import * as gogoproto_gogo_pb from "./gogoproto/gogo_pb"; 9 10 export class NodeInfo extends jspb.Message { 11 getId(): Uint8Array | string; 12 getId_asU8(): Uint8Array; 13 getId_asB64(): string; 14 setId(value: Uint8Array | string): NodeInfo; 15 getListenaddress(): string; 16 setListenaddress(value: string): NodeInfo; 17 getNetwork(): string; 18 setNetwork(value: string): NodeInfo; 19 getVersion(): string; 20 setVersion(value: string): NodeInfo; 21 getChannels(): Uint8Array | string; 22 getChannels_asU8(): Uint8Array; 23 getChannels_asB64(): string; 24 setChannels(value: Uint8Array | string): NodeInfo; 25 getMoniker(): string; 26 setMoniker(value: string): NodeInfo; 27 getRpcaddress(): string; 28 setRpcaddress(value: string): NodeInfo; 29 getTxindex(): string; 30 setTxindex(value: string): NodeInfo; 31 32 serializeBinary(): Uint8Array; 33 toObject(includeInstance?: boolean): NodeInfo.AsObject; 34 static toObject(includeInstance: boolean, msg: NodeInfo): NodeInfo.AsObject; 35 static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>}; 36 static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>}; 37 static serializeBinaryToWriter(message: NodeInfo, writer: jspb.BinaryWriter): void; 38 static deserializeBinary(bytes: Uint8Array): NodeInfo; 39 static deserializeBinaryFromReader(message: NodeInfo, reader: jspb.BinaryReader): NodeInfo; 40 } 41 42 export namespace NodeInfo { 43 export type AsObject = { 44 id: Uint8Array | string, 45 listenaddress: string, 46 network: string, 47 version: string, 48 channels: Uint8Array | string, 49 moniker: string, 50 rpcaddress: string, 51 txindex: string, 52 } 53 }