Skip to content

Commit

Permalink
merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
dmosites committed Dec 2, 2024
2 parents 73553b5 + 30d18bc commit 4f41b48
Show file tree
Hide file tree
Showing 13 changed files with 126 additions and 65 deletions.
13 changes: 9 additions & 4 deletions source/batch-call/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/batch-call",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Balance, Allowance, Validity Checks",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -23,10 +25,13 @@
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/swap": "5.0.0",
"@airswap/swap-erc20": "5.0.0",
"@airswap/utils": "5.0.2",
"@airswap/swap": "5.0.1",
"@airswap/swap-erc20": "5.0.1",
"@openzeppelin/contracts": "^4.8.3"
},
"publishConfig": {
Expand Down
11 changes: 8 additions & 3 deletions source/delegate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/delegate",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Delegated On-chain Trading Rules",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -23,9 +25,12 @@
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/swap-erc20": "5.0.0"
"@airswap/utils": "5.0.2",
"@airswap/swap-erc20": "5.0.1"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 7 additions & 2 deletions source/pool/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/pool",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Withdrawable Token Pool",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -24,8 +26,11 @@
"owners": "hardhat run ./scripts/owner.js",
"balances": "hardhat run ./scripts/balances.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/utils": "5.0.2",
"@airswap/merkle": "0.0.2",
"@openzeppelin/contracts": "^4.8.3"
},
Expand Down
9 changes: 7 additions & 2 deletions source/registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/registry",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Server Registry",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -23,8 +25,11 @@
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/utils": "5.0.2",
"@openzeppelin/contracts": "^4.8.3"
},
"publishConfig": {
Expand Down
9 changes: 7 additions & 2 deletions source/staking/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/staking",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Stake Tokens",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -23,8 +25,11 @@
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/utils": "5.0.2",
"@openzeppelin/contracts": "^4.8.3"
},
"publishConfig": {
Expand Down
11 changes: 8 additions & 3 deletions source/swap-erc20/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/swap-erc20",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Atomic ERC20 Token Swap",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -23,9 +25,12 @@
"verify": "hardhat run ./scripts/verify.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/staking": "5.0.0",
"@airswap/utils": "5.0.0",
"@airswap/staking": "5.0.1",
"@airswap/utils": "5.0.2",
"solady": "0.0.173"
},
"publishConfig": {
Expand Down
9 changes: 7 additions & 2 deletions source/swap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/swap",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Atomic Token Swap",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -25,8 +27,11 @@
"verify-adapters": "hardhat run ./scripts/verify-adapters.js",
"owners": "hardhat run ./scripts/owner.js"
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/utils": "5.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.7",
"@openzeppelin/contracts": "^4.8.3"
},
Expand Down
8 changes: 5 additions & 3 deletions source/wrapper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/wrapper",
"version": "5.0.0",
"version": "5.0.1",
"description": "AirSwap: Wrap and Unwrap Native Tokens",
"license": "MIT",
"repository": {
Expand All @@ -12,6 +12,8 @@
"./typechain",
"./deploys*"
],
"main": "typechain/index.js",
"types": "typechain/index.ts",
"scripts": {
"clean": "rm -rf ./cache && rm -rf ./build && rm -rf ./typechain",
"compile": "hardhat compile; yarn typechain",
Expand All @@ -24,8 +26,8 @@
"owners": "hardhat run ./scripts/owner.js"
},
"devDependencies": {
"@airswap/utils": "5.0.0",
"@airswap/swap-erc20": "5.0.0",
"@airswap/utils": "5.0.2",
"@airswap/swap-erc20": "5.0.1",
"@openzeppelin/contracts": "^4.8.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0"
},
Expand Down
19 changes: 10 additions & 9 deletions tools/libraries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airswap/libraries",
"version": "5.0.0",
"version": "5.0.3",
"description": "AirSwap: Libraries for Developers",
"repository": {
"type": "git",
Expand All @@ -22,15 +22,16 @@
"test:ci": "yarn test"
},
"dependencies": {
"@airswap/batch-call": "5.0.0",
"@airswap/batch-call": "5.0.1",
"@airswap/jsonrpc-client-websocket": "0.0.1",
"@airswap/pool": "5.0.0",
"@airswap/registry": "5.0.0",
"@airswap/staking": "5.0.0",
"@airswap/swap": "5.0.0",
"@airswap/swap-erc20": "5.0.0",
"@airswap/utils": "5.0.0",
"@airswap/wrapper": "5.0.0",
"@airswap/delegate": "5.0.1",
"@airswap/pool": "5.0.1",
"@airswap/registry": "5.0.1",
"@airswap/staking": "5.0.1",
"@airswap/swap": "5.0.1",
"@airswap/swap-erc20": "5.0.1",
"@airswap/utils": "5.0.2",
"@airswap/wrapper": "5.0.1",
"browser-or-node": "^2.1.1",
"ethers": "^5.7.2",
"jayson": "^4.0.0",
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": "5.0.0",
"version": "5.0.1",
"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": "5.0.0",
"@airswap/utils": "5.0.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": "5.0.0",
"version": "5.0.2",
"description": "AirSwap: Utilities for Developers",
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 4f41b48

Please sign in to comment.