github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/vmbridge/types/keys.go (about) 1 package types 2 3 const ( 4 // ModuleName is the name of the contract module 5 ModuleName = "vmbridge" 6 7 // StoreKey is the string store representation 8 StoreKey = ModuleName 9 10 // TStoreKey is the string transient store representation 11 TStoreKey = "transient_" + ModuleName 12 13 // QuerierRoute is the querier route for the wasm module 14 QuerierRoute = ModuleName 15 16 // RouterKey is the msg router key for the wasm module 17 RouterKey = ModuleName 18 )