github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/farm/types/events.go (about) 1 package types 2 3 // farm module event types 4 const ( 5 EventTypeCreatePool = "create-pool" 6 EventTypeDestroyPool = "destroy-pool" 7 EventTypeProvide = "provide" 8 EventTypeLock = "lock" 9 EventTypeUnlock = "unlock" 10 EventTypeClaim = "claim" 11 12 AttributeKeyAddress = "address" 13 AttributeKeyPool = "pool" 14 AttributeKeyStartHeightToYield = "start_height_to_yield" 15 AttributeKeyAmountYieldPerBlock = "amount_yield_per_block" 16 AttributeKeyMinLockAmount = "min_lock_amount" 17 AttributeKeyYieldToken = "yield_token" 18 AttributeKeyDeposit = "deposit" 19 AttributeKeyWithdraw = "withdraw" 20 AttributeKeyClaimed = "claimed" 21 22 AttributeValueCategory = ModuleName 23 )