-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(flash-swap): mark "@ethersproject/{abi,bytes,providers}" as normal deps instead of dev build(flash-swap): upgrade to "@hifi/protocol" v1.7.0 build(flash-swap): upgrade to "ethers" v5.5.1 test(flash-swap): update imports to use the latest API of the "@hifi/protocol" package
- Loading branch information
Showing
9 changed files
with
56 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file. | |
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.6.0] - 2021-10-20 | ||
|
||
### Changed | ||
|
||
- Mark `@ethersproject/abi`, `@ethersproject/bytes` and `@ethersproject/providers` as normal deps instead of dev deps. | ||
- Move types from `typechain` directory to `dist/types`. | ||
- Ship declaration maps and source maps with the npm package. | ||
- Upgrade to `@hifi/protocol` v1.7.0. | ||
- Upgrade to `@paulrberg/contracts` v3.6.1. | ||
- Upgrade to `ethers` v5.5.1. | ||
- Upgrade to Solidity v0.8.9. | ||
|
||
### Fixed | ||
|
||
- Check `mintedHTokenAmount` against `debtAmount` in the `HifiFlashUniswapV2` contract. | ||
|
||
## Removed | ||
|
||
- `artifacts` from npm package. | ||
|
||
## [1.5.0] - 2021-09-24 | ||
|
||
### Changed | ||
|
@@ -93,6 +113,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | |
|
||
- First release of the package. | ||
|
||
[1.6.0]: https://github.com/hifi-finance/hifi/compare/@hifi/[email protected]...@hifi/[email protected] | ||
[1.5.0]: https://github.com/hifi-finance/hifi/compare/@hifi/[email protected]...@hifi/[email protected] | ||
[1.4.0]: https://github.com/hifi-finance/hifi/compare/@hifi/[email protected]...@hifi/[email protected] | ||
[1.3.1]: https://github.com/hifi-finance/hifi/compare/@hifi/[email protected]...@hifi/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: Unlicense | ||
pragma solidity >=0.8.4; | ||
|
||
import "@hifi/protocol/contracts/core/balanceSheet/BalanceSheetV1.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: Unlicense | ||
pragma solidity >=0.8.4; | ||
|
||
import "@hifi/protocol/contracts/oracles/ChainlinkOperator.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: Unlicense | ||
pragma solidity >=0.8.4; | ||
|
||
import "@hifi/protocol/contracts/core/fintroller/FintrollerV1.sol"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@hifi/flash-swap", | ||
"description": "Flash swap implementations for liquidating underwater accounts", | ||
"version": "1.5.0", | ||
"version": "1.6.0", | ||
"author": { | ||
"name": "Hifi", | ||
"email": "[email protected]", | ||
|
@@ -11,19 +11,19 @@ | |
"url": "https://github.com/hifi-finance/hifi/issues" | ||
}, | ||
"dependencies": { | ||
"@hifi/protocol": "1.6.0", | ||
"@ethersproject/abi": "^5.5.0", | ||
"@ethersproject/bytes": "^5.5.0", | ||
"@ethersproject/providers": "^5.5.0", | ||
"@hifi/protocol": "1.7.0", | ||
"@paulrberg/contracts": "3.6.1", | ||
"@uniswap/v2-core": "1.0.1", | ||
"ethers": "^5.5.1" | ||
}, | ||
"devDependencies": { | ||
"@ethersproject/abi": "^5.5.0", | ||
"@ethersproject/abstract-signer": "^5.5.0", | ||
"@ethersproject/bignumber": "^5.5.0", | ||
"@ethersproject/bytes": "^5.5.0", | ||
"@ethersproject/constants": "^5.5.0", | ||
"@ethersproject/keccak256": "^5.5.0", | ||
"@ethersproject/providers": "^5.5.0", | ||
"@hifi/errors": "workspace:*", | ||
"@hifi/helpers": "workspace:*", | ||
"@nomiclabs/hardhat-ethers": "^2.0.2", | ||
|
@@ -81,10 +81,10 @@ | |
], | ||
"license": "LGPL-3.0-or-later", | ||
"peerDependencies": { | ||
"@hifi/protocol": "1.6.0", | ||
"@hifi/protocol": "1.7.0", | ||
"@paulrberg/contracts": "3.6.1", | ||
"@uniswap/v2-core": "1.0.1", | ||
"ethers": "^5.4.7" | ||
"ethers": "^5.5.1" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters