We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58a257 commit 6fe8d70Copy full SHA for 6fe8d70
infrastructure/web3-adapter/src/index.ts
@@ -1,11 +1,11 @@
1
import * as fs from "node:fs/promises";
2
import path from "node:path";
3
+import axios from "axios";
4
+import { v4 as uuidv4 } from "uuid";
5
import { MappingDatabase } from "./db";
6
import { EVaultClient } from "./evault/evault";
7
import { fromGlobal, toGlobal } from "./mapper/mapper";
8
import type { IMapping } from "./mapper/mapper.types";
-import axios from "axios";
-import { v4 as uuidv4 } from "uuid";
9
10
/**
11
* Standalone function to spin up an eVault
@@ -197,7 +197,7 @@ async function createGroupManifestWithRetry(
197
metaEnvelope: {
198
id: string;
199
ontology: string;
200
- parsed: any;
+ parsed: unknown;
201
};
202
203
}
0 commit comments