KycInfo: {
    firstName: string;
    lastName: string;
    idNumber?: string;
    dateOfBirth: DateOfBirth;
    address: Address;
}

Know Your Customer (KYC) information required for crypto operations.

Notes:

  • idNumber may be required depending on region/regulatory requirements (for US, this is SSN).
  • address fields are optional at the field level, but the object is required.

Type declaration

  • firstName: string

    Customer’s first name.

  • lastName: string

    Customer’s last name.

  • OptionalidNumber?: string

    Government ID number (e.g., SSN for US). May be required by region.

  • dateOfBirth: DateOfBirth

    Customer’s date of birth.

  • address: Address

    Customer’s address.