Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Feb 25, 2024
1 parent 180efbe commit d8ee4ac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
2 changes: 2 additions & 0 deletions packages/protocol/contracts/L1/tiers/DevnetTierProvider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ pragma solidity 0.8.24;
import "../../common/EssentialContract.sol";
import "./ITierProvider.sol";

/// @title DevnetTierProvider
/// @dev Labeled in AddressResolver as "tier_provider"
contract DevnetTierProvider is EssentialContract, ITierProvider {
uint256[50] private __gap;

Expand Down
6 changes: 0 additions & 6 deletions packages/protocol/contracts/L1/tiers/MainnetTierProvider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ import "./ITierProvider.sol";

/// @title MainnetTierProvider
/// @dev Labeled in AddressResolver as "tier_provider"
/// @dev Assuming liveness bound is 250TKO.
// Taiko token's total supply is 1 billion. Assuming block time is 2 second, and
// the cool down period is 2 days. In 2 days, we can have (2*86400/2)=86400
// blocks. Assuming 10% tokens are used in bonds, then each block may use up to
// these many tokens: 1,000,000,000 * 10% / 86400=1157 TOK per block, which is
// about 722 USD.
contract MainnetTierProvider is EssentialContract, ITierProvider {
uint256[50] private __gap;

Expand Down
6 changes: 0 additions & 6 deletions packages/protocol/contracts/L1/tiers/TestnetTierProvider.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@ import "./ITierProvider.sol";

/// @title TestnetTierProvider
/// @dev Labeled in AddressResolver as "tier_provider"
/// @dev Assuming liveness bound is 250TKO.
// Taiko token's total supply is 1 billion. Assuming block time is 2 second, and
// the cool down period is 2 days. In 2 days, we can have (2*86400/2)=86400
// blocks. Assuming 10% tokens are used in bonds, then each block may use up to
// these many tokens: 1,000,000,000 * 10% / 86400=1157 TOK per block, which is
// about 722 USD.
contract TestnetTierProvider is EssentialContract, ITierProvider {
uint256[50] private __gap;

Expand Down

0 comments on commit d8ee4ac

Please sign in to comment.