Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
Update yarn.lock to yarn v3 format
Fix minor build error
  • Loading branch information
jmrossy committed Oct 5, 2023
1 parent aaefd11 commit 81fa29b
Show file tree
Hide file tree
Showing 3 changed files with 767 additions and 583 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@celo-tools/celo-ethers-wrapper",
"version": "0.4.0",
"version": "1.0.0",
"description": "A minimal wrapper to make Ethers.JS compatible with the Celo network.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
Expand All @@ -17,6 +17,7 @@
"build": "yarn build:main && yarn build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"test": "yarn test:contract && yarn test:deploy && yarn test:history",
"test:contract": "ts-node test/useContract.ts",
"test:deploy": "ts-node test/deployContract.ts",
"test:history": "ts-node test/getHistory.ts"
Expand Down
3 changes: 1 addition & 2 deletions src/lib/CeloWallet.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { BigNumber, providers, utils, Wallet, Wordlist } from "ethers";
import type { CeloProvider } from "./CeloProvider";
import { adjustForGasInflation } from "./transaction/utils";
import {
CeloTransaction,
CeloTransactionRequest,
getTxType,
serializeCeloTransaction,
} from "./transactions";
import { adjustForGasInflation } from "./transaction/utils";

const logger = new utils.Logger("CeloWallet");

Expand Down
Loading

0 comments on commit 81fa29b

Please sign in to comment.