Interface SchemaBuilderProps

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

Properties

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