ipld-eth-server/pkg/transformers/shared/constants/signature.go
Konstantin Zolotarev 65cb6e9092 VDB-205 Fix external configuration values (#121)
* Updated loading config from /Users/konstantinzolotarev/.vulcanizedb for addreses

* Updated contract addresses loading from env variables.

* Implement getter chain for addresses, configs and transformers

Solves the issue with declaring stuff as vars when the environment file hasn't been loaded yet. Instead, this data is fetched dynamically when the root commands are called.

* Update test data to use constant Kovan addresses

* Decouple integration tests from config file IO

* Add ABI to environment file, convert getter chains for related values

* Decouple tests suites from ABI config file IO

* Add startingBlock to environment and implement getter chain

* Exit when called without config file

* Add missing deployment blocks to staging.toml

* Remove comment
2019-01-23 19:44:09 +01:00

31 lines
2.6 KiB
Go

package constants
func GetBiteSignature() string { return GetEventSignature(biteMethod()) }
func GetCatFileChopLumpSignature() string { return GetLogNoteSignature(catFileChopLumpMethod()) }
func GetCatFileFlipSignature() string { return GetLogNoteSignature(catFileFlipMethod()) }
func GetCatFilePitVowSignature() string { return GetLogNoteSignature(catFilePitVowMethod()) }
func GetDealSignature() string { return GetLogNoteSignature(dealMethod()) }
func GetDentFunctionSignature() string { return GetLogNoteSignature(dentMethod()) }
func GetDripDripSignature() string { return GetLogNoteSignature(dripDripMethod()) }
func GetDripFileIlkSignature() string { return GetLogNoteSignature(dripFileIlkMethod()) }
func GetDripFileRepoSignature() string { return GetLogNoteSignature(dripFileRepoMethod()) }
func GetDripFileVowSignature() string { return GetLogNoteSignature(dripFileVowMethod()) }
func GetFlapKickSignature() string { return GetEventSignature(flapKickMethod()) }
func GetFlipKickSignature() string { return GetEventSignature(flipKickMethod()) }
func GetFlopKickSignature() string { return GetEventSignature(flopKickMethod()) }
func GetFrobSignature() string { return GetEventSignature(frobMethod()) }
func GetLogValueSignature() string { return GetEventSignature(logValueMethod()) }
func GetPitFileDebtCeilingSignature() string { return GetLogNoteSignature(pitFileDebtCeilingMethod()) }
func GetPitFileIlkSignature() string { return GetLogNoteSignature(pitFileIlkMethod()) }
func GetTendFunctionSignature() string { return GetLogNoteSignature(tendMethod()) }
func GetVatFluxSignature() string { return GetLogNoteSignature(vatFluxMethod()) }
func GetVatFoldSignature() string { return GetLogNoteSignature(vatFoldMethod()) }
func GetVatGrabSignature() string { return GetLogNoteSignature(vatGrabMethod()) }
func GetVatHealSignature() string { return GetLogNoteSignature(vatHealMethod()) }
func GetVatInitSignature() string { return GetLogNoteSignature(vatInitMethod()) }
func GetVatMoveSignature() string { return GetLogNoteSignature(vatMoveMethod()) }
func GetVatSlipSignature() string { return GetLogNoteSignature(vatSlipMethod()) }
func GetVatTollSignature() string { return GetLogNoteSignature(vatTollMethod()) }
func GetVatTuneSignature() string { return GetLogNoteSignature(vatTuneMethod()) }
func GetVowFlogSignature() string { return GetLogNoteSignature(vowFlogMethod()) }