export interface RESTErrorData { error_code: string; message: string; } export type AddressSchema = string; export type PubKeySchema = string; export type TokenAddressSchema = string; export type SignatureSchema = string; export type B256Schema = string; export type U256Schema = string; export type BytesSchema = string; export interface Hash { hash: B256Schema; } export interface HashWithToken { hash: B256Schema; token: TokenAddressSchema; }