Skip to content

Commit

Permalink
Update ICommunityPool
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaStebaev committed Oct 9, 2024
1 parent e8f3296 commit 5316516
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts/mainnet/ICommunityPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ interface ICommunityPool is ITwin {
IMessageProxyForMainnet messageProxyValue
) external;
function refundGasByUser(
bytes32 schainHash,
SchainHash schainHash,
address payable node,
address user,
uint256 gas
Expand All @@ -46,11 +46,11 @@ interface ICommunityPool is ITwin {
function setMinTransactionGas(uint256 newMinTransactionGas) external;
function setMultiplier(uint256 newMultiplierNumerator, uint256 newMultiplierDivider) external;
function refundGasBySchainWallet(
bytes32 schainHash,
SchainHash schainHash,
address payable node,
uint256 gas
) external returns (bool);
function getBalance(address user, string calldata schainName) external view returns (uint256);
function checkUserBalance(bytes32 schainHash, address receiver) external view returns (bool);
function getRecommendedRechargeAmount(bytes32 schainHash, address receiver) external view returns (uint256);
function checkUserBalance(SchainHash schainHash, address receiver) external view returns (bool);
function getRecommendedRechargeAmount(SchainHash schainHash, address receiver) external view returns (uint256);
}

0 comments on commit 5316516

Please sign in to comment.