@cfxlabsinc/b2b-services
    Preparing search index...

    Maintains a reference to a public redemption wallet (belongs to another customer)

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • __namedParameters: Pick<
            {
                address: PublicKey;
                createdAt: Date;
                deletedAt: Date
                | null;
                id: string;
                provider:
                    | "REDEMPTION"
                    | "SOLANA"
                    | "MX_CLABE"
                    | "WIRE_DEPOSIT"
                    | "ACH_PUSH_DEPOSIT"
                    | "YELLOWCARD"
                    | "QUILTT"
                    | "VICTOR"
                    | "CFX"
                    | "ETHEREUM"
                    | "BASE";
                providerId: string;
                referenceId?: string;
                status: "ACTIVE"
                | "PENDING_VERIFICATION"
                | "BLOCKED"
                | "DELETED";
                type: "NETWORK_WALLET";
                updatedAt: Date;
                walletCustomerId: string;
            },
            "referenceId",
        > & { customerId: string; entityId: string; walletId: string }

      Returns Promise<
          | {
              ok: true;
              value: {
                  address: PublicKey;
                  createdAt: Date;
                  deletedAt: Date
                  | null;
                  id: string;
                  provider:
                      | "REDEMPTION"
                      | "SOLANA"
                      | "MX_CLABE"
                      | "WIRE_DEPOSIT"
                      | "ACH_PUSH_DEPOSIT"
                      | "YELLOWCARD"
                      | "QUILTT"
                      | "VICTOR"
                      | "CFX"
                      | "ETHEREUM"
                      | "BASE";
                  providerId: string;
                  referenceId?: string;
                  status: "ACTIVE"
                  | "PENDING_VERIFICATION"
                  | "BLOCKED"
                  | "DELETED";
                  type: "NETWORK_WALLET";
                  updatedAt: Date;
                  walletCustomerId: string;
              };
          }
          | { error: ServiceError; ok: false },
      >