EcoPot plan contract to be paid to staking users. One token can be distributed per Ecopot project, and only authorized operators can plan and proceed.
Contract adress after production is deployed (scope link)
Initialized
event Initialized(uint totalAmount, uint amountPerBlock, uint distributableBlock, uint estimateEndBlock);
Event log of Ecopot initialized
Parameters
totalAmount : Amount of tokens to be distribute
totalAmount
amountPerBlock : Amount of tokens to be distributed per block
amountPerBlock
distributableBlock : Start Block number
distributableBlock
estimateEndBlock : Estimate block number of EcoPot be ended
estimateEndBlock
Deposit
event Deposit(uint amount, uint totalAmount, uint estimateEndBlock);
Event log of tokens deposit
amount : Deposit token amount
amount
totalAmount : Deposit token total amount
Removed
Event log of Ecopot removed
operator : Operator address
operator
token : Token address of distributed
token
remainedBalance : Token amount of remained
remainedBalance
ChangeAvailable
Event log of state changed
GiveReward
Event log of when reward is claimed
user : User address
user
amount : Amount of token claimed
currentIndex: Index result of the Ecopot of the wallet after claiming
currentIndex
userRewardSum : Amount of KSP that has been accrued so far
userRewardSum
EcoPot Project name
18
KIP7 token address
Amount of tokens to be distribute
Amount of tokens distributed
Block number to distribute start
Estimate block number of EcoPot be ended
블럭당 배분되는 Token 수량
isAvailable
Returns if the EcoPot is availabled
mapping(address => uint)
EcoPot reward amount by each user address
event Removed(address operator, address token, uint estimateEndBlock, uint remainedBalance);
event ChangeAvailable(bool b);
event GiveReward(address user, uint amount, uint currentIndex, uint userRewardSum);