@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
12 lines (11 loc) • 401 B
TypeScript
import { Expr } from "@mavrykdynamics/taquito-michel-codec";
export type GlobalConstantHash = string;
export interface GlobalConstantsProvider {
/**
*
* @description Retrieve the Michelson value of a global constant based on its hash
*
* @param hash a string representing the global constant hash
*/
getGlobalConstantByHash(hash: GlobalConstantHash): Promise<Expr>;
}