erigon-pulse/cmd/devnet/commands/block.go
2023-04-13 11:19:02 +00:00

172 lines
5.3 KiB
Go

package commands
import (
"fmt"
"time"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon-lib/common/hexutility"
"github.com/ledgerwatch/erigon/cmd/devnet/devnetutils"
"github.com/ledgerwatch/erigon/cmd/devnet/models"
"github.com/ledgerwatch/erigon/cmd/devnet/requests"
"github.com/ledgerwatch/erigon/cmd/devnet/services"
"github.com/ledgerwatch/erigon/common/hexutil"
)
const (
recipientAddress = "0x71562b71999873DB5b286dF957af199Ec94617F7"
sendValue uint64 = 10000
)
func callSendTx(value uint64, toAddr, fromAddr string) (*libcommon.Hash, error) {
fmt.Printf("Sending %d ETH to %q from %q...\n", value, toAddr, fromAddr)
// get the latest nonce for the next transaction
nonce, err := services.GetNonce(models.ReqId, libcommon.HexToAddress(fromAddr))
if err != nil {
fmt.Printf("failed to get latest nonce: %s\n", err)
return nil, err
}
// create a non-contract transaction and sign it
signedTx, _, _, _, err := services.CreateTransaction(models.NonContractTx, toAddr, value, nonce)
if err != nil {
fmt.Printf("failed to create a transaction: %s\n", err)
return nil, err
}
// send the signed transaction
hash, err := requests.SendTransaction(models.ReqId, signedTx)
if err != nil {
fmt.Printf("failed to send transaction: %s\n", err)
return nil, err
}
hashes := map[libcommon.Hash]bool{*hash: true}
if _, err = services.SearchReservesForTransactionHash(hashes); err != nil {
return nil, fmt.Errorf("failed to call contract tx: %v", err)
}
return hash, nil
}
func callSendTxWithDynamicFee(toAddr, fromAddr string) ([]*libcommon.Hash, error) {
// get the latest nonce for the next transaction
nonce, err := services.GetNonce(models.ReqId, libcommon.HexToAddress(fromAddr))
if err != nil {
fmt.Printf("failed to get latest nonce: %s\n", err)
return nil, err
}
lowerThanBaseFeeTxs, higherThanBaseFeeTxs, err := services.CreateManyEIP1559TransactionsRefWithBaseFee2(toAddr, &nonce)
if err != nil {
fmt.Printf("failed CreateManyEIP1559TransactionsRefWithBaseFee: %s\n", err)
return nil, err
}
lowerThanBaseFeeHashlist, err := services.SendManyTransactions(lowerThanBaseFeeTxs)
if err != nil {
fmt.Printf("failed SendManyTransactions(lowerThanBaseFeeTxs): %s\n", err)
return nil, err
}
higherThanBaseFeeHashlist, err := services.SendManyTransactions(higherThanBaseFeeTxs)
if err != nil {
fmt.Printf("failed SendManyTransactions(higherThanBaseFeeTxs): %s\n", err)
return nil, err
}
services.CheckTxPoolContent(100, 0, 100)
hashmap := make(map[libcommon.Hash]bool)
for _, hash := range higherThanBaseFeeHashlist {
hashmap[*hash] = true
}
if _, err = services.SearchReservesForTransactionHash(hashmap); err != nil {
return nil, fmt.Errorf("failed to call contract tx: %v", err)
}
fmt.Println("SUCCESS: All transactions in pending pool mined.")
for i := 1; i <= 20; i++ {
blockNumber, err := requests.BlockNumber(models.ReqId)
if err != nil {
fmt.Printf("FAILURE => error getting block number: %v\n", err)
} else {
fmt.Printf("Block number: %d\n", blockNumber)
}
pendingSize, queuedSize, baseFeeSize, err := requests.TxpoolContent(models.ReqId)
if err != nil {
fmt.Printf("FAILURE => error getting txpool content: %v\n", err)
} else {
fmt.Printf("Pending %d Queued %d, BaseFee %d\n", pendingSize, queuedSize, baseFeeSize)
}
time.Sleep(5 * time.Second)
}
return append(lowerThanBaseFeeHashlist, higherThanBaseFeeHashlist...), nil
}
func callContractTx() (*libcommon.Hash, error) {
// hashset to hold hashes for search after mining
hashes := make(map[libcommon.Hash]bool)
// get the latest nonce for the next transaction
nonce, err := services.GetNonce(models.ReqId, libcommon.HexToAddress(models.DevAddress))
if err != nil {
fmt.Printf("failed to get latest nonce: %s\n", err)
return nil, err
}
// subscriptionContract is the handler to the contract for further operations
signedTx, address, subscriptionContract, transactOpts, err := services.CreateTransaction(models.ContractTx, "", 0, nonce)
if err != nil {
fmt.Printf("failed to create transaction: %v\n", err)
return nil, err
}
// send the contract transaction to the node
hash, err := requests.SendTransaction(models.ReqId, signedTx)
if err != nil {
fmt.Printf("failed to send transaction: %v\n", err)
return nil, err
}
hashes[*hash] = true
fmt.Println()
eventHash, err := services.EmitFallbackEvent(subscriptionContract, transactOpts)
if err != nil {
fmt.Printf("failed to emit events: %v\n", err)
return nil, err
}
hashes[*eventHash] = true
txToBlockMap, err := services.SearchReservesForTransactionHash(hashes)
if err != nil {
return nil, fmt.Errorf("failed to call contract tx: %v", err)
}
blockNum := (*txToBlockMap)[*eventHash]
block, err := requests.GetBlockByNumber(models.ReqId, devnetutils.HexToInt(blockNum), true)
if err != nil {
return nil, err
}
expectedLog := devnetutils.BuildLog(*eventHash, blockNum, address,
devnetutils.GenerateTopic(models.SolContractMethodSignature), hexutility.Bytes{}, hexutil.Uint(1),
block.Result.Hash, hexutil.Uint(0), false)
if err = requests.GetAndCompareLogs(models.ReqId, 0, 20, expectedLog); err != nil {
return nil, fmt.Errorf("failed to get logs: %v", err)
}
return hash, nil
}
func makeEIP1559Checks() {
// run the check for baseFee effect twice
}