82fd73ba3f
- Delete header on conflict to prompt data refresh (cascade deletes all data associated with that block) - Derive header hash from rpc payload rather than computing it from data (prevents hash mismatch between blockchain and cache)
56 lines
2.4 KiB
Go
56 lines
2.4 KiB
Go
/*
|
|
* Copyright 2018 Vulcanize
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
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/shared/constants"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_flux"
|
|
)
|
|
|
|
var VatFluxLog = types.Log{
|
|
Address: common.HexToAddress(constants.VatContractAddress),
|
|
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,
|
|
}
|