UNPKG

@rarcifa/cronos-evm-client

Version:

A Node.js client library for interacting with the Cronos EVM, facilitating operations on both CRC20 and CRC721 tokens.

24 lines (23 loc) 553 B
export declare enum HttpCodes { Ok = 200, Created = 201, NoContent = 204, BadRequest = 400, Unauthorized = 401, NotFound = 404, UnprocessableEntity = 422, InternalServerError = 500, ServiceUnavailable = 503 } export declare enum HttpStatus { Success = "success", Failed = "failed" } export declare enum HttpMessages { InvalidApiKey = "Invalid API key", AuthorizationFailed = "Failed to authorize endpoint", MessageOk = "OK" } export interface VerificationErrorModel { [key: string]: string; }