github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/feesplit/types/events.go (about)

     1  package types
     2  
     3  // feesplit events
     4  const (
     5  	EventTypeRegisterFeeSplit      = "register_fee_split"
     6  	EventTypeCancelFeeSplit        = "cancel_fee_split"
     7  	EventTypeUpdateFeeSplit        = "update_fee_split"
     8  	EventTypeDistributeDevFeeSplit = "distribute_dev_fee_split"
     9  
    10  	AttributeKeyContract          = "contract"
    11  	AttributeKeyWithdrawerAddress = "withdrawer_address"
    12  
    13  	InnerTxFeesplit = "fee-split"
    14  )