ipld-eth-server/pkg/transformers/shared/constants/label.go
Elizabeth 128d20c9bf Vdb 269- fetch logs by hash (#122)
* Upgrade geth from 1.8.15 to 1.8.18

* Update vat_tune to use shared repository methods

* Query blockchain by block hash instead of block number range

* Remove hash validation from repositories

* Fix vow flog integration test

* Update README Travis build sticker

* Update constants formatting per go fmt

* Update EthPublicKeyParser.ParsePublicKey to use discv5.PubkeyID method

* Address PR comments
2018-11-21 09:30:00 -06:00

66 lines
1.6 KiB
Go

package constants
var (
BiteLabel = "bite"
CatFileChopLumpLabel = "catFileChopLump"
CatFileFlipLabel = "catFileFlip"
CatFilePitVowLabel = "catFilePitVow"
DealLabel = "deal"
DentLabel = "dent"
DripDripLabel = "dripDrip"
DripFileIlkLabel = "dripFileIlk"
DripFileRepoLabel = "dripFileRepo"
DripFileVowLabel = "dripFileVow"
FlapKickLabel = "flapKick"
FlipKickLabel = "flipKick"
FlopKickLabel = "flopKick"
FrobLabel = "frob"
PitFileDebtCeilingLabel = "pitFileDebtCeiling"
PitFileIlkLabel = "pitFileIlk"
PriceFeedLabel = "priceFeed"
TendLabel = "tend"
VatFluxLabel = "vatFlux"
VatFoldLabel = "vatFold"
VatGrabLabel = "vatGrab"
VatHealLabel = "vatHeal"
VatInitLabel = "vatInit"
VatMoveLabel = "vatMove"
VatSlipLabel = "vatSlip"
VatTollLabel = "vatToll"
VatTuneLabel = "vatTune"
VowFlogLabel = "vowFlog"
)
func AllTransformerLabels() []string {
return []string{
BiteLabel,
CatFileChopLumpLabel,
CatFileFlipLabel,
CatFilePitVowLabel,
DealLabel,
DentLabel,
DripDripLabel,
DripFileIlkLabel,
DripFileRepoLabel,
DripFileVowLabel,
FlapKickLabel,
FlipKickLabel,
FlopKickLabel,
FrobLabel,
PitFileDebtCeilingLabel,
PitFileIlkLabel,
PriceFeedLabel,
TendLabel,
VatFluxLabel,
VatFoldLabel,
VatGrabLabel,
VatHealLabel,
VatInitLabel,
VatMoveLabel,
VatSlipLabel,
VatTollLabel,
VatTuneLabel,
VowFlogLabel,
}
}