UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

12 lines (11 loc) 333 B
/// <reference types="node" /> /** * Interface to be implemented by all models that need to be encoded to Amino encoding format */ export interface IAminoEncodable { /** * Returns the Amino-encoded bytes representation of the class implementing the interface * @returns {Buffer} */ marshalAmino(): Buffer; }