Documentation ¶
Index ¶
Constants ¶
View Source
const ( Live = "live" Vat = "vat" Vow = "vow" IlkFlip = "flip" IlkChop = "chop" IlkLump = "lump" )
View Source
const ( InsertCatIlkChopQuery = `INSERT INTO maker.cat_ilk_chop (block_number, block_hash, ilk_id, chop) VALUES ($1, $2, $3, $4) ON CONFLICT DO NOTHING` InsertCatIlkFlipQuery = `INSERT INTO maker.cat_ilk_flip (block_number, block_hash, ilk_id, flip) VALUES ($1, $2, $3, $4) ON CONFLICT DO NOTHING` InsertCatIlkLumpQuery = `INSERT INTO maker.cat_ilk_lump (block_number, block_hash, ilk_id, lump) VALUES ($1, $2, $3, $4) ON CONFLICT DO NOTHING` )
Variables ¶
View Source
var ( // wards takes up index 0 IlksMappingIndex = utils.IndexOne // bytes32 => flip address; chop (ray), lump (wad) uint256 LiveKey = common.HexToHash(utils.IndexTwo) LiveMetadata = utils.GetStorageValueMetadata(Live, nil, utils.Uint256) VatKey = common.HexToHash(utils.IndexThree) VatMetadata = utils.GetStorageValueMetadata(Vat, nil, utils.Address) VowKey = common.HexToHash(utils.IndexFour) VowMetadata = utils.GetStorageValueMetadata(Vow, nil, utils.Address) )
Functions ¶
func NewKeysLoader ¶ added in v0.2.13
func NewKeysLoader(storageRepository mcdStorage.IMakerStorageRepository) storage.KeysLoader
Types ¶
type CatStorageRepository ¶
type CatStorageRepository struct {
// contains filtered or unexported fields
}
func (*CatStorageRepository) Create ¶
func (repository *CatStorageRepository) Create(blockNumber int, blockHash string, metadata utils.StorageValueMetadata, value interface{}) error
func (*CatStorageRepository) SetDB ¶
func (repository *CatStorageRepository) SetDB(db *postgres.DB)
Click to show internal directories.
Click to hide internal directories.