Skip to content

Commit

Permalink
update license
Browse files Browse the repository at this point in the history
Signed-off-by: Francesco <[email protected]>
  • Loading branch information
fulminmaxi committed Dec 23, 2024
1 parent 18fc8ca commit 7f0c2d5
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ TokenFlow enables several key optimizations and use cases:
- Works with standard ERC20 tokens
- Works with fee-on-transfer tokens

## License

UNLICENSED

## Acknowledgements

- [0x Allowance Holder](https://github.com/0xProject/0x-settler/tree/master/src/allowanceholder) for the idea of transient storage allowance.
- [Permit2](https://github.com/Uniswap/permit2)
2 changes: 1 addition & 1 deletion script/TokenFlow.s.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {Script, console} from "forge-std/Script.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/TokenFlow.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {ITokenFlow, Constraint, BadNetflows, InvalidScope, IFlowScope} from "src/ITokenFlow.sol";
Expand Down
2 changes: 1 addition & 1 deletion src/TransientNetflows.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {EfficientHashLib} from "solady/utils/EfficientHashLib.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/TokenFlow.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {Test} from "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/TransientNetflows.t.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {Test} from "forge-std/Test.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/mocks/MockERC20.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {ERC20} from "solady/tokens/ERC20.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/mocks/MockFlowScope.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// SPDX-License-Identifier: UNLICENSED
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

import {IFlowScope, Constraint} from "src/ITokenFlow.sol";
Expand Down

0 comments on commit 7f0c2d5

Please sign in to comment.