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)
55 lines
2.3 KiB
Go
55 lines
2.3 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_slip"
|
|
)
|
|
|
|
var EthVatSlipLog = types.Log{
|
|
Address: common.HexToAddress(constants.VatContractAddress),
|
|
Topics: []common.Hash{
|
|
common.HexToHash("0x42066cbb00000000000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0x66616b6520696c6b000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0x0000000000000000000000007d7bee5fcfd8028cf7b00876c5b1421c800561a6"),
|
|
common.HexToHash("0x000000000000000000000000000000000000000000000000000000003ade68b1"),
|
|
},
|
|
Data: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006442066cbb66616b6520696c6b0000000000000000000000000000000000000000000000000000000000000000000000007d7bee5fcfd8028cf7b00876c5b1421c800561a6000000000000000000000000000000000000000000000000000000003ade68b1"),
|
|
BlockNumber: 10,
|
|
TxHash: common.HexToHash("0xb114ba306c80c86d51bdbf4a5ac8ed151020cd81b70cfa1dc9822f4a1f73930b"),
|
|
TxIndex: 3,
|
|
BlockHash: fakes.FakeHash,
|
|
Index: 2,
|
|
Removed: false,
|
|
}
|
|
|
|
var rawVatSlipLog, _ = json.Marshal(EthVatSlipLog)
|
|
var VatSlipModel = vat_slip.VatSlipModel{
|
|
Ilk: "fake ilk",
|
|
Guy: common.HexToAddress("0x7d7bEe5fCfD8028cf7b00876C5b1421c800561A6").String(),
|
|
Rad: "987654321",
|
|
TransactionIndex: EthVatSlipLog.TxIndex,
|
|
LogIndex: EthVatSlipLog.Index,
|
|
Raw: rawVatSlipLog,
|
|
}
|