From 71290150e76e7aae4f01a0559fe12aadf49f75b0 Mon Sep 17 00:00:00 2001 From: Andreas Richter <708186+richtera@users.noreply.github.com> Date: Fri, 23 Feb 2024 04:53:20 -0500 Subject: [PATCH] fix: Final cleanup --- examples/src/instantiation.js | 1 - tsup.config.json | 16 ---------------- 2 files changed, 17 deletions(-) delete mode 100644 tsup.config.json diff --git a/examples/src/instantiation.js b/examples/src/instantiation.js index 89ca1748..8066c14f 100644 --- a/examples/src/instantiation.js +++ b/examples/src/instantiation.js @@ -40,7 +40,6 @@ export function getInstance() { }, ]; - // const address = '0xbAB4d9fAaCCE0764d8663137aD14B2F9933C0Cb7'; const address = '0x7b2C957209897bc4423162e57D8C3CA863DCfBCc'; const provider = new Web3.providers.HttpProvider(RPC_ENDPOINT); const config = { diff --git a/tsup.config.json b/tsup.config.json deleted file mode 100644 index c3f1192f..00000000 --- a/tsup.config.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "entry": ["src/index.ts", "src/utils.ts"], - "splitting": false, - "sourcemap": true, - "dts-resolve": true, - "clean": true, - "format": ["cjs", "esm"], - "treeshake": true, - "skipNodeModulesBundle": true, - "json.schemas": [ - { - "url": "https://cdn.jsdelivr.net/npm/tsup/schema.json", - "fileMatch": ["package.json", "tsup.config.json"] - } - ] -}