We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9192975 commit b3f7decCopy full SHA for b3f7dec
src/services/web2-json-verifier.service.ts
@@ -26,6 +26,7 @@ import {
26
BackpressureException,
27
getPreview,
28
} from '../verification/web-2-json/utils';
29
+import { ChainType } from '../config/configuration';
30
31
@Injectable()
32
export class Web2JsonVerifierService extends BaseVerifierService<
@@ -41,7 +42,10 @@ export class Web2JsonVerifierService extends BaseVerifierService<
41
42
private readonly processPool: ProcessPoolService,
43
@Inject(REQUEST) private readonly req: Request,
44
) {
- super(configService, undefined);
45
+ super(configService, {
46
+ attestationName: 'Web2Json',
47
+ chainType: ChainType.Web2,
48
+ });
49
this.web2JsonConfig = this.configService.get('web2JsonConfig');
50
}
51
0 commit comments