be58dd4ac8
* Add vat_move transformer base * Add vat_move migrations * Add test data for vat_move * Add vat_move transformer to initialisers * Add numeric cast to psql insert of Rad * Add new db schema * Dependency update * Expand abbreviation in repository * Add test suite for vat_move * Add header checking to transformer and mock repository * Remove trailing zero in test data * Fix minor mishaps * Go fmt nitpicking * Refactoring in tests * Add tests covering checked headers stuff (and fix revealed bugs) * go fmt fixes * Implement batching behaviour of transformer * Small fixes after review * Go fmt
53 lines
2.3 KiB
Go
53 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/vulcanize/vulcanizedb/pkg/transformers/vat_move"
|
|
|
|
"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/transformers/shared"
|
|
)
|
|
|
|
var EthVatMoveLog = types.Log{
|
|
Address: common.HexToAddress(shared.VatContractAddress),
|
|
Topics: []common.Hash{
|
|
common.HexToHash("0x78f1947000000000000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0xa730d1ff8b6bc74a26d54c20a9dda539909bab0e000000000000000000000000"),
|
|
common.HexToHash("0xb730d1ff8b6bc74a26d54c20a9dda539909bab0e000000000000000000000000"),
|
|
common.HexToHash("0x000000000000000000000000000000000000000000000000000000000000002a"),
|
|
},
|
|
Data: hexutil.MustDecode("0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000006478f19470a730d1ff8b6bc74a26d54c20a9dda539909bab0e000000000000000000000000b730d1ff8b6bc74a26d54c20a9dda539909bab0e000000000000000000000000000000000000000000000000000000000000000000000000000000000000002a"),
|
|
BlockNumber: 10,
|
|
TxHash: common.HexToHash("0xe8f39fbb7fea3621f543868f19b1114e305aff6a063a30d32835ff1012526f91"),
|
|
TxIndex: 7,
|
|
BlockHash: common.HexToHash("0xe3dd2e05bd8b92833e20ed83e2171bbc06a9ec823232eca1730a807bd8f5edc0"),
|
|
Index: 0,
|
|
Removed: false,
|
|
}
|
|
|
|
var rawVatMoveLog, _ = json.Marshal(EthVatMoveLog)
|
|
var VatMoveModel = vat_move.VatMoveModel{
|
|
Src: "0xA730d1FF8B6Bc74a26d54c20a9dda539909BaB0e",
|
|
Dst: "0xB730D1fF8b6BC74a26D54c20a9ddA539909BAb0e",
|
|
Rad: "42",
|
|
TransactionIndex: EthVatMoveLog.TxIndex,
|
|
Raw: rawVatMoveLog,
|
|
}
|