Skip to content

Commit 6fe8d70

Browse files
committed
fix: w3-adapter types
1 parent a58a257 commit 6fe8d70

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

infrastructure/web3-adapter/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import * as fs from "node:fs/promises";
22
import path from "node:path";
3+
import axios from "axios";
4+
import { v4 as uuidv4 } from "uuid";
35
import { MappingDatabase } from "./db";
46
import { EVaultClient } from "./evault/evault";
57
import { fromGlobal, toGlobal } from "./mapper/mapper";
68
import type { IMapping } from "./mapper/mapper.types";
7-
import axios from "axios";
8-
import { v4 as uuidv4 } from "uuid";
99

1010
/**
1111
* Standalone function to spin up an eVault
@@ -197,7 +197,7 @@ async function createGroupManifestWithRetry(
197197
metaEnvelope: {
198198
id: string;
199199
ontology: string;
200-
parsed: any;
200+
parsed: unknown;
201201
};
202202
};
203203
}

0 commit comments

Comments
 (0)