Skip to content

Commit

Permalink
feat: move BalanceTracker contract to separate repository (#14)
Browse files Browse the repository at this point in the history
* chore: sync files with all repos
* chore: update scripts
* chore: remove balance tracker
* chore: remove balance tracker
* build: update `.openzeppelin` network files after rebase
* feat: delete unnecessary contracts
* feat: update `@author` comment
* feat: update `deployProxy` script
* Revert "feat: update `deployProxy` script"
This reverts commit fe64ed2.
---------
Co-authored-by: Igor Senych <[email protected]>
  • Loading branch information
ihoroleksiienko authored Nov 18, 2024
1 parent 79e0fd7 commit 9bf91be
Show file tree
Hide file tree
Showing 22 changed files with 45 additions and 2,948 deletions.
748 changes: 26 additions & 722 deletions .openzeppelin/unknown-2008.json

Large diffs are not rendered by default.

709 changes: 6 additions & 703 deletions .openzeppelin/unknown-2009.json

Large diffs are not rendered by default.

323 changes: 0 additions & 323 deletions contracts/BalanceTracker.sol

This file was deleted.

2 changes: 1 addition & 1 deletion contracts/YieldStreamer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { Versionable } from "./base/Versionable.sol";

/**
* @title YieldStreamer contract
* @author CloudWalk Inc.
* @author CloudWalk Inc. (See https://cloudwalk.io)
* @dev The contract that supports yield streaming based on a minimum balance over a period
*/
contract YieldStreamer is
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/BlocklistableUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/O

/**
* @title BlocklistableUpgradeable base contract
* @author CloudWalk Inc.
* @author CloudWalk Inc. (See https://cloudwalk.io)
* @notice Allows to blocklist and unblocklist accounts using the `blocklister` account
* @dev This contract is used through inheritance. It makes available the modifier `notBlocklisted`,
* which can be applied to functions to restrict their usage to not blocklisted accounts only.
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/PausableExtUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { PausableUpgradeable } from "@openzeppelin/contracts-upgradeable/securit

/**
* @title PausableExtUpgradeable base contract
* @author CloudWalk Inc.
* @author CloudWalk Inc. (See https://cloudwalk.io)
* @notice Extends the OpenZeppelin's {PausableUpgradeable} contract by adding the `pauser` account
* @dev This contract is used through inheritance. It introduces the `pauser` role that is allowed to
* trigger the paused or unpaused state of the contract that is inherited from this one.
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/RescuableUpgradeable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/O

/**
* @title RescuableUpgradeable base contract
* @author CloudWalk Inc.
* @author CloudWalk Inc. (See https://cloudwalk.io)
* @notice Allows to rescue ERC20 tokens locked up in the contract using the `rescuer` account
* @dev This contract is used through inheritance. It introduces the `rescuer` role that is allowed
* to rescue tokens locked up in the contract that is inherited from this one.
Expand Down
Loading

0 comments on commit 9bf91be

Please sign in to comment.