You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.xrp_transaction_hash_schema = exports.xrp_address_schema = void 0;
  4. const zod_1 = require("zod");
  5. const protocol_constants_1 = require("./protocol.constants");
  6. const xrpio_1 = require("xrpio");
  7. exports.xrp_address_schema = zod_1.z.string().regex(protocol_constants_1.XRP_ADDRESS, "Not a valid XRP address");
  8. exports.xrp_transaction_hash_schema = zod_1.z.string().regex(xrpio_1.NON_ZERO_TX_HASH, "Not a valid XRP transaction hash");