Interface AttestBuilderProps

interface AttestBuilderProps {
    easContractAddress: string;
    onError?: ((error: unknown) => void | Promise<void>);
    onSuccess?: ((uid: string, receipt?: TransactionReceipt) => void | Promise<void>);
    registryAddress: string;
    schemaUID: string;
    signer?: Signer;
}

Properties

easContractAddress: string
onError?: ((error: unknown) => void | Promise<void>)
onSuccess?: ((uid: string, receipt?: TransactionReceipt) => void | Promise<void>)
registryAddress: string
schemaUID: string
signer?: Signer