github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/baseapp/const.go (about) 1 package baseapp 2 3 const ( 4 //----- DeliverTx 5 DeliverTx = "DeliverTx" 6 TxDecoder = "TxDecoder" 7 RunTx = "RunTx" 8 9 //----- RunTx details 10 ValTxMsgs = "valTxMsgs" 11 RunAnte = "RunAnte" 12 RunMsg = "RunMsg" 13 Refund = "refund" 14 EvmHandler = "EvmHandler" 15 16 //------ RunAnte details 17 CacheTxContext = "cacheTxContext" 18 AnteChain = "AnteChain" 19 AnteOther = "AnteOther" 20 CacheStoreWrite = "cacheStoreWrite" 21 22 //----- RunMsgs details 23 24 25 26 27 //----- handler details 28 ParseChainID = "ParseChainID" 29 VerifySig = "VerifySig" 30 Txhash = "txhash" 31 SaveTx = "SaveTx" 32 TransitionDb = "TransitionDb" 33 Bloomfilter = "Bloomfilter" 34 EmitEvents = "EmitEvents" 35 HandlerDefer = "handler_defer" 36 )