Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Deploy vector-0.2.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm committed Mar 3, 2021
2 parents 88d9dd9 + 20dfc1f commit 0291aee
Show file tree
Hide file tree
Showing 38 changed files with 717 additions and 267 deletions.
4 changes: 2 additions & 2 deletions modules/auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"test": "ts-mocha --check-leaks --exit --timeout 60000 'src/**/*.spec.ts'"
},
"dependencies": {
"@connext/vector-types": "0.2.0-beta.1",
"@connext/vector-utils": "0.2.0-beta.1",
"@connext/vector-types": "0.2.0-beta.4",
"@connext/vector-utils": "0.2.0-beta.4",
"@sinclair/typebox": "0.12.7",
"crypto": "1.0.1",
"fastify": "3.8.0",
Expand Down
10 changes: 5 additions & 5 deletions modules/browser-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connext/vector-browser-node",
"version": "0.2.0-beta.1",
"version": "0.2.0-beta.4",
"author": "",
"license": "ISC",
"description": "",
Expand All @@ -17,10 +17,10 @@
"test": "ts-mocha --bail --check-leaks --exit --timeout 60000 'src/**/*.spec.ts'"
},
"dependencies": {
"@connext/vector-contracts": "0.2.0-beta.1",
"@connext/vector-engine": "0.2.0-beta.1",
"@connext/vector-types": "0.2.0-beta.1",
"@connext/vector-utils": "0.2.0-beta.1",
"@connext/vector-contracts": "0.2.0-beta.4",
"@connext/vector-engine": "0.2.0-beta.4",
"@connext/vector-types": "0.2.0-beta.4",
"@connext/vector-utils": "0.2.0-beta.4",
"@ethersproject/address": "5.0.8",
"@ethersproject/bignumber": "5.0.12",
"@ethersproject/constants": "5.0.7",
Expand Down
6 changes: 3 additions & 3 deletions modules/contracts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connext/vector-contracts",
"version": "0.2.0-beta.1",
"version": "0.2.0-beta.4",
"license": "ISC",
"description": "Smart contracts powering Connext's minimalist channel platform",
"keywords": [
Expand Down Expand Up @@ -28,8 +28,8 @@
},
"dependencies": {
"@connext/pure-evm-wasm": "0.1.4",
"@connext/vector-types": "0.2.0-beta.1",
"@connext/vector-utils": "0.2.0-beta.1",
"@connext/vector-types": "0.2.0-beta.4",
"@connext/vector-utils": "0.2.0-beta.4",
"@ethersproject/abi": "5.0.9",
"@ethersproject/abstract-provider": "5.0.7",
"@ethersproject/abstract-signer": "5.0.9",
Expand Down
18 changes: 18 additions & 0 deletions modules/documentation/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,27 @@

## Next Release

## 0.2.0-beta.4

- \[config\] - Remove config overrides with defaults

## 0.2.0-beta.3

- \[router\] Fix fees bugs
- \[node\] Remove fees from default config
- \[router,engine\] Fast exit if no fees configured
- \[utils\] Check for lower-cased token addresses from coingecko

## 0.2.0-beta.2

- \[router\] Fix fees bugs
- \[engine\] Add fees tests
- \[test-runner\] Fix tests to work with fees

## 0.2.0-beta.1

- \[router\] Fix fees bug

## 0.2.0-beta.0

- \[router\] Add fee collection config
Expand Down
10 changes: 5 additions & 5 deletions modules/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@connext/vector-engine",
"version": "0.2.0-beta.1",
"version": "0.2.0-beta.4",
"description": "",
"author": "Arjun Bhuptani",
"license": "MIT",
Expand All @@ -14,10 +14,10 @@
"test": "nyc ts-mocha --check-leaks --exit --timeout 60000 'src/**/*.spec.ts'"
},
"dependencies": {
"@connext/vector-contracts": "0.2.0-beta.1",
"@connext/vector-protocol": "0.2.0-beta.1",
"@connext/vector-types": "0.2.0-beta.1",
"@connext/vector-utils": "0.2.0-beta.1",
"@connext/vector-contracts": "0.2.0-beta.4",
"@connext/vector-protocol": "0.2.0-beta.4",
"@connext/vector-types": "0.2.0-beta.4",
"@connext/vector-utils": "0.2.0-beta.4",
"@ethersproject/address": "5.0.8",
"@ethersproject/bignumber": "5.0.12",
"@ethersproject/bytes": "5.0.8",
Expand Down
2 changes: 1 addition & 1 deletion modules/engine/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class ParameterConversionError extends EngineError {

static readonly reasons = {
CannotSendToSelf: "An initiator cannot be a receiver on the same chain",
CouldNotGetQuote: "Failed to get quote for withdrawal",
CouldNotGetQuote: "Failed to get quote",
CouldNotSignWithdrawal: "Failed to sign withdrawal commitment",
FailedToGetRegisteredTransfer: "Could not get transfer registry information",
FeeGreaterThanAmount: "Fees charged are greater than amount",
Expand Down
Loading

0 comments on commit 0291aee

Please sign in to comment.