Skip to main content Link Search Menu Expand Document (external link)

Finance.ts overview

Finance related schemas and filters

Since v1.0.0


Exports Grouped by Category


Finance filters

bic

A Business Identifier Code (BIC)

See

  • https://en.wikipedia.org/wiki/ISO_9362

Signature

declare const bic: <S extends Schema.Schema.Any>(
  annotations?: Schema.Annotations.Filter<Schema.Schema.Type<S>> | undefined
) => <A extends string>(
  self: S & Schema.Schema<A, Schema.Schema.Encoded<S>, Schema.Schema.Context<S>>
) => Schema.filter<S>

Source

Since v1.0.0

bitcoinAddress

Signature

declare const bitcoinAddress: <S extends Schema.Schema.Any>(
  annotations?: Schema.Annotations.Filter<Schema.Schema.Type<S>> | undefined
) => <A extends string>(
  self: S & Schema.Schema<A, Schema.Schema.Encoded<S>, Schema.Schema.Context<S>>
) => Schema.filter<S>

Source

Since v1.0.0

ethereumAddress

Signature

declare const ethereumAddress: <S extends Schema.Schema.Any>(
  annotations?: Schema.Annotations.Filter<Schema.Schema.Type<S>> | undefined
) => <A extends string>(
  self: S & Schema.Schema<A, Schema.Schema.Encoded<S>, Schema.Schema.Context<S>>
) => Schema.filter<S>

Source

Since v1.0.0

Finance schemas

BIC (class)

A Business Identifier Code (BIC)

See

  • https://en.wikipedia.org/wiki/ISO_9362

Signature

declare class BIC

Source

Since v1.0.0

BitcoinAddress (class)

Signature

declare class BitcoinAddress

Source

Since v1.0.0

EthereumAddress (class)

Signature

declare class EthereumAddress

Source

Since v1.0.0