DealInterestDiscovery
Contract behaviors:
registerInterest(dealUuid,wallet,amount) (can be called multiple times to update previous
value)getRegisteredAmount( string memory dealUuid, address wallet )
dealsWalletsCount(dealUuid)
Contract properties:
mapping(string => mapping(address => uint256)) walletsDealsDeposits
mapping(string => address[]) public dealsWallets //can be multiple times!
mapping(string => uint256) dealsInterest
mapping(string => uint256) dealsLastChangeAt
lastChangeAt
Contract events:
event WalletRegistered(string dealUuid, address wallet, uint256 amount)
Roles:
-
Admin-only functions:
-
CA:
Last updated