Skip to content

Commit

Permalink
update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
d10r committed Dec 31, 2024
1 parent 880c7de commit 71bca90
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/ethereum-contracts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Added
- Superfluid Pools now implement `IERC20Metadata`, thus going forward have a name, symbol and decimals
- `ISuperfluidPool.createPoolWithCustomERC20Metadata` for creating pools with custom ERC20 metadata
- `IGeneralDistributionAgreementV1.createPoolWithCustomERC20Metadata` and `SuperTokenV1Library.createPoolWithCustomERC20Metadata` for creating pools with custom ERC20 metadata

### Changed
- Fixed deployment of SimpleForwarder (solved an issue which caused batch operation `OPERATION_TYPE_SIMPLE_FORWARD_CALL` to always revert)
- `SuperTokenV1Library.distributeFlow`: return `actualFlowRate`
- `SuperTokenV1Library.distribute`: return `actualAmount`

## [v1.12.0]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1398,7 +1398,7 @@ library SuperTokenV1Library {
* @param pool The Superfluid Pool address.
* @param requestedFlowRate The flow rate of tokens to distribute.
* @return actualFlowRate The flowrate actually set, which is equal or smaller than `requestedFlowRate`,
* depending on pool state - see IGeneralDistributionAgreement.estimateFlowDistributionActualFlowRate().
* depending on pool state - see IGeneralDistributionAgreementV1.estimateFlowDistributionActualFlowRate().
*/
function distributeFlow(ISuperToken token, address from, ISuperfluidPool pool, int96 requestedFlowRate)
internal
Expand All @@ -1415,7 +1415,7 @@ library SuperTokenV1Library {
* @param requestedFlowRate The flow rate of tokens to distribute.
* @param userData User-specific data.
* @return actualFlowRate The flowrate actually set, which is equal or smaller than `requestedFlowRate`,
* depending on pool state - see IGeneralDistributionAgreement.estimateFlowDistributionActualFlowRate().
* depending on pool state - see IGeneralDistributionAgreementV1.estimateFlowDistributionActualFlowRate().
*/
function distributeFlow(
ISuperToken token,
Expand Down

0 comments on commit 71bca90

Please sign in to comment.