2019-04-30 17:48:31 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2019 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/>.
|
|
|
|
|
2019-06-07 13:42:10 +00:00
|
|
|
package mocks
|
2019-04-30 17:48:31 +00:00
|
|
|
|
|
|
|
import (
|
2019-08-14 18:49:30 +00:00
|
|
|
"crypto/ecdsa"
|
|
|
|
"crypto/elliptic"
|
|
|
|
"crypto/rand"
|
2019-04-30 17:48:31 +00:00
|
|
|
"math/big"
|
2019-08-14 18:49:30 +00:00
|
|
|
rand2 "math/rand"
|
2019-06-07 13:42:10 +00:00
|
|
|
|
2020-02-20 22:13:19 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs"
|
|
|
|
|
2020-02-20 22:12:52 +00:00
|
|
|
"github.com/multiformats/go-multihash"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/ipfs/ipld"
|
|
|
|
|
2019-04-30 17:48:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2020-01-21 19:12:35 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2019-08-14 18:49:30 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2019-04-30 17:48:31 +00:00
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
"github.com/ethereum/go-ethereum/statediff"
|
2020-01-17 23:16:01 +00:00
|
|
|
"github.com/ipfs/go-block-format"
|
2019-08-14 18:49:30 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/super_node/eth"
|
|
|
|
eth2 "github.com/vulcanize/vulcanizedb/pkg/super_node/eth"
|
2019-04-30 17:48:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Test variables
|
|
|
|
var (
|
2019-08-14 18:49:30 +00:00
|
|
|
// block data
|
2020-01-17 23:16:01 +00:00
|
|
|
BlockNumber = big.NewInt(1)
|
2019-08-14 18:49:30 +00:00
|
|
|
MockHeader = types.Header{
|
|
|
|
Time: 0,
|
|
|
|
Number: BlockNumber,
|
|
|
|
Root: common.HexToHash("0x0"),
|
|
|
|
TxHash: common.HexToHash("0x0"),
|
|
|
|
ReceiptHash: common.HexToHash("0x0"),
|
2020-02-20 22:13:19 +00:00
|
|
|
Difficulty: big.NewInt(5000000),
|
|
|
|
Extra: []byte{},
|
2019-08-14 18:49:30 +00:00
|
|
|
}
|
|
|
|
MockTransactions, MockReceipts, senderAddr = createTransactionsAndReceipts()
|
|
|
|
ReceiptsRlp, _ = rlp.EncodeToBytes(MockReceipts)
|
|
|
|
MockBlock = types.NewBlock(&MockHeader, MockTransactions, nil, MockReceipts)
|
|
|
|
MockBlockRlp, _ = rlp.EncodeToBytes(MockBlock)
|
2019-08-28 19:43:27 +00:00
|
|
|
MockHeaderRlp, _ = rlp.EncodeToBytes(MockBlock.Header())
|
2020-01-21 19:12:35 +00:00
|
|
|
Address = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476592")
|
|
|
|
AnotherAddress = common.HexToAddress("0xaE9BEa628c4Ce503DcFD7E305CaB4e29E7476593")
|
|
|
|
mockTopic11 = common.HexToHash("0x04")
|
|
|
|
mockTopic12 = common.HexToHash("0x06")
|
|
|
|
mockTopic21 = common.HexToHash("0x05")
|
|
|
|
mockTopic22 = common.HexToHash("0x07")
|
2020-02-20 22:13:19 +00:00
|
|
|
MockLog1 = &types.Log{
|
|
|
|
Topics: []common.Hash{mockTopic11, mockTopic12},
|
|
|
|
Data: []byte{},
|
|
|
|
}
|
|
|
|
MockLog2 = &types.Log{
|
|
|
|
Topics: []common.Hash{mockTopic21, mockTopic22},
|
|
|
|
Data: []byte{},
|
|
|
|
}
|
|
|
|
HeaderCID, _ = ipld.RawdataToCid(ipld.MEthHeader, MockHeaderRlp, multihash.KECCAK_256)
|
|
|
|
Trx1CID, _ = ipld.RawdataToCid(ipld.MEthTx, MockTransactions.GetRlp(0), multihash.KECCAK_256)
|
|
|
|
Trx2CID, _ = ipld.RawdataToCid(ipld.MEthTx, MockTransactions.GetRlp(1), multihash.KECCAK_256)
|
|
|
|
Rct1CID, _ = ipld.RawdataToCid(ipld.MEthTxReceipt, MockReceipts.GetRlp(0), multihash.KECCAK_256)
|
|
|
|
Rct2CID, _ = ipld.RawdataToCid(ipld.MEthTxReceipt, MockReceipts.GetRlp(1), multihash.KECCAK_256)
|
|
|
|
State1CID, _ = ipld.RawdataToCid(ipld.MEthStateTrie, ValueBytes, multihash.KECCAK_256)
|
|
|
|
State2CID, _ = ipld.RawdataToCid(ipld.MEthStateTrie, AnotherValueBytes, multihash.KECCAK_256)
|
|
|
|
StorageCID, _ = ipld.RawdataToCid(ipld.MEthStorageTrie, StorageValue, multihash.KECCAK_256)
|
|
|
|
|
|
|
|
MockTrxMeta = []eth.TxModel{
|
2019-08-14 18:49:30 +00:00
|
|
|
{
|
2020-01-21 19:12:35 +00:00
|
|
|
CID: "", // This is empty until we go to publish to ipfs
|
|
|
|
Src: senderAddr.Hex(),
|
|
|
|
Dst: Address.String(),
|
2020-01-26 19:55:26 +00:00
|
|
|
Index: 0,
|
2020-01-21 19:12:35 +00:00
|
|
|
TxHash: MockTransactions[0].Hash().String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
|
|
|
{
|
2020-01-21 19:12:35 +00:00
|
|
|
CID: "",
|
|
|
|
Src: senderAddr.Hex(),
|
|
|
|
Dst: AnotherAddress.String(),
|
2020-01-26 19:55:26 +00:00
|
|
|
Index: 1,
|
2020-01-21 19:12:35 +00:00
|
|
|
TxHash: MockTransactions[1].Hash().String(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
MockTrxMetaPostPublsh = []eth.TxModel{
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: Trx1CID.String(), // This is empty until we go to publish to ipfs
|
2020-01-21 19:12:35 +00:00
|
|
|
Src: senderAddr.Hex(),
|
|
|
|
Dst: Address.String(),
|
2020-01-26 19:55:26 +00:00
|
|
|
Index: 0,
|
2020-01-21 19:12:35 +00:00
|
|
|
TxHash: MockTransactions[0].Hash().String(),
|
|
|
|
},
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: Trx2CID.String(),
|
2020-01-21 19:12:35 +00:00
|
|
|
Src: senderAddr.Hex(),
|
|
|
|
Dst: AnotherAddress.String(),
|
2020-01-26 19:55:26 +00:00
|
|
|
Index: 1,
|
2020-01-21 19:12:35 +00:00
|
|
|
TxHash: MockTransactions[1].Hash().String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
|
|
|
}
|
2020-01-17 23:16:01 +00:00
|
|
|
MockRctMeta = []eth.ReceiptModel{
|
2019-08-14 18:49:30 +00:00
|
|
|
{
|
|
|
|
CID: "",
|
|
|
|
Topic0s: []string{
|
2020-01-21 19:12:35 +00:00
|
|
|
mockTopic11.String(),
|
|
|
|
},
|
|
|
|
Topic1s: []string{
|
|
|
|
mockTopic12.String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
2020-01-21 19:12:35 +00:00
|
|
|
Contract: Address.String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
CID: "",
|
|
|
|
Topic0s: []string{
|
2020-01-21 19:12:35 +00:00
|
|
|
mockTopic21.String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
2020-01-21 19:12:35 +00:00
|
|
|
Topic1s: []string{
|
|
|
|
mockTopic22.String(),
|
|
|
|
},
|
|
|
|
Contract: AnotherAddress.String(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
MockRctMetaPostPublish = []eth.ReceiptModel{
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: Rct1CID.String(),
|
2020-01-21 19:12:35 +00:00
|
|
|
Topic0s: []string{
|
|
|
|
mockTopic11.String(),
|
|
|
|
},
|
|
|
|
Topic1s: []string{
|
|
|
|
mockTopic12.String(),
|
|
|
|
},
|
|
|
|
Contract: Address.String(),
|
|
|
|
},
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: Rct2CID.String(),
|
2020-01-21 19:12:35 +00:00
|
|
|
Topic0s: []string{
|
|
|
|
mockTopic21.String(),
|
|
|
|
},
|
|
|
|
Topic1s: []string{
|
|
|
|
mockTopic22.String(),
|
|
|
|
},
|
|
|
|
Contract: AnotherAddress.String(),
|
2019-08-14 18:49:30 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// statediff data
|
|
|
|
CodeHash = common.Hex2Bytes("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470")
|
|
|
|
NonceValue = rand2.Uint64()
|
|
|
|
anotherNonceValue = rand2.Uint64()
|
|
|
|
BalanceValue = rand2.Int63()
|
|
|
|
anotherBalanceValue = rand2.Int63()
|
|
|
|
ContractRoot = common.HexToHash("0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421")
|
|
|
|
StoragePath = common.HexToHash("0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470").Bytes()
|
|
|
|
StorageKey = common.HexToHash("0000000000000000000000000000000000000000000000000000000000000001").Bytes()
|
|
|
|
StorageValue = common.Hex2Bytes("0x03")
|
|
|
|
storage = []statediff.StorageDiff{{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: StorageKey,
|
|
|
|
Value: StorageValue,
|
|
|
|
Path: StoragePath,
|
|
|
|
Proof: [][]byte{},
|
2019-08-14 18:49:30 +00:00
|
|
|
Leaf: true,
|
2019-04-30 17:48:31 +00:00
|
|
|
}}
|
|
|
|
emptyStorage = make([]statediff.StorageDiff, 0)
|
2020-01-21 19:12:35 +00:00
|
|
|
ContractLeafKey = crypto.Keccak256Hash(Address.Bytes())
|
|
|
|
AnotherContractLeafKey = crypto.Keccak256Hash(AnotherAddress.Bytes())
|
2019-04-30 17:48:31 +00:00
|
|
|
testAccount = state.Account{
|
2019-08-14 18:49:30 +00:00
|
|
|
Nonce: NonceValue,
|
|
|
|
Balance: big.NewInt(BalanceValue),
|
2019-04-30 17:48:31 +00:00
|
|
|
Root: ContractRoot,
|
|
|
|
CodeHash: CodeHash,
|
|
|
|
}
|
2019-08-14 18:49:30 +00:00
|
|
|
anotherTestAccount = state.Account{
|
|
|
|
Nonce: anotherNonceValue,
|
|
|
|
Balance: big.NewInt(anotherBalanceValue),
|
|
|
|
Root: common.HexToHash("0x"),
|
|
|
|
CodeHash: nil,
|
|
|
|
}
|
2019-08-28 19:43:27 +00:00
|
|
|
ValueBytes, _ = rlp.EncodeToBytes(testAccount)
|
|
|
|
AnotherValueBytes, _ = rlp.EncodeToBytes(anotherTestAccount)
|
2019-08-14 18:49:30 +00:00
|
|
|
CreatedAccountDiffs = []statediff.AccountDiff{
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: ContractLeafKey.Bytes(),
|
2019-08-28 19:43:27 +00:00
|
|
|
Value: ValueBytes,
|
2019-04-30 17:48:31 +00:00
|
|
|
Storage: storage,
|
2019-08-14 18:49:30 +00:00
|
|
|
Leaf: true,
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
2019-04-30 17:48:31 +00:00
|
|
|
Key: AnotherContractLeafKey.Bytes(),
|
2019-08-28 19:43:27 +00:00
|
|
|
Value: AnotherValueBytes,
|
2019-04-30 17:48:31 +00:00
|
|
|
Storage: emptyStorage,
|
2019-08-14 18:49:30 +00:00
|
|
|
Leaf: true,
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
MockStateDiff = statediff.StateDiff{
|
|
|
|
BlockNumber: BlockNumber,
|
2019-08-14 18:49:30 +00:00
|
|
|
BlockHash: MockBlock.Hash(),
|
2019-04-30 17:48:31 +00:00
|
|
|
CreatedAccounts: CreatedAccountDiffs,
|
|
|
|
}
|
2019-05-17 04:08:53 +00:00
|
|
|
MockStateDiffBytes, _ = rlp.EncodeToBytes(MockStateDiff)
|
2020-01-17 23:16:01 +00:00
|
|
|
MockStateNodes = []eth.TrieNode{
|
|
|
|
{
|
|
|
|
Key: ContractLeafKey,
|
2019-08-28 19:43:27 +00:00
|
|
|
Value: ValueBytes,
|
2019-08-14 18:49:30 +00:00
|
|
|
Leaf: true,
|
|
|
|
},
|
2020-01-17 23:16:01 +00:00
|
|
|
{
|
|
|
|
Key: AnotherContractLeafKey,
|
2019-08-28 19:43:27 +00:00
|
|
|
Value: AnotherValueBytes,
|
2019-08-14 18:49:30 +00:00
|
|
|
Leaf: true,
|
|
|
|
},
|
|
|
|
}
|
2020-01-21 19:12:35 +00:00
|
|
|
MockStateMetaPostPublish = []eth.StateNodeModel{
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: State1CID.String(),
|
2020-01-21 19:12:35 +00:00
|
|
|
Leaf: true,
|
|
|
|
StateKey: ContractLeafKey.String(),
|
|
|
|
},
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: State2CID.String(),
|
2020-01-21 19:12:35 +00:00
|
|
|
Leaf: true,
|
|
|
|
StateKey: AnotherContractLeafKey.String(),
|
|
|
|
},
|
|
|
|
}
|
2020-01-17 23:16:01 +00:00
|
|
|
MockStorageNodes = map[common.Hash][]eth.TrieNode{
|
2019-08-14 18:49:30 +00:00
|
|
|
ContractLeafKey: {
|
|
|
|
{
|
|
|
|
Key: common.BytesToHash(StorageKey),
|
|
|
|
Value: StorageValue,
|
|
|
|
Leaf: true,
|
|
|
|
},
|
|
|
|
},
|
2019-04-30 17:48:31 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 18:49:30 +00:00
|
|
|
// aggregate payloads
|
|
|
|
MockStateDiffPayload = statediff.Payload{
|
2020-01-16 23:21:30 +00:00
|
|
|
BlockRlp: MockBlockRlp,
|
|
|
|
StateDiffRlp: MockStateDiffBytes,
|
|
|
|
ReceiptsRlp: ReceiptsRlp,
|
2020-02-20 22:13:19 +00:00
|
|
|
TotalDifficulty: MockBlock.Difficulty(),
|
2019-04-30 17:48:31 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 22:12:52 +00:00
|
|
|
MockConvertedPayload = eth.ConvertedPayload{
|
2020-02-20 22:13:19 +00:00
|
|
|
TotalDifficulty: MockBlock.Difficulty(),
|
2020-01-17 23:16:01 +00:00
|
|
|
Block: MockBlock,
|
2020-01-16 23:21:30 +00:00
|
|
|
Receipts: MockReceipts,
|
2020-01-29 20:37:20 +00:00
|
|
|
TxMetaData: MockTrxMeta,
|
2020-01-21 19:12:35 +00:00
|
|
|
ReceiptMetaData: MockRctMeta,
|
|
|
|
StorageNodes: MockStorageNodes,
|
|
|
|
StateNodes: MockStateNodes,
|
2019-04-30 17:48:31 +00:00
|
|
|
}
|
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
MockCIDPayload = ð.CIDPayload{
|
|
|
|
HeaderCID: eth2.HeaderModel{
|
|
|
|
BlockHash: MockBlock.Hash().String(),
|
|
|
|
BlockNumber: MockBlock.Number().String(),
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: HeaderCID.String(),
|
2020-01-17 23:16:01 +00:00
|
|
|
ParentHash: MockBlock.ParentHash().String(),
|
2020-02-20 22:13:19 +00:00
|
|
|
TotalDifficulty: MockBlock.Difficulty().String(),
|
|
|
|
Reward: "5000000000000000000",
|
2020-01-17 23:16:01 +00:00
|
|
|
},
|
2020-01-26 19:55:26 +00:00
|
|
|
UncleCIDs: []eth2.UncleModel{},
|
2020-01-21 19:12:35 +00:00
|
|
|
TransactionCIDs: MockTrxMetaPostPublsh,
|
2020-01-17 23:16:01 +00:00
|
|
|
ReceiptCIDs: map[common.Hash]eth.ReceiptModel{
|
2020-01-21 19:12:35 +00:00
|
|
|
MockTransactions[0].Hash(): MockRctMetaPostPublish[0],
|
|
|
|
MockTransactions[1].Hash(): MockRctMetaPostPublish[1],
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
2020-01-21 19:12:35 +00:00
|
|
|
StateNodeCIDs: MockStateMetaPostPublish,
|
2020-01-17 23:16:01 +00:00
|
|
|
StorageNodeCIDs: map[common.Hash][]eth.StorageNodeModel{
|
2019-08-26 02:13:40 +00:00
|
|
|
ContractLeafKey: {
|
2019-05-17 04:08:53 +00:00
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: StorageCID.String(),
|
2020-01-17 23:16:01 +00:00
|
|
|
StorageKey: "0x0000000000000000000000000000000000000000000000000000000000000001",
|
|
|
|
Leaf: true,
|
2019-05-17 04:08:53 +00:00
|
|
|
},
|
2019-04-30 17:48:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2019-08-28 18:41:49 +00:00
|
|
|
|
2020-01-17 23:16:01 +00:00
|
|
|
MockCIDWrapper = ð.CIDWrapper{
|
|
|
|
BlockNumber: big.NewInt(1),
|
|
|
|
Headers: []eth2.HeaderModel{
|
|
|
|
{
|
|
|
|
BlockNumber: "1",
|
|
|
|
BlockHash: MockBlock.Hash().String(),
|
|
|
|
ParentHash: "0x0000000000000000000000000000000000000000000000000000000000000000",
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: HeaderCID.String(),
|
|
|
|
TotalDifficulty: MockBlock.Difficulty().String(),
|
|
|
|
Reward: "5000000000000000000",
|
2020-01-17 23:16:01 +00:00
|
|
|
},
|
|
|
|
},
|
2020-01-21 19:12:35 +00:00
|
|
|
Transactions: MockTrxMetaPostPublsh,
|
|
|
|
Receipts: MockRctMetaPostPublish,
|
2020-01-26 19:55:26 +00:00
|
|
|
Uncles: []eth2.UncleModel{},
|
2020-01-21 19:12:35 +00:00
|
|
|
StateNodes: MockStateMetaPostPublish,
|
2020-01-17 23:16:01 +00:00
|
|
|
StorageNodes: []eth.StorageNodeWithStateKeyModel{
|
|
|
|
{
|
2020-02-20 22:13:19 +00:00
|
|
|
CID: StorageCID.String(),
|
2020-01-17 23:16:01 +00:00
|
|
|
Leaf: true,
|
|
|
|
StateKey: ContractLeafKey.Hex(),
|
|
|
|
StorageKey: "0x0000000000000000000000000000000000000000000000000000000000000001",
|
2019-08-28 18:41:49 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-02-20 22:12:52 +00:00
|
|
|
|
2020-02-20 22:13:19 +00:00
|
|
|
HeaderIPLD, _ = blocks.NewBlockWithCid(MockHeaderRlp, HeaderCID)
|
|
|
|
Trx1IPLD, _ = blocks.NewBlockWithCid(MockTransactions.GetRlp(0), Trx1CID)
|
|
|
|
Trx2IPLD, _ = blocks.NewBlockWithCid(MockTransactions.GetRlp(1), Trx2CID)
|
|
|
|
Rct1IPLD, _ = blocks.NewBlockWithCid(MockReceipts.GetRlp(0), Rct1CID)
|
|
|
|
Rct2IPLD, _ = blocks.NewBlockWithCid(MockReceipts.GetRlp(1), Rct2CID)
|
|
|
|
State1IPLD, _ = blocks.NewBlockWithCid(ValueBytes, State1CID)
|
|
|
|
State2IPLD, _ = blocks.NewBlockWithCid(AnotherValueBytes, State2CID)
|
|
|
|
StorageIPLD, _ = blocks.NewBlockWithCid(StorageValue, StorageCID)
|
2019-08-28 19:43:27 +00:00
|
|
|
|
2020-02-20 22:12:52 +00:00
|
|
|
MockIPLDs = eth.IPLDs{
|
2019-08-28 19:43:27 +00:00
|
|
|
BlockNumber: big.NewInt(1),
|
2020-02-20 22:13:19 +00:00
|
|
|
Headers: []ipfs.BlockModel{
|
|
|
|
{
|
|
|
|
Data: HeaderIPLD.RawData(),
|
|
|
|
CID: HeaderIPLD.Cid().String(),
|
|
|
|
},
|
2019-08-28 19:43:27 +00:00
|
|
|
},
|
2020-02-20 22:13:19 +00:00
|
|
|
Transactions: []ipfs.BlockModel{
|
|
|
|
{
|
|
|
|
Data: Trx1IPLD.RawData(),
|
|
|
|
CID: Trx1IPLD.Cid().String(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Data: Trx2IPLD.RawData(),
|
|
|
|
CID: Trx2IPLD.Cid().String(),
|
|
|
|
},
|
2019-08-28 19:43:27 +00:00
|
|
|
},
|
2020-02-20 22:13:19 +00:00
|
|
|
Receipts: []ipfs.BlockModel{
|
|
|
|
{
|
|
|
|
Data: Rct1IPLD.RawData(),
|
|
|
|
CID: Rct1IPLD.Cid().String(),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Data: Rct2IPLD.RawData(),
|
|
|
|
CID: Rct2IPLD.Cid().String(),
|
|
|
|
},
|
2019-08-28 19:43:27 +00:00
|
|
|
},
|
2020-02-20 22:12:52 +00:00
|
|
|
StateNodes: []eth2.StateNode{
|
|
|
|
{
|
|
|
|
StateTrieKey: ContractLeafKey,
|
|
|
|
Leaf: true,
|
2020-02-20 22:13:19 +00:00
|
|
|
IPLD: ipfs.BlockModel{
|
|
|
|
Data: State1IPLD.RawData(),
|
|
|
|
CID: State1IPLD.Cid().String(),
|
|
|
|
},
|
2020-02-20 22:12:52 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
StateTrieKey: AnotherContractLeafKey,
|
|
|
|
Leaf: true,
|
2020-02-20 22:13:19 +00:00
|
|
|
IPLD: ipfs.BlockModel{
|
|
|
|
Data: State2IPLD.RawData(),
|
|
|
|
CID: State2IPLD.Cid().String(),
|
|
|
|
},
|
2019-08-28 19:43:27 +00:00
|
|
|
},
|
|
|
|
},
|
2020-02-20 22:12:52 +00:00
|
|
|
StorageNodes: []eth2.StorageNode{
|
|
|
|
{
|
|
|
|
StateTrieKey: ContractLeafKey,
|
|
|
|
StorageTrieKey: common.HexToHash("0x0000000000000000000000000000000000000000000000000000000000000001"),
|
|
|
|
Leaf: true,
|
2020-02-20 22:13:19 +00:00
|
|
|
IPLD: ipfs.BlockModel{
|
|
|
|
Data: StorageIPLD.RawData(),
|
|
|
|
CID: StorageIPLD.Cid().String(),
|
|
|
|
},
|
2019-08-28 19:43:27 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2019-04-30 17:48:31 +00:00
|
|
|
)
|
2019-08-14 18:49:30 +00:00
|
|
|
|
|
|
|
// createTransactionsAndReceipts is a helper function to generate signed mock transactions and mock receipts with mock logs
|
|
|
|
func createTransactionsAndReceipts() (types.Transactions, types.Receipts, common.Address) {
|
|
|
|
// make transactions
|
2020-02-20 22:13:19 +00:00
|
|
|
trx1 := types.NewTransaction(0, Address, big.NewInt(1000), 50, big.NewInt(100), []byte{})
|
|
|
|
trx2 := types.NewTransaction(1, AnotherAddress, big.NewInt(2000), 100, big.NewInt(200), []byte{})
|
2019-08-14 18:49:30 +00:00
|
|
|
transactionSigner := types.MakeSigner(params.MainnetChainConfig, BlockNumber)
|
|
|
|
mockCurve := elliptic.P256()
|
|
|
|
mockPrvKey, err := ecdsa.GenerateKey(mockCurve, rand.Reader)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
signedTrx1, err := types.SignTx(trx1, transactionSigner, mockPrvKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
signedTrx2, err := types.SignTx(trx2, transactionSigner, mockPrvKey)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
senderAddr, err := types.Sender(transactionSigner, signedTrx1) // same for both trx
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
// make receipts
|
|
|
|
mockReceipt1 := types.NewReceipt(common.HexToHash("0x0").Bytes(), false, 50)
|
2020-02-20 22:13:19 +00:00
|
|
|
mockReceipt1.Logs = []*types.Log{MockLog1}
|
2019-08-26 02:13:40 +00:00
|
|
|
mockReceipt1.TxHash = signedTrx1.Hash()
|
2019-08-14 18:49:30 +00:00
|
|
|
mockReceipt2 := types.NewReceipt(common.HexToHash("0x1").Bytes(), false, 100)
|
2020-02-20 22:13:19 +00:00
|
|
|
mockReceipt2.Logs = []*types.Log{MockLog2}
|
2019-08-26 02:13:40 +00:00
|
|
|
mockReceipt2.TxHash = signedTrx2.Hash()
|
2019-08-14 18:49:30 +00:00
|
|
|
return types.Transactions{signedTrx1, signedTrx2}, types.Receipts{mockReceipt1, mockReceipt2}, senderAddr
|
|
|
|
}
|