8c168ed332
- Reduce clutter in the shared package
52 lines
2.3 KiB
Go
52 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/transformers/shared/constants"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_heal"
|
|
)
|
|
|
|
var VatHealLog = types.Log{
|
|
Address: common.HexToAddress(constants.VatContractAddress),
|
|
Topics: []common.Hash{
|
|
common.HexToHash("0x990a5f6300000000000000000000000000000000000000000000000000000000"),
|
|
common.HexToHash("0x0000000000000000000000007d7bee5fcfd8028cf7b00876c5b1421c800561a6"),
|
|
common.HexToHash("0x0000000000000000000000007340e006f4135ba6970d43bf43d88dcad4e7a8ca"),
|
|
common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000078"),
|
|
},
|
|
Data: hexutil.MustDecode("0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000064990a5f637d7bee5fcfd8028cf7b00876c5b1421c800561a600000000000000000000000074686520762076616c75650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000078"),
|
|
BlockNumber: 10,
|
|
TxHash: common.HexToHash("0x991b8079b1333024000dcaf2b00c24c5db0315e112a4ac4d912aa96a602e12b9"),
|
|
TxIndex: 2,
|
|
BlockHash: common.HexToHash("0x0c54bdadb149691a103cfa5ad57329bda1e0fe55f1ba1ce5dd49dc1ecfe03daa"),
|
|
Index: 3,
|
|
Removed: false,
|
|
}
|
|
|
|
var rawHealLog, _ = json.Marshal(VatHealLog)
|
|
var VatHealModel = vat_heal.VatHealModel{
|
|
Urn: "0x7d7bEe5fCfD8028cf7b00876C5b1421c800561A6",
|
|
V: "0x7340e006f4135BA6970D43bf43d88DCAD4e7a8CA",
|
|
Rad: "120",
|
|
LogIndex: VatHealLog.Index,
|
|
TransactionIndex: VatHealLog.TxIndex,
|
|
Raw: rawHealLog,
|
|
}
|