@sparkdotfi/abi-cli 0.2.0-20251007.3d03bbce → 0.2.0-20251013.5182aee6-canary
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/abi-registry/abi-fetcher/BlockchainClient.js +1 -1
- package/dist/src/abi-registry/index.js +2 -2
- package/dist/src/build.js +1 -1
- package/dist/src/common/file-system/NodeFileSystem.js +1 -0
- package/dist/src/common/file-system/index.js +1 -1
- package/dist/src/main.js +2 -1
- package/dist/types/src/AbiCli.d.ts +1 -1
- package/dist/types/src/AbiCli.d.ts.map +1 -1
- package/dist/types/src/abi-registry/AbiRegistry.d.ts.map +1 -1
- package/dist/types/src/abi-registry/abi-fetcher/AbiFetcher.d.ts.map +1 -1
- package/dist/types/src/abi-registry/abi-fetcher/AbiFetcherClient.d.ts.map +1 -1
- package/dist/types/src/abi-registry/abi-fetcher/BlockchainClient.d.ts.map +1 -1
- package/dist/types/src/abi-registry/buildAbiRegistry.d.ts.map +1 -1
- package/dist/types/src/abi-registry/getAbiForContract.d.ts.map +1 -1
- package/dist/types/src/abi-registry/getAbiForInterface.d.ts.map +1 -1
- package/dist/types/src/abi-registry/index.d.ts +2 -2
- package/dist/types/src/abi-registry/index.d.ts.map +1 -1
- package/dist/types/src/codegen/sections.d.ts.map +1 -1
- package/dist/types/src/common/Logger.d.ts.map +1 -1
- package/dist/types/src/common/file-system/MemoryFileSystem.d.ts.map +1 -1
- package/dist/types/src/common/file-system/NodeFileSystem.d.ts.map +1 -1
- package/dist/types/src/common/file-system/index.d.ts +1 -1
- package/dist/types/src/common/file-system/index.d.ts.map +1 -1
- package/dist/types/src/manifest/ManifestLoader.d.ts +1 -1
- package/dist/types/src/manifest/ManifestLoader.d.ts.map +1 -1
- package/dist/types/src/manifest/manifest.d.ts +14 -14
- package/dist/types/src/manifest/manifest.d.ts.map +1 -1
- package/dist/types/src/metadata-store/MetadataStore.d.ts.map +1 -1
- package/dist/types/src/metadata-store/buildMetadataStore.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { domainToChain, getDrpcRpcUrl } from '@sparkdotfi/common-universal';
|
|
2
|
-
import {
|
|
2
|
+
import { createPublicClient, http } from 'viem';
|
|
3
3
|
export class BlockchainClient {
|
|
4
4
|
constructor(config) {
|
|
5
5
|
Object.defineProperty(this, "config", {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { AbiRegistry } from './AbiRegistry.js';
|
|
2
2
|
export { AbiFetcher } from './abi-fetcher/AbiFetcher.js';
|
|
3
3
|
export { AbiFetcherClient } from './abi-fetcher/AbiFetcherClient.js';
|
|
4
|
-
export {
|
|
4
|
+
export { BlockchainClient } from './abi-fetcher/BlockchainClient.js';
|
|
5
5
|
export { buildAbiRegistry } from './buildAbiRegistry.js';
|
|
6
6
|
export * from './types.js';
|
package/dist/src/build.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AbiCli } from './AbiCli.js';
|
|
2
2
|
import { AbiFetcher, AbiFetcherClient, BlockchainClient } from './abi-registry/index.js';
|
|
3
3
|
import { CliProgressBarFactory } from './common/CliProgressBarFactory.js';
|
|
4
|
+
import { NodeFileSystem } from './common/file-system/index.js';
|
|
4
5
|
import { createLogger } from './common/Logger.js';
|
|
5
6
|
import { Path } from './common/Path.js';
|
|
6
|
-
import { NodeFileSystem } from './common/file-system/index.js';
|
|
7
7
|
export async function build(config) {
|
|
8
8
|
const fileSystem = new NodeFileSystem();
|
|
9
9
|
const blockchainClient = new BlockchainClient({ drpcApiKey: config.secrets.drpcApiKey });
|
package/dist/src/main.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { build } from './build.js';
|
|
2
|
-
import { Path } from './common/Path.js';
|
|
3
2
|
import { NodeFileSystem } from './common/file-system/index.js';
|
|
3
|
+
import { Path } from './common/Path.js';
|
|
4
4
|
import { ManifestLoader } from './manifest/ManifestLoader.js';
|
|
5
5
|
export async function main() {
|
|
6
6
|
const manifestFileName = 'abi-cli.config.ts';
|
|
@@ -11,6 +11,7 @@ export async function main() {
|
|
|
11
11
|
await abiCli.run(manifest);
|
|
12
12
|
}
|
|
13
13
|
main().catch((e) => {
|
|
14
|
+
// biome-ignore lint/suspicious/noConsole: debugging
|
|
14
15
|
console.error(e);
|
|
15
16
|
process.exit(1);
|
|
16
17
|
});
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Logger } from '@sparkdotfi/common-universal/logger';
|
|
2
2
|
import { AbiFetcher } from './abi-registry/index.js';
|
|
3
3
|
import { CliProgressBarFactory } from './common/CliProgressBarFactory.js';
|
|
4
|
-
import { Path } from './common/Path.js';
|
|
5
4
|
import { IFileSystem } from './common/file-system/index.js';
|
|
5
|
+
import { Path } from './common/Path.js';
|
|
6
6
|
import { Manifest } from './manifest/manifest.js';
|
|
7
7
|
interface AbiCliOptions {
|
|
8
8
|
outPath: Path;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbiCli.d.ts","sourceRoot":"","sources":["../../../src/AbiCli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;
|
|
1
|
+
{"version":3,"file":"AbiCli.d.ts","sourceRoot":"","sources":["../../../src/AbiCli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;AAG5D,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAA;AAEpD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mCAAmC,CAAA;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,+BAA+B,CAAA;AAC3D,OAAO,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAA;AACvC,OAAO,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAA;AAGjD,UAAU,aAAa;IACrB,OAAO,EAAE,IAAI,CAAA;CACd;AAED,qBAAa,MAAM;IAGf,OAAO,CAAC,QAAQ,CAAC,UAAU;IAC3B,OAAO,CAAC,QAAQ,CAAC,UAAU;IAE3B,OAAO,CAAC,QAAQ,CAAC,kBAAkB;IACnC,OAAO,CAAC,QAAQ,CAAC,OAAO;IAN1B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAQ;gBAEZ,UAAU,EAAE,WAAW,EACvB,UAAU,EAAE,UAAU,EACvC,MAAM,EAAE,MAAM,EACG,kBAAkB,EAAE,qBAAqB,EACzC,OAAO,EAAE,aAAa;IAKnC,GAAG,CAAC,QAAQ,EAAE,QAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;CAW7C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbiRegistry.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/AbiRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,cAAc,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;
|
|
1
|
+
{"version":3,"file":"AbiRegistry.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/AbiRegistry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAU,cAAc,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAElF,OAAO,EAAE,mBAAmB,EAAE,6BAA6B,EAAE,MAAM,yBAAyB,CAAA;AAG5F,OAAO,EAAE,GAAG,EAAE,eAAe,EAAE,MAAM,YAAY,CAAA;AAIjD,qBAAa,WAAW;IACtB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAkC;gBAE1C,SAAS,EAAE,eAAe,EAAE;IAMjC,cAAc,CAAC,MAAM,EAAE,6BAA6B,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG;IAIxE,eAAe,CAAC,eAAe,EAAE,mBAAmB,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG;IAIxE,MAAM,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,cAAc,GAAG,GAAG;CAOjE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbiFetcher.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/AbiFetcher.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"AbiFetcher.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/AbiFetcher.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAiC,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAEzG,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAC7C,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAExD,qBAAa,UAAU;IACT,OAAO,CAAC,QAAQ,CAAC,UAAU;gBAAV,UAAU,EAAE,gBAAgB;IAEnD,cAAc,CAClB,SAAS,EAAE,CAAC,WAAW,EAAE,cAAc,CAAC,EAAE,EAC1C,SAAS,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,GAC9B,OAAO,CAAC,eAAe,EAAE,CAAC;CAyB9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AbiFetcherClient.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/AbiFetcherClient.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"AbiFetcherClient.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/AbiFetcherClient.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,cAAc,EAAoC,WAAW,EAAW,MAAM,8BAA8B,CAAA;AAGrH,OAAO,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA;AACjC,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AAExD,UAAU,uBAAuB;IAC/B,eAAe,EAAE,MAAM,CAAA;CACxB;AAED,qBAAa,gBAAgB;IAEzB,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,OAAO;gBADP,gBAAgB,EAAE,gBAAgB,EAClC,OAAO,EAAE,uBAAuB;IAG7C,KAAK,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC;CAYxE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BlockchainClient.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/BlockchainClient.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"BlockchainClient.d.ts","sourceRoot":"","sources":["../../../../../src/abi-registry/abi-fetcher/BlockchainClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,WAAW,EAAE,MAAM,8BAA8B,CAAA;AACxF,OAAO,EAAmC,YAAY,EAAE,MAAM,MAAM,CAAA;AAEpE,UAAU,uBAAuB;IAC/B,UAAU,EAAE,MAAM,CAAA;CACnB;AAED,qBAAa,gBAAgB;IACf,OAAO,CAAC,QAAQ,CAAC,MAAM;gBAAN,MAAM,EAAE,uBAAuB;IAE5D,aAAa,CAAC,MAAM,EAAE,WAAW,GAAG,YAAY;CAUjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildAbiRegistry.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/buildAbiRegistry.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;
|
|
1
|
+
{"version":3,"file":"buildAbiRegistry.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/buildAbiRegistry.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;AAG5D,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAA;AAC1E,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAA;AAEnD,wBAAsB,gBAAgB,CACpC,QAAQ,EAAE,QAAQ,EAClB,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,MAAM,EACd,kBAAkB,EAAE,qBAAqB,GACxC,OAAO,CAAC,WAAW,CAAC,CAQtB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAbiForContract.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/getAbiForContract.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getAbiForContract.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/getAbiForContract.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,yBAAyB,CAAA;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,YAAY,CAAA;AAEhC,wBAAgB,iBAAiB,CAAC,WAAW,EAAE,WAAW,EAAE,MAAM,EAAE,6BAA6B,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG,CAkBpH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAbiForInterface.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/getAbiForInterface.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getAbiForInterface.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/getAbiForInterface.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAA;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,GAAG,EAAE,MAAM,YAAY,CAAA;AAEhC,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,WAAW,EAAE,eAAe,EAAE,mBAAmB,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG,CA8BpH;AAED,wBAAgB,OAAO,CAAC,GAAG,EAAE,GAAG,EAAE,eAAe,EAAE,mBAAmB,GAAG,GAAG,CAa3E"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { AbiRegistry } from './AbiRegistry.js';
|
|
2
2
|
export { AbiFetcher } from './abi-fetcher/AbiFetcher.js';
|
|
3
3
|
export { AbiFetcherClient } from './abi-fetcher/AbiFetcherClient.js';
|
|
4
|
-
export {
|
|
4
|
+
export { BlockchainClient } from './abi-fetcher/BlockchainClient.js';
|
|
5
5
|
export { buildAbiRegistry } from './buildAbiRegistry.js';
|
|
6
6
|
export * from './types.js';
|
|
7
7
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/abi-registry/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAA;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAA;AACxD,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,cAAc,YAAY,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sections.d.ts","sourceRoot":"","sources":["../../../../src/codegen/sections.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sections.d.ts","sourceRoot":"","sources":["../../../../src/codegen/sections.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAC5D,OAAO,EAAE,gBAAgB,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,oCAAoC,CAAA;AACrG,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAA;AAEvC,wBAAgB,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,WAAW,GAAG,MAAM,CAMtE;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,gBAAgB,GAAG,iBAAiB,GAAG,MAAM,CAQpG;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAepE;AAED,wBAAgB,YAAY,CAAC,SAAS,EAAE,kBAAkB,GAAG,MAAM,CASlE;AAOD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,kBAAkB,EAAE,IAAI,EAAE,UAAU,GAAG,MAAM,CAGtG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["../../../../src/common/Logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;
|
|
1
|
+
{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["../../../../src/common/Logger.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,qCAAqC,CAAA;AAI5D,wBAAgB,YAAY,IAAI,MAAM,CAUrC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryFileSystem.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/MemoryFileSystem.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MemoryFileSystem.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/MemoryFileSystem.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,qBAAa,gBAAiB,YAAW,WAAW;IAClD,OAAO,CAAC,QAAQ,CAAC,EAAE,CAA6B;IAE1C,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlD,IAAI,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC;IAOjC,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC;IAKpC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG;QAAE,IAAI,EAAE,IAAI,CAAA;KAAE,CAAC;CASxE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NodeFileSystem.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/NodeFileSystem.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NodeFileSystem.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/NodeFileSystem.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AACjC,OAAO,EAAE,WAAW,EAAE,MAAM,YAAY,CAAA;AAExC,qBAAa,cAAe,YAAW,WAAW;IAChD,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC;IAIlD,IAAI,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC;IAI3B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC;IASpC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG;QAAE,IAAI,EAAE,IAAI,CAAA;KAAE,CAAC;CAiBxE"}
|
|
@@ -7,6 +7,6 @@ export interface IFileSystem {
|
|
|
7
7
|
path: Path;
|
|
8
8
|
}>;
|
|
9
9
|
}
|
|
10
|
-
export { NodeFileSystem } from './NodeFileSystem.js';
|
|
11
10
|
export { MemoryFileSystem } from './MemoryFileSystem.js';
|
|
11
|
+
export { NodeFileSystem } from './NodeFileSystem.js';
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAEjC,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAClD,IAAI,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;IACjC,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;IAEpC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG;QAAE,IAAI,EAAE,IAAI,CAAA;KAAE,CAAC,CAAA;CAClE;AAED,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/common/file-system/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAA;AAEjC,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAAA;IAClD,IAAI,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,MAAM,CAAC,CAAA;IACjC,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,CAAA;IAEpC,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,GAAG;QAAE,IAAI,EAAE,IAAI,CAAA;KAAE,CAAC,CAAA;CAClE;AAED,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ManifestLoader.d.ts","sourceRoot":"","sources":["../../../../src/manifest/ManifestLoader.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ManifestLoader.d.ts","sourceRoot":"","sources":["../../../../src/manifest/ManifestLoader.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAA;AAC5D,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAA;AACxC,OAAO,EAAE,QAAQ,EAAkB,MAAM,eAAe,CAAA;AAExD,qBAAa,cAAc;IACb,OAAO,CAAC,QAAQ,CAAC,EAAE;gBAAF,EAAE,EAAE,WAAW;IAEtC,IAAI,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,QAAQ,CAAC;CAQ1C"}
|
|
@@ -64,7 +64,7 @@ export declare const MultiDomainAddressDefinitionSchema: z.ZodEffects<z.ZodRecor
|
|
|
64
64
|
}, string | {
|
|
65
65
|
address: string;
|
|
66
66
|
skipAbiVerification?: boolean | undefined;
|
|
67
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
67
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
68
68
|
address: `0x${string}` & {
|
|
69
69
|
readonly __TAG__: "CheckedAddress";
|
|
70
70
|
};
|
|
@@ -96,7 +96,7 @@ export declare const EoasSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodReco
|
|
|
96
96
|
}, string | {
|
|
97
97
|
address: string;
|
|
98
98
|
skipAbiVerification?: boolean | undefined;
|
|
99
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
99
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
100
100
|
address: `0x${string}` & {
|
|
101
101
|
readonly __TAG__: "CheckedAddress";
|
|
102
102
|
};
|
|
@@ -128,7 +128,7 @@ export declare const ContractsSchema: z.ZodRecord<z.ZodString, z.ZodEffects<z.Zo
|
|
|
128
128
|
}, string | {
|
|
129
129
|
address: string;
|
|
130
130
|
skipAbiVerification?: boolean | undefined;
|
|
131
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
131
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
132
132
|
address: `0x${string}` & {
|
|
133
133
|
readonly __TAG__: "CheckedAddress";
|
|
134
134
|
};
|
|
@@ -163,7 +163,7 @@ export declare const InterfaceDefinitionSchema: z.ZodObject<{
|
|
|
163
163
|
}, string | {
|
|
164
164
|
address: string;
|
|
165
165
|
skipAbiVerification?: boolean | undefined;
|
|
166
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
166
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
167
167
|
address: `0x${string}` & {
|
|
168
168
|
readonly __TAG__: "CheckedAddress";
|
|
169
169
|
};
|
|
@@ -175,7 +175,7 @@ export declare const InterfaceDefinitionSchema: z.ZodObject<{
|
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
176
|
methods: string[];
|
|
177
177
|
events: string[];
|
|
178
|
-
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
178
|
+
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
179
179
|
address: `0x${string}` & {
|
|
180
180
|
readonly __TAG__: "CheckedAddress";
|
|
181
181
|
};
|
|
@@ -215,7 +215,7 @@ export declare const InterfacesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
215
215
|
}, string | {
|
|
216
216
|
address: string;
|
|
217
217
|
skipAbiVerification?: boolean | undefined;
|
|
218
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
218
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
219
219
|
address: `0x${string}` & {
|
|
220
220
|
readonly __TAG__: "CheckedAddress";
|
|
221
221
|
};
|
|
@@ -227,7 +227,7 @@ export declare const InterfacesSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
228
228
|
methods: string[];
|
|
229
229
|
events: string[];
|
|
230
|
-
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
230
|
+
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
231
231
|
address: `0x${string}` & {
|
|
232
232
|
readonly __TAG__: "CheckedAddress";
|
|
233
233
|
};
|
|
@@ -290,7 +290,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
290
290
|
}, string | {
|
|
291
291
|
address: string;
|
|
292
292
|
skipAbiVerification?: boolean | undefined;
|
|
293
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
293
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
294
294
|
address: `0x${string}` & {
|
|
295
295
|
readonly __TAG__: "CheckedAddress";
|
|
296
296
|
};
|
|
@@ -322,7 +322,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
322
322
|
}, string | {
|
|
323
323
|
address: string;
|
|
324
324
|
skipAbiVerification?: boolean | undefined;
|
|
325
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
325
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
326
326
|
address: `0x${string}` & {
|
|
327
327
|
readonly __TAG__: "CheckedAddress";
|
|
328
328
|
};
|
|
@@ -357,7 +357,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
357
357
|
}, string | {
|
|
358
358
|
address: string;
|
|
359
359
|
skipAbiVerification?: boolean | undefined;
|
|
360
|
-
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
360
|
+
}>>, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
361
361
|
address: `0x${string}` & {
|
|
362
362
|
readonly __TAG__: "CheckedAddress";
|
|
363
363
|
};
|
|
@@ -369,7 +369,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
369
369
|
}, "strip", z.ZodTypeAny, {
|
|
370
370
|
methods: string[];
|
|
371
371
|
events: string[];
|
|
372
|
-
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
372
|
+
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
373
373
|
address: `0x${string}` & {
|
|
374
374
|
readonly __TAG__: "CheckedAddress";
|
|
375
375
|
};
|
|
@@ -384,7 +384,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
384
384
|
events?: string[] | undefined;
|
|
385
385
|
}>>>;
|
|
386
386
|
}, "strip", z.ZodTypeAny, {
|
|
387
|
-
contracts: Record<string, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
387
|
+
contracts: Record<string, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
388
388
|
address: `0x${string}` & {
|
|
389
389
|
readonly __TAG__: "CheckedAddress";
|
|
390
390
|
};
|
|
@@ -397,7 +397,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
397
397
|
etherscanApiKey: string;
|
|
398
398
|
};
|
|
399
399
|
};
|
|
400
|
-
eoa: Record<string, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
400
|
+
eoa: Record<string, Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
401
401
|
address: `0x${string}` & {
|
|
402
402
|
readonly __TAG__: "CheckedAddress";
|
|
403
403
|
};
|
|
@@ -406,7 +406,7 @@ export declare const ManifestSchema: z.ZodObject<{
|
|
|
406
406
|
interfaces: Record<string, {
|
|
407
407
|
methods: string[];
|
|
408
408
|
events: string[];
|
|
409
|
-
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "sepolia" | "baseSepolia", {
|
|
409
|
+
addresses: Partial<Record<"mainnet" | "base" | "gnosis" | "arbitrum" | "optimism" | "worldchain" | "unichain" | "avalanche" | "sepolia" | "baseSepolia", {
|
|
410
410
|
address: `0x${string}` & {
|
|
411
411
|
readonly __TAG__: "CheckedAddress";
|
|
412
412
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../src/manifest/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","sourceRoot":"","sources":["../../../../src/manifest/manifest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAA4B,WAAW,EAAE,MAAM,8BAA8B,CAAA;AAEpG,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,oBAAoB;;UAAuC,CAAA;AACxE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;EAG5B,CAAA;AACF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;EAQjC,CAAA;AAEJ,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAK5C,CAAA;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA2D,CAAA;AAElF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA2D,CAAA;AAEvF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIpC,CAAA;AACF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAkD,CAAA;AAE/E,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWzB,CAAA;AAEF,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAA;AACxD,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,cAAc,CAAC,CAAA;AACtD,MAAM,MAAM,MAAM,GAAG,QAAQ,CAAC,QAAQ,CAAC,CAAA;AACvC,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAC5E,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,kCAAkC,CAAC,CAAA;AAC/F,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,wBAAwB,CAAC,CAAA;AAEzE,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MetadataStore.d.ts","sourceRoot":"","sources":["../../../../src/metadata-store/MetadataStore.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MetadataStore.d.ts","sourceRoot":"","sources":["../../../../src/metadata-store/MetadataStore.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,GAAG,EAAE,MAAM,0BAA0B,CAAA;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAE5D,MAAM,MAAM,QAAQ,GAAG,WAAW,GAAG,gBAAgB,GAAG,iBAAiB,CAAA;AAEzE,MAAM,MAAM,WAAW,GAAG;IACxB,IAAI,EAAE,KAAK,CAAA;IACX,IAAI,EAAE,MAAM,CAAA;IACZ,SAAS,EAAE,kBAAkB,CAAA;CAC9B,CAAA;AAED,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,UAAU,CAAA;IAChB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,GAAG,CAAA;IACR,SAAS,EAAE,kBAAkB,CAAA;CAC9B,CAAA;AAED,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,WAAW,CAAA;IACjB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,GAAG,CAAA;IACR,SAAS,EAAE,kBAAkB,CAAA;CAC9B,CAAA;AAED,KAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;AAE3C,qBAAa,aAAa;IACZ,OAAO,CAAC,QAAQ,CAAC,IAAI;gBAAJ,IAAI,EAAE,WAAW;IAE9C,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,WAAW;IAQjC,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,gBAAgB;IAQ3C,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB;CAO9C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"buildMetadataStore.d.ts","sourceRoot":"","sources":["../../../../src/metadata-store/buildMetadataStore.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"buildMetadataStore.d.ts","sourceRoot":"","sources":["../../../../src/metadata-store/buildMetadataStore.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,gCAAgC,CAAA;AAC5D,OAAO,EAAE,QAAQ,EAAqD,MAAM,yBAAyB,CAAA;AACrG,OAAO,EAA8D,aAAa,EAAE,MAAM,oBAAoB,CAAA;AAE9G,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,GAAG,aAAa,CA8B9F"}
|