Skip to content

Commit

Permalink
@airswap/utils dep quickfix; publish to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
dmosites committed Mar 14, 2024
1 parent 64f78ae commit 6ad0137
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion source/batch-call/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@airswap/swap": "4.2.2",
"@airswap/swap-erc20": "4.3.1",
"@openzeppelin/contracts": "^4.8.3",
Expand Down
2 changes: 1 addition & 1 deletion source/pool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"balances": "hardhat run ./scripts/balances.js"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@airswap/merkle": "0.0.2",
"@openzeppelin/contracts": "^4.8.3",
"prompt-confirm": "^2.0.4"
Expand Down
2 changes: 1 addition & 1 deletion source/registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"access": "public"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@openzeppelin/contracts": "^4.8.3",
"prompt-confirm": "^2.0.4"
}
Expand Down
2 changes: 1 addition & 1 deletion source/staking/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"access": "public"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@openzeppelin/contracts": "^4.8.3",
"prompt-confirm": "^2.0.4"
}
Expand Down
2 changes: 1 addition & 1 deletion source/swap-erc20/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"devDependencies": {
"@airswap/staking": "4.2.2",
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"prompt-confirm": "^2.0.4",
"solady": "0.0.173"
},
Expand Down
2 changes: 1 addition & 1 deletion source/swap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@openzeppelin/contracts": "^4.8.3"
},
Expand Down
2 changes: 1 addition & 1 deletion source/wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@airswap/swap-erc20": "4.3.1",
"@openzeppelin/contracts": "^4.8.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
Expand Down
4 changes: 2 additions & 2 deletions tools/libraries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/libraries",
"version": "4.3.3",
"version": "4.3.4",
"description": "AirSwap: Libraries for Developers",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,7 +29,7 @@
"@airswap/staking": "4.2.2",
"@airswap/swap": "4.2.2",
"@airswap/swap-erc20": "4.3.1",
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"@airswap/wrapper": "4.2.3",
"browser-or-node": "^2.1.1",
"ethers": "^5.7.2",
Expand Down
4 changes: 2 additions & 2 deletions tools/stores/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/stores",
"version": "4.3.1",
"version": "4.3.2",
"description": "AirSwap: Storage for Indexing",
"repository": {
"type": "git",
Expand All @@ -22,7 +22,7 @@
"test": "REDISCLOUD_URL=redis://localhost:6379 TS_NODE_COMPILER_OPTIONS='{\"strict\":false}' yarn mocha -r ts-node/esm test/*.ts"
},
"dependencies": {
"@airswap/utils": "4.3.1",
"@airswap/utils": "4.3.2",
"redis": "^4.6.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion tools/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/utils",
"version": "4.3.1",
"version": "4.3.2",
"description": "AirSwap: Utilities for Developers",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tools/utils/src/swap-erc20.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
SignTypedDataVersion,
} from '@metamask/eth-sig-util'

import { abi as ERC20_ABI } from '@openzeppelin/contracts/build/contracts/ERC20.json'
import { abi as ERC20_ABI } from './abis/ERC20.json'
const erc20Interface = new ethers.utils.Interface(ERC20_ABI)

import {
Expand Down

0 comments on commit 6ad0137

Please sign in to comment.