PaymentAddress.ts
PaymentAddress overview
Table of contents
model
PaymentAddress (type alias)
Type representing a payment address string in bech32 format
Signature
export type PaymentAddress = Schema.Schema.Type<typeof PaymentAddress>Added in v2.0.0
predicates
isPaymentAddress
Check if the given value is a valid PaymentAddress
Signature
export declare const isPaymentAddress: (
u: unknown,
overrideOptions?: ParseOptions | number
) => u is string & Brand<"PaymentAddress">Added in v2.0.0
schemas
PaymentAddress
Bech32 address format schema (human-readable addresses) Following CIP-0019 encoding requirements
Signature
export declare const PaymentAddress: Schema.brand<Schema.filter<typeof Schema.String>, "PaymentAddress">Added in v2.0.0