0.7.3 • Published 2 months ago

@instadapp/utils v0.7.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@instadapp/utils

npm version npm downloads Github Actions Codecov

Instadapp Utils

Usage

Install package:

# npm
npm install @instadapp/utils

# yarn
yarn install @instadapp/utils

# pnpm
pnpm install @instadapp/utils

Import:

// ESM
import {} from "@instadapp/utils";

// CommonJS
const {} = require("@instadapp/utils");

Examples

AbiFetcher

basic setup :

import { AbiFetcher } from "@instadapp/utils";

const abiFetcher = new AbiFetcher();

await abiFetcher.get("0x0000000000000000000000000000000000001010", "polygon");

with caching:

import { AbiFetcher } from "@instadapp/utils";
import NodeCache from "node-cache";
 
const abiCache = new NodeCache()

const abiFetcher = new AbiFetcher({
  cache: {
    get(key) {
      return abiCache.get(key);
    },
    set(key, value) {
      return abiCache.set(key, value, 10);
    },
  },
});

await abiFetcher.get("0x0000000000000000000000000000000000001010", "polygon");

with etherscan api keys (recommended)

import { AbiFetcher } from "@instadapp/utils";

const abiFetcher = new AbiFetcher({
   etherscanApiKey: {
      mainnet: '9D13ZE7XSBTJ94N9BNJ2MA33VMAY2YPIRB'
    }
})

await abiFetcher.get('0xB8c77482e45F1F44dE1745F52C74426C631bDD52', 'mainnet')

💻 Development

  • Clone this repository
  • Install dependencies using yarn install
  • Run interactive tests using yarn dev

License

Made with 💛

Published under MIT License.

0.0.0-dev.888849a

2 months ago

0.7.2

2 months ago

0.7.3

2 months ago

0.0.0-dev.2b1c011

2 months ago

0.7.1

3 months ago

0.0.0-dev.53dc6fb

3 months ago

0.4.9

8 months ago

0.0.0-dev.7a98fa4

7 months ago

0.4.8

8 months ago

0.0.0-dev.fbd6b8f

8 months ago

0.0.0-dev.8f5ff0e

8 months ago

0.0.0-dev.0ead04d

8 months ago

0.0.0-dev.06cb187

6 months ago

0.0.0-dev.f7a9281

6 months ago

0.0.0-dev.cd3e8d4

6 months ago

0.0.0-dev.94be3d2

6 months ago

0.0.0-dev.d1a2553

7 months ago

0.7.0

6 months ago

0.0.0-dev.a737b60

8 months ago

0.0.0-dev.d5113c4

7 months ago

0.0.0-dev.8b43eea

8 months ago

0.0.0-dev.278a5df

6 months ago

0.4.10

8 months ago

0.0.0-dev.88ac930

6 months ago

0.0.0-dev.31bcd61

7 months ago

0.4.11

8 months ago

0.4.7

8 months ago

0.0.0-dev.5a1bc28

6 months ago

0.0.0-dev.36fbfd4

6 months ago

0.0.0-dev.a4ef16a

6 months ago

0.0.0-dev.abad1a0

6 months ago

0.5.3

7 months ago

0.5.0

7 months ago

0.5.2

7 months ago

0.0.0-dev.55fa705

6 months ago

0.5.1

7 months ago

0.0.0-dev.8a9eedf

6 months ago

0.0.0-dev.fd2a61c

6 months ago

0.0.0-dev.51c5017

8 months ago

0.0.0-dev.f4059c2

10 months ago

0.0.0-dev.f1000ec

6 months ago

0.0.0-dev.83212cf

8 months ago

0.0.0-dev.e2ad475

8 months ago

0.6.0

6 months ago

0.4.6

1 year ago

0.4.5

1 year ago

0.4.4

1 year ago

0.4.3

1 year ago

0.3.0

2 years ago

0.4.1

2 years ago

0.4.0

2 years ago

0.4.2

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.4

2 years ago

0.1.11

2 years ago

0.1.10

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago