Comparing version 0.8.0-canary.20230310T203353 to 0.8.0-canary.20230403T170518
@@ -13,3 +13,3 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; } | ||
var name = "abitype"; | ||
var version = "0.7.0"; | ||
var version = "0.7.1"; | ||
@@ -16,0 +16,0 @@ // src/errors.ts |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.8.0-canary.20230310T203353", | ||
"version": "0.8.0-canary.20230403T170518", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
@@ -62,6 +62,6 @@ <br/> | ||
- You want to [typecheck](https://abitype.dev/api/types) your ABIs or EIP-712 Typed Data. | ||
- You want to [typecheck](https://abitype.dev/api/types.html) your ABIs or EIP-712 Typed Data. | ||
- You want to add type inference and autocomplete to your library based on user-provided ABIs or EIP-712 Typed Data, like [wagmi](https://wagmi.sh) and [viem](https://viem.sh). | ||
- You need to [convert ABI types](https://abitype.dev/api/utilities#abiparameterstoprimitivetypes) (e.g. `'string'`) to TypeScript types (e.g. `string`) or other type transformations. | ||
- You need to validate ABIs at [runtime](https://abitype.dev/api/zod) (e.g. after fetching from external resource). | ||
- You need to [convert ABI types](https://abitype.dev/api/utilities.html#abiparameterstoprimitivetypes) (e.g. `'string'`) to TypeScript types (e.g. `string`) or other type transformations. | ||
- You need to validate ABIs at [runtime](https://abitype.dev/api/zod.html) (e.g. after fetching from external resource). | ||
- You donβt want to set up a build process to generate types (e.g. TypeChain). | ||
@@ -68,0 +68,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
474661