From 368d8e6503e20f6cc84bdc8fbf1fdbe1dcd08d09 Mon Sep 17 00:00:00 2001 From: Shiba <44804845+DeepDoge@users.noreply.github.com> Date: Wed, 16 Oct 2024 10:23:14 +0000 Subject: [PATCH] i hate the word --- jsr.json | 2 +- types/abi.ts | 4 ++-- types/ethers6/exports.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/jsr.json b/jsr.json index 93582ce..a065ad6 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@nomadshiba/typed-contracts", - "version": "0.2.8", + "version": "0.2.9", "exports": { "./abi": "./types/abi.ts", "./ethers6": "./types/ethers6/exports.ts" diff --git a/types/abi.ts b/types/abi.ts index a88a4e9..decb518 100644 --- a/types/abi.ts +++ b/types/abi.ts @@ -1,7 +1,7 @@ /** * @module * - * This module defines the structure of an Ethereum contract's Application Binary Interface (ABI), + * This module defines the structure of an EVM contract's Application Binary Interface (ABI), * which describes the functions, events, and errors that can be interacted with in the contract. * It provides type definitions and ensures type safety when working with contract interactions. */ @@ -9,7 +9,7 @@ export type Abi = readonly Abi.Item[] /** - * This type represents the structure of an Ethereum contract's Application Binary Interface (ABI), + * This type represents the structure of an EVM contract's Application Binary Interface (ABI), * which defines the functions, events, and errors that can be interacted with in the contract. * It is a readonly array of items, which can represent functions, events, or errors. * diff --git a/types/ethers6/exports.ts b/types/ethers6/exports.ts index 5f9d20f..4be088c 100644 --- a/types/ethers6/exports.ts +++ b/types/ethers6/exports.ts @@ -2,7 +2,7 @@ * @module * * This module provides support for ethers6. - * It allows for type-safe interactions with ethereum contracts + * It allows for type-safe interactions with EVM contracts * using ethers.js. */