Commit 914a95bb authored by tom's avatar tom

fix ts

parent 04966989
import type { VerifiedAddress } from 'types/api/account';
export interface AddressVerificationFormFirstStepFields { export interface AddressVerificationFormFirstStepFields {
address: string; address: string;
} }
...@@ -34,12 +36,7 @@ export interface AddressVerificationResponseError { ...@@ -34,12 +36,7 @@ export interface AddressVerificationResponseError {
export type AddressValidationResponseSuccess = { export type AddressValidationResponseSuccess = {
status: 'SUCCESS'; status: 'SUCCESS';
result: { result: {
verifiedAddress: { verifiedAddress: VerifiedAddress;
chainId: string;
contractAddress: string;
userId: string;
verifiedDate: string;
};
}; };
} | } |
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment