Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.07 KB | None | 0 0
  1. Celo Contracts Events.
  2.  
  3. Account.sol:
  4. event AttestationSignerAuthorized(address indexed account, address signer);
  5. event VoteSignerAuthorized(address indexed account, address signer);
  6. event ValidatorSignerAuthorized(address indexed account, address signer);
  7. event AttestationSignerRemoved(address indexed account, address oldSigner);
  8. event VoteSignerRemoved(address indexed account, address oldSigner);
  9. event ValidatorSignerRemoved(address indexed account, address oldSigner);
  10. event AccountDataEncryptionKeySet(address indexed account, bytes dataEncryptionKey);
  11. event AccountNameSet(address indexed account, string name);
  12. event AccountMetadataURLSet(address indexed account, string metadataURL);
  13. event AccountWalletAddressSet(address indexed account, address walletAddress);
  14. event AccountCreated(address indexed account);
  15.  
  16. GasPrixeMinimum.sol:
  17. event TargetDensitySet(uint256 targetDensity);
  18. event GasPriceMinimumFloorSet(uint256 gasPriceMinimumFloor);
  19. event AdjustmentSpeedSet(uint256 adjustmentSpeed);
  20.  
  21. GoldToken.sol:
  22. event Transfer(address indexed from, address indexed to, uint256 value);
  23. event TransferComment(string comment);
  24. event Approval(address indexed owner, address indexed spender, uint256 value);
  25.  
  26. IERC20Token.sol:
  27. event Transfer(address indexed from, address indexed to, uint256 value);
  28. event Approval(address indexed owner, address indexed spender, uint256 value);
  29.  
  30. Multisig.sol:
  31. event Confirmation(address indexed sender, uint256 indexed transactionId);
  32. event Revocation(address indexed sender, uint256 indexed transactionId);
  33. event Submission(uint256 indexed transactionId);
  34. event Execution(uint256 indexed transactionId);
  35. event ExecutionFailure(uint256 indexed transactionId);
  36. event Deposit(address indexed sender, uint256 value);
  37. event OwnerAddition(address indexed owner);
  38. event OwnerRemoval(address indexed owner);
  39. event RequirementChange(uint256 required);
  40.  
  41. Proxy.sol:
  42. event OwnerSet(address indexed owner);
  43. event ImplementationSet(address indexed implementation);
  44.  
  45. Registry.sol:
  46. event RegistryUpdated(string identifier, bytes32 indexed identifierHash, address addr);
  47.  
  48. UsingRegistry.sol:
  49. event RegistrySet(address indexed registryAddress);
  50.  
  51. BlockchainParameters.sol:
  52. event MinimumClientVersionSet(uint256 major, uint256 minor, uint256 patch);
  53. event IntrinsicGasForAlternativeFeeCurrencySet(uint256 gas);
  54. event BlockGasLimitSet(uint256 limit);
  55.  
  56. DoubleSigningSlasher.sol:
  57. event SlashingIncentivesSet(uint256 penalty, uint256 reward);
  58.  
  59. DowntimeSlasher.sol:
  60. event SlashableDowntimeSet(uint256 interval);
  61.  
  62. Election.sol:
  63. event ElectableValidatorsSet(uint256 min, uint256 max);
  64. event MaxNumGroupsVotedForSet(uint256 maxNumGroupsVotedFor);
  65. event ElectabilityThresholdSet(uint256 electabilityThreshold);
  66. event ValidatorGroupMarkedEligible(address group);
  67. event ValidatorGroupMarkedIneligible(address group);
  68. event ValidatorGroupVoteCast(address indexed account, address indexed group, uint256 value);
  69. event ValidatorGroupVoteActivated(address indexed account, address indexed group, uint256 value);
  70. event ValidatorGroupVoteRevoked(address indexed account, address indexed group, uint256 value);
  71. event EpochRewardsDistributedToVoters(address indexed group, uint256 value);
  72.  
  73. EpochRewards.sol:
  74. event TargetVotingGoldFractionSet(uint256 fraction);
  75. event TargetValidatorEpochPaymentSet(uint256 payment);
  76. event TargetVotingYieldParametersSet(uint256 max, uint256 adjustmentFactor);
  77. event RewardsMultiplierParametersSet(uint256 max, uint256 underspendAdjustmentFactor, uint256 overspendAdjustmentFactor);
  78. event TargetVotingYieldUpdated(uint256 fraction);
  79.  
  80. Governance.sol:
  81. event ApproverSet(address approver);
  82. event ConcurrentProposalsSet(uint256 concurrentProposals);
  83. event MinDepositSet(uint256 minDeposit);
  84. event QueueExpirySet(uint256 queueExpiry);
  85. event DequeueFrequencySet(uint256 dequeueFrequency);
  86. event ApprovalStageDurationSet(uint256 approvalStageDuration);
  87. event ReferendumStageDurationSet(uint256 referendumStageDuration);
  88. event ExecutionStageDurationSet(uint256 executionStageDuration);
  89. event ConstitutionSet(address indexed destination, bytes4 indexed functionId, uint256 threshold);
  90. event ProposalQueued(uint256 indexed proposalId, address indexed proposer, uint256 transactionCount, uint256 deposit, uint256 timestamp);
  91. event ProposalUpvoted(uint256 indexed proposalId, address indexed account, uint256 upvotes);
  92. event ProposalUpvoteRevoked( uint256 indexed proposalId, address indexed account, uint256 revokedUpvotes);
  93. event ProposalDequeued(uint256 indexed proposalId, uint256 timestamp);
  94. event ProposalApproved(uint256 indexed proposalId);
  95. event ProposalVoted( uint256 indexed proposalId, address indexed account, uint256 value, uint256 weight);
  96. event ProposalExecuted(uint256 indexed proposalId);
  97. event ProposalExpired(uint256 proposalId);
  98. event ParticipationBaselineUpdated(uint256 participationBaseline);
  99. event ParticipationFloorSet(uint256 participationFloor);
  100. event ParticipationBaselineUpdateFactorSet(uint256 baselineUpdateFactor);
  101. event ParticipationBaselineQuorumFactorSet(uint256 baselineQuorumFactor);
  102. event HotfixWhitelisted(bytes32 indexed hash, address whitelister);
  103. event HotfixApproved(bytes32 indexed hash);
  104. event HotfixPrepared(bytes32 indexed hash, uint256 indexed epoch);
  105. event HotfixExecuted(bytes32 indexed hash);
  106.  
  107. GovernanceSlasher.sol:
  108. event SlashingApproved(address indexed account, uint256 amount);
  109.  
  110. LockedGold.sol:
  111. event UnlockingPeriodSet(uint256 period);
  112. event GoldLocked(address indexed account, uint256 value);
  113. event GoldUnlocked(address indexed account, uint256 value, uint256 available);
  114. event GoldWithdrawn(address indexed account, uint256 value);
  115. event SlasherWhitelistAdded(string indexed slasherIdentifier);
  116. event SlasherWhitelistRemoved(string indexed slasherIdentifier);
  117. event AccountSlashed(address indexed slashed, uint256 penalty, address indexed reporter, uint256 reward);
  118.  
  119. SlasherUtils.sol:
  120. event SlashingIncentivesSet(uint256 penalty, uint256 reward);
  121.  
  122. Validators.sol:
  123. event MaxGroupSizeSet(uint256 size);
  124. event ValidatorEpochPaymentSet(uint256 value);
  125. event ValidatorScoreParametersSet(uint256 exponent, uint256 adjustmentSpeed);
  126. event GroupLockedGoldRequirementsSet(uint256 value, uint256 duration);
  127. event ValidatorLockedGoldRequirementsSet(uint256 value, uint256 duration);
  128. event MembershipHistoryLengthSet(uint256 length);
  129. event ValidatorRegistered(address indexed validator, bytes ecdsaPublicKey, bytes blsPublicKey);
  130. event ValidatorDeregistered(address indexed validator);
  131. event ValidatorAffiliated(address indexed validator, address indexed group);
  132. event ValidatorDeaffiliated(address indexed validator, address indexed group);
  133. event ValidatorEcdsaPublicKeyUpdated(address indexed validator, bytes ecdsaPublicKey);
  134. event ValidatorBlsPublicKeyUpdated(address indexed validator, bytes blsPublicKey);
  135. event ValidatorScoreUpdated(address indexed validator, uint256 score, uint256 epochScore);
  136. event ValidatorGroupRegistered(address indexed group, uint256 commission);
  137. event ValidatorGroupDeregistered(address indexed group);
  138. event ValidatorGroupMemberAdded(address indexed group, address indexed validator);
  139. event ValidatorGroupMemberRemoved(address indexed group, address indexed validator);
  140. event ValidatorGroupMemberReordered(address indexed group, address indexed validator);
  141. event ValidatorGroupCommissionUpdated(address indexed group, uint256 commission);
  142. event ValidatorEpochPaymentDistributed(address indexed validator, uint256 validatorPayment, address indexed group, uint256 groupPayment);
  143.  
  144. Attestations.sol:
  145. event AttestationsRequested(bytes32 indexed identifier, address indexed account, uint256 attestationsRequested, address attestationRequestFeeToken);
  146. event AttestationIssuerSelected( bytes32 indexed identifier, address indexed account, address indexed issuer, address attestationRequestFeeToken);
  147. event AttestationCompleted( bytes32 indexed identifier, address indexed account, address indexed issuer);
  148. event Withdrawal(address indexed account, address indexed token, uint256 amount);
  149. event AttestationExpiryBlocksSet(uint256 value);
  150. event AttestationRequestFeeSet(address indexed token, uint256 value);
  151. event SelectIssuersWaitBlocksSet(uint256 value);
  152.  
  153. Escrow.sol:
  154. event Transfer(address indexed from, bytes32 indexed identifier, address indexed token, uint256 value, address paymentId, uint256 minAttestations);
  155. event Withdrawal( bytes32 indexed identifier, address indexed to, address indexed token, uint256 value, address paymentId);
  156. event Revocation( bytes32 indexed identifier, address indexed by, address indexed token, uint256 value, address paymentId);
  157.  
  158. Random.sol:
  159. event RandomnessBlockRetentionWindowSet(uint256 value);
  160.  
  161. Reserve.sol:
  162. event TobinTaxStalenessThresholdSet(uint256 value);
  163. event DailySpendingRatioSet(uint256 ratio);
  164. event TokenAdded(address token);
  165. event TokenRemoved(address token, uint256 index);
  166. event SpenderAdded(address spender);
  167. event SpenderRemoved(address spender);
  168. event OtherReserveAddressAdded(address otherReserveAddress);
  169. event OtherReserveAddressRemoved(address otherReserveAddress, uint256 index);
  170. event AssetAllocationSet(bytes32[] symbols, uint256[] weights);
  171.  
  172. SortedOracles.sol:
  173. event OracleAdded(address indexed token, address indexed oracleAddress);
  174. event OracleRemoved(address indexed token, address indexed oracleAddress);
  175. event OracleReported(address token, address oracle, uint256 timestamp, uint256 numerator, uint256 denominator);
  176. event OracleReportRemoved(address indexed token, address indexed oracle);
  177. event MedianUpdated(address token, uint256 numerator, uint256 denominator);
  178. event ReportExpirySet(uint256 reportExpiry);
  179.  
  180. StableToken.sol:
  181. event InflationFactorUpdated(uint256 factor, uint256 lastUpdated);
  182. event InflationParametersUpdated(uint256 rate, uint256 updatePeriod, uint256 lastUpdated);
  183. event Transfer(address indexed from, address indexed to, uint256 value);
  184. event TransferComment(string comment);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement