55 lines
2.4 KiB
Go
55 lines
2.4 KiB
Go
// VulcanizeDB
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package test_data
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
"github.com/vulcanize/vulcanizedb/pkg/fakes"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_flux"
|
|
)
|
|
|
|
var VatFluxLog = types.Log{
|
|
Address: common.HexToAddress(KovanVatContractAddress),
|
|
Topics: []common.Hash{
|
|
common.HexToHash("0xa6e4182100000000000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0x5245500000000000000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0x0000000000000000000000007FA9EF6609Ca7921112231f8f195138ebba29770"),
|
|
common.HexToHash("0x00000000000000000000000093086347c52a8878af71bb818509d484c6a2e1bf"),
|
|
},
|
|
Data: hexutil.MustDecode("0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000084a6e418217340e006f4135ba6970d43bf43d88dcad4e7a8ca00000000000000000000000007fa9ef6609ca7921112231f8f195138ebba297700000000000000000000000093086347c52a8878af71bb818509d484c6a2e1bf000000000000000000000000000000000000000000000000000000000000000000000000000000000000007b"),
|
|
BlockNumber: 23,
|
|
TxHash: common.HexToHash("0xf98681bab9b8c75bd8aa4a7d0a8142ff527c5ea8fa54f3c2835d4533838b2e6f"),
|
|
TxIndex: 0,
|
|
BlockHash: fakes.FakeHash,
|
|
Index: 3,
|
|
Removed: false,
|
|
}
|
|
|
|
var rawFluxLog, _ = json.Marshal(VatFluxLog)
|
|
var VatFluxModel = vat_flux.VatFluxModel{
|
|
Ilk: "REP",
|
|
Src: "0x7FA9EF6609Ca7921112231f8f195138ebba29770",
|
|
Dst: "0x93086347c52a8878af71bB818509d484c6a2e1bF",
|
|
Rad: "123",
|
|
TransactionIndex: VatFluxLog.TxIndex,
|
|
LogIndex: VatFluxLog.Index,
|
|
Raw: rawFluxLog,
|
|
}
|