diff --git a/rpc/block.go b/rpc/block.go index ca40aab7..fe659504 100644 --- a/rpc/block.go +++ b/rpc/block.go @@ -98,7 +98,12 @@ func (provider *Provider) BlockWithTxHashes(ctx context.Context, blockID BlockID PendingBlockHeader{ ParentHash: result.ParentHash, Timestamp: result.Timestamp, - SequencerAddress: result.SequencerAddress}, + SequencerAddress: result.SequencerAddress, + L1GasPrice: result.L1GasPrice, + StarknetVersion: result.StarknetVersion, + L1DataGasPrice: result.L1DataGasPrice, + L1DAMode: result.L1DAMode, + }, result.Transactions, }, nil } @@ -161,7 +166,12 @@ func (provider *Provider) BlockWithTxs(ctx context.Context, blockID BlockID) (in PendingBlockHeader{ ParentHash: result.ParentHash, Timestamp: result.Timestamp, - SequencerAddress: result.SequencerAddress}, + SequencerAddress: result.SequencerAddress, + L1GasPrice: result.L1GasPrice, + StarknetVersion: result.StarknetVersion, + L1DataGasPrice: result.L1DataGasPrice, + L1DAMode: result.L1DAMode, + }, result.Transactions, }, nil } diff --git a/rpc/block_test.go b/rpc/block_test.go index ea098424..4e677fc8 100644 --- a/rpc/block_test.go +++ b/rpc/block_test.go @@ -2,14 +2,13 @@ package rpc import ( "context" + "encoding/json" "fmt" + "os" "strings" "testing" - "github.com/NethermindEth/juno/core/felt" "github.com/NethermindEth/starknet.go/utils" - "github.com/google/go-cmp/cmp" - "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -136,46 +135,16 @@ func TestBlockWithTxHashes(t *testing.T) { ExpectedPendingBlockWithTxHashes *PendingBlockTxHashes } - var blockSepolia64159 = BlockTxHashes{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), - ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 64159, - NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), - Timestamp: 1714901729, - }, - Status: "ACCEPTED_ON_L1", - Transactions: utils.TestHexArrToFelt(t, []string{ - "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", - "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", - "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", - "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", - "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", - "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", - "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", - "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", - "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", - "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", - "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", - "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", - "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", - "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", - "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", - "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", - "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", - "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", - "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", - "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", - "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", - }), - } + var blockSepolia64159 BlockTxHashes + block, err := os.ReadFile("tests/blockWithHashes/sepoliaBlockWithHashes64159.json") + require.NoError(t, err) + require.NoError(t, json.Unmarshal(block, &blockSepolia64159)) txHashes := utils.TestHexArrToFelt(t, []string{ "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", }) - blockHash := utils.TestHexToFelt(t, "0xbeef") + fakeFelt := utils.TestHexToFelt(t, "0xbeef") testSet := map[string][]testSetType{ "mock": { @@ -184,20 +153,20 @@ func TestBlockWithTxHashes(t *testing.T) { ExpectedErr: nil, ExpectedPendingBlockWithTxHashes: &PendingBlockTxHashes{ PendingBlockHeader{ - ParentHash: &felt.Zero, + ParentHash: fakeFelt, Timestamp: 123, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, txHashes, }, }, { - BlockID: BlockID{Hash: blockHash}, + BlockID: BlockID{Hash: fakeFelt}, ExpectedBlockWithTxHashes: &BlockTxHashes{ BlockHeader: BlockHeader{ - BlockHash: blockHash, - ParentHash: &felt.Zero, + BlockHash: fakeFelt, + ParentHash: fakeFelt, Timestamp: 124, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, Status: BlockStatus_AcceptedOnL1, Transactions: txHashes, }, @@ -208,6 +177,10 @@ func TestBlockWithTxHashes(t *testing.T) { BlockID: WithBlockTag("latest"), ExpectedErr: nil, }, + { + BlockID: WithBlockTag("pending"), + ExpectedErr: nil, + }, { BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964")), ExpectedErr: nil, @@ -223,53 +196,43 @@ func TestBlockWithTxHashes(t *testing.T) { }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy result, err := testConfig.provider.BlockWithTxHashes(context.Background(), test.BlockID) require.Equal(t, test.ExpectedErr, err, "Error in BlockWithTxHashes") switch resultType := result.(type) { case *BlockTxHashes: block, ok := result.(*BlockTxHashes) - require.True(t, ok, fmt.Sprintf("should return *BlockTxHashes, instead: %T\n", result)) + require.Truef(t, ok, "should return *BlockTxHashes, instead: %T\n", result) if test.ExpectedErr != nil { continue } - require.True(t, strings.HasPrefix(block.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", block.BlockHash) + require.Truef(t, strings.HasPrefix(block.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", block.BlockHash) require.NotEmpty(t, block.Transactions, "the number of transactions should not be 0") if test.ExpectedBlockWithTxHashes != nil { - if (*test.ExpectedBlockWithTxHashes).BlockHash == &felt.Zero { - continue - } - - require.Equal(t, block.BlockHeader.BlockHash, test.ExpectedBlockWithTxHashes.BlockHeader.BlockHash, "Error in BlockTxHash BlockHash") - require.Equal(t, block.BlockHeader.ParentHash, test.ExpectedBlockWithTxHashes.BlockHeader.ParentHash, "Error in BlockTxHash ParentHash") - require.Equal(t, block.BlockHeader.Timestamp, test.ExpectedBlockWithTxHashes.BlockHeader.Timestamp, "Error in BlockTxHash Timestamp") - require.Equal(t, block.BlockHeader.SequencerAddress, test.ExpectedBlockWithTxHashes.BlockHeader.SequencerAddress, "Error in BlockTxHash SequencerAddress") - require.Equal(t, block.Status, test.ExpectedBlockWithTxHashes.Status, "Error in BlockTxHash Status") - require.Equal(t, block.Transactions, test.ExpectedBlockWithTxHashes.Transactions, "Error in BlockTxHash Transactions") + require.Exactly(t, test.ExpectedBlockWithTxHashes, block) } case *PendingBlockTxHashes: pBlock, ok := result.(*PendingBlockTxHashes) - require.True(t, ok, fmt.Sprintf("should return *PendingBlockTxHashes, instead: %T\n", result)) + require.Truef(t, ok, "should return *PendingBlockTxHashes, instead: %T\n", result) - require.Equal(t, pBlock.ParentHash, test.ExpectedPendingBlockWithTxHashes.ParentHash, "Error in PendingBlockTxHashes ParentHash") - require.Equal(t, pBlock.SequencerAddress, test.ExpectedPendingBlockWithTxHashes.SequencerAddress, "Error in PendingBlockTxHashes SequencerAddress") - require.Equal(t, pBlock.Timestamp, test.ExpectedPendingBlockWithTxHashes.Timestamp, "Error in PendingBlockTxHashes Timestamp") - require.Equal(t, pBlock.Transactions, test.ExpectedPendingBlockWithTxHashes.Transactions, "Error in PendingBlockTxHashes Transactions") + if test.ExpectedPendingBlockWithTxHashes == nil { + validatePendingBlockHeader(t, &pBlock.PendingBlockHeader) + } else { + require.Exactly(t, test.ExpectedPendingBlockWithTxHashes, pBlock) + } default: t.Fatalf("unexpected block type, found: %T\n", resultType) } } } -// TestBlockWithTxsAndInvokeTXNV0 tests the BlockWithTxsAndInvokeTXNV0 function. +// TestBlockWithTxs tests the BlockWithTxs function. // -// The function tests the BlockWithTxsAndInvokeTXNV0 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia30436 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. +// The function tests the BlockWithTxs function by setting up a test configuration and a test set type. +// It then initializes Block type variables and invokes the BlockWithTxs function with different test scenarios. +// The function checks if the BlockWithTxs function returns the correct block data. // It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. // // Parameters: @@ -277,521 +240,168 @@ func TestBlockWithTxHashes(t *testing.T) { // Returns: // // none -func TestBlockWithTxsAndInvokeTXNV0(t *testing.T) { +func TestBlockWithTxs(t *testing.T) { testConfig := beforeEach(t) + require := require.New(t) type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block + BlockID BlockID + ExpectedBlock *Block + ExpectedPendingBlock *PendingBlock + InvokeV0Index int //TODO: implement mainnet testcases as Sepolia doesn't contains V0 transactions + InvokeV1Index int + InvokeV3Index int + DeclareV0Index int //TODO: implement mainnet testcases as Sepolia doesn't contains V0 transactions + DeclareV1Index int + DeclareV2Index int + DeclareV3Index int //TODO: implement testcase + DeployAccountV1Index int + DeployAccountV3Index int //TODO: implement testcase + L1HandlerV0Index int } - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": {}, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.Equal(t, test.ExpectedError, err, "Error in BlockWithTxHashes doesn't match the expected error") - - if test.ExpectedError != nil && blockWithTxsInterface == nil { - continue - } - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, fmt.Sprintf("expecting *rpv02.Block, instead %T", blockWithTxsInterface)) - - _, err = spy.Compare(blockWithTxs, false) - require.NoError(t, err, "expecting to match") + var fullBlockSepolia65083 Block + read, err := os.ReadFile("tests/block/sepoliaBlockTxs65083.json") + require.NoError(err) + require.NoError(json.Unmarshal(read, &fullBlockSepolia65083)) - require.True(t, strings.HasPrefix(blockWithTxs.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", blockWithTxs.BlockHash) - require.NotEmpty(t, blockWithTxs.Transactions, "the number of transactions should not be 0") - - if test.want != nil { - if (*test.want).BlockHash == &felt.Zero { - continue - } - - invokeV0Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV0) - require.True(t, ok, "expected invoke v0 transaction") - - invokeV0Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV0) - require.True(t, ok, "expected invoke v0 transaction") - - require.Equal(t, invokeV0Want.TransactionHash, invokeV0Block.TransactionHash, "expected equal TransactionHash") - require.Equal(t, invokeV0Want.InvokeTxnV0.MaxFee, invokeV0Block.InvokeTxnV0.MaxFee, "expected equal maxfee") - require.Equal(t, invokeV0Want.InvokeTxnV0.EntryPointSelector, invokeV0Block.InvokeTxnV0.EntryPointSelector, "expected equal eps") - - } - - } -} - -// TestBlockWithTxsAndInvokeTXNV1 tests the BlockWithTxsAndInvokeTXNV1 function. -// -// The function tests the BlockWithTxsAndInvokeTXNV1 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia64159 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. -// It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. -// -// Parameters: -// - t: The t testing object -// Returns: -// -// none -func TestBlockWithTxsAndInvokeTXNV1(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block - } - - var fullBlockSepolia64159 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964"), - ParentHash: utils.TestHexToFelt(t, "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 64159, - NewRoot: utils.TestHexToFelt(t, "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0"), - Timestamp: 1714901729, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - - BlockInvokeTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc"), - InvokeTxnV1: InvokeTxnV1{ - Type: "INVOKE", - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x33"), - MaxFee: utils.TestHexToFelt(t, "0x1bad55a98e1c1"), - SenderAddress: utils.TestHexToFelt(t, "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067"), - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x7bc0a22005a54ec6a005c1e89ab0201cbd0819621edd9fe4d5ef177a4ff33dd"), - utils.TestHexToFelt(t, "0x13089e5f38de4ea98e9275be7fadc915946be15c14a8fed7c55202818527bea"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e"), - utils.TestHexToFelt(t, "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126"), - utils.TestHexToFelt(t, "0x6"), - utils.TestHexToFelt(t, "0x5265706f73736573734275696c64696e67"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x5"), - utils.TestHexToFelt(t, "0x1b48"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0xe52"), - }, - }, - }, - }, - } + var fullBlockSepolia122476 Block + read, err = os.ReadFile("tests/block/sepoliaBlockTxs122476.json") + require.NoError(err) + require.NoError(json.Unmarshal(read, &fullBlockSepolia122476)) testSet := map[string][]testSetType{ - "mock": {}, - "testnet": { + "mock": { { - BlockID: WithBlockNumber(64159), - ExpectedError: nil, - want: &fullBlockSepolia64159, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 4, + BlockID: WithBlockTag("latest"), }, { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964")), - ExpectedError: nil, - want: &fullBlockSepolia64159, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 4, - }, - }, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.NoError(t, err, "Unable to fetch the given block.") - - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, "Failed to assert the Interface as *Block.") - require.Equal(t, blockWithTxs.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") - require.NotEqual(t, len(blockWithTxs.Transactions), 0, "The number of transaction should not be 0.") - - invokeV1Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV1) - require.True(t, ok, "Expected invoke v1 transaction.") - - invokeV1Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV1) - require.True(t, ok, "Expected invoke v1 transaction.") - - require.Equal(t, invokeV1Want.TransactionHash.String(), invokeV1Block.TransactionHash.String(), "Expected equal TransactionHash.") - require.Equal(t, invokeV1Want.InvokeTxnV1.MaxFee.String(), invokeV1Block.InvokeTxnV1.MaxFee.String(), "Expected equal maxfee.") - require.Equal(t, invokeV1Want.InvokeTxnV1.Calldata[1].String(), invokeV1Block.InvokeTxnV1.Calldata[1].String(), "Expected equal calldatas.") - } -} - -// TestBlockWithTxsAndInvokeTXNV3 tests the BlockWithTxsAndInvokeTXNV3 function. -// -// The function tests the BlockWithTxsAndInvokeTXNV3 function by setting up a test configuration and a test set type. -// It then initializes a fullBlockSepolia52767 variable with a Block struct and invokes the BlockWithTxs function with different test scenarios. -// The function compares the expected error with the actual error and checks if the BlockWithTxs function returns the correct block data. -// It also verifies the block hash, the number of transactions in the block, and the details of a specific transaction. -// -// Parameters: -// - t: The t testing object -// Returns: -// -// none -func TestBlockWithTxsAndInvokeTXNV3(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - want *Block - } - - var fullBlockSepolia52767 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564"), - ParentHash: utils.TestHexToFelt(t, "0x7d3a1bc98e49c197b38538fbc351dae6ed4f0ff4e718db119ddacef3088b928"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 52767, - NewRoot: utils.TestHexToFelt(t, "0x3d86be8765b9b6ab724fb8c10a64c4e1705bcc6d39032fe9973037abedc113a"), - Timestamp: 1661450764, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockInvokeTxnV3{ - TransactionHash: utils.TestHexToFelt(t, "0xb91eada292de46f4ec663bac57699c7b8f8fa454a8efad91fde7f35d941199"), - InvokeTxnV3: InvokeTxnV3{ - Type: "INVOKE", - SenderAddress: utils.TestHexToFelt(t, "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d"), - Nonce: utils.TestHexToFelt(t, "0x49f6"), - Version: TransactionV3, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x7f14bb280b602d0c0e22e91ea5d987371554664f68c57c0acd16bf9f8be36b4"), - utils.TestHexToFelt(t, "0x22c57ce8eb211c7fe0f04e7da338f579fcbc9e8997ec432fac7738c80fd56ad"), - }, - Calldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x3b4a36565470dadabb8db607d894c2c5c74c97c1da2a02e68f7b2c1e816c546"), - utils.TestHexToFelt(t, "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8"), - utils.TestHexToFelt(t, "0x13"), - utils.TestHexToFelt(t, "0x4e8ccea93954c392e93c650e4203c4bbb14bbd49172cf11ab344f3307ad8c"), - utils.TestHexToFelt(t, "0x54c04"), - utils.TestHexToFelt(t, "0x65c358022a33f92065dbc77f4ead316ca6140b77d3b9c85aeb533f3c6f0016"), - utils.TestHexToFelt(t, "0x6600d885"), - utils.TestHexToFelt(t, "0x304010200000000000000000000000000000000000000000000000000000000"), - utils.TestHexToFelt(t, "0x4"), - utils.TestHexToFelt(t, "0x4fdfb0a7f6"), - utils.TestHexToFelt(t, "0x4fdfb0a7f6"), - utils.TestHexToFelt(t, "0x4fe0bd9fe0"), - utils.TestHexToFelt(t, "0x4fe0bd9fe0"), - utils.TestHexToFelt(t, "0xa0663181cca796872"), - utils.TestHexToFelt(t, "0x1"), - utils.TestHexToFelt(t, "0x2"), - utils.TestHexToFelt(t, "0x6b34b2fe5d97c7d5dde2bd56b8344cb40b984d88fa7b0d9cabec6bcf882e072"), - utils.TestHexToFelt(t, "0x379c65ebd06927d01ab023e275bb4e45fb9ff9da8d27bf70bea6c2e5d51839b"), - utils.TestHexToFelt(t, "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5"), - utils.TestHexToFelt(t, "0xf9c67a4272ebcfcd527c103c7ee33946645e4df836a1c8c6f95c24d1e0ff94"), - utils.TestHexToFelt(t, "0x3deb1e9016f2a77b97802dfc4f39824cbe08cafaca8adc29d0467fc119a6673"), - utils.TestHexToFelt(t, "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962"), - }, - ResourceBounds: ResourceBoundsMapping{ - L1Gas: ResourceBounds{ - MaxAmount: "0x3bb2", - MaxPricePerUnit: "0x2ba7def30000", - }, - L2Gas: ResourceBounds{ - MaxAmount: "0x0", - MaxPricePerUnit: "0x0", - }, + BlockID: WithBlockTag("pending"), + ExpectedPendingBlock: &PendingBlock{ + PendingBlockHeader{ + ParentHash: utils.RANDOM_FELT, + Timestamp: 123, + SequencerAddress: utils.RANDOM_FELT, }, - Tip: "0x0", - PayMasterData: []*felt.Felt{}, - AccountDeploymentData: []*felt.Felt{}, - NonceDataMode: DAModeL1, - FeeMode: DAModeL1, + nil, }, }, - }, - } - - testSet := map[string][]testSetType{ - "mock": {}, - "testnet": { { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x4ae5d52c75e4dea5694f456069f830cfbc7bec70427eee170c3385f751b8564")), - ExpectedError: nil, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 25, - want: &fullBlockSepolia52767, + BlockID: WithBlockNumber(65083), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, }, { - BlockID: WithBlockNumber(52767), - ExpectedError: nil, - LookupTxnPositionInExpected: 0, - LookupTxnPositionInOriginal: 25, - want: &fullBlockSepolia52767, - }, - }, - "mainnet": {}, - }[testEnv] - - for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy - blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - require.NoError(t, err, "Unable to fetch the given block.") - - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, "Failed to assert the Interface as *Block.") - require.Equal(t, blockWithTxs.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") - require.NotEqual(t, len(blockWithTxs.Transactions), 0, "The number of transaction should not be 0.") - - invokeV3Want, ok := (*test.want).Transactions[test.LookupTxnPositionInExpected].(BlockInvokeTxnV3) - require.True(t, ok, "Expected invoke v3 transaction.") - - invokeV3Block, ok := blockWithTxs.Transactions[test.LookupTxnPositionInOriginal].(BlockInvokeTxnV3) - require.True(t, ok, "Expected invoke v3 transaction.") - - require.Equal(t, invokeV3Want.TransactionHash.String(), invokeV3Block.TransactionHash.String(), "Expected equal TransactionHash.") - require.Equal(t, invokeV3Want.InvokeTxnV3.Nonce, invokeV3Block.InvokeTxnV3.Nonce, "Expected equal nonce.") - require.Equal(t, invokeV3Want.InvokeTxnV3.Calldata[1].String(), invokeV3Block.InvokeTxnV3.Calldata[1].String(), "Expected equal calldatas.") - } -} - -// TestBlockWithTxsAndDeployOrDeclare tests BlockWithTxs with Deploy or Declare TXN - -// TestBlockWithTxsAndDeployOrDeclare is a test function that tests the functionality of the BlockWithTxs function. -// It creates a test configuration, defines a testSetType struct, and initializes three Blocks (fullBlockSepolia65204, fullBlockSepolia65083 and fullBlockSepoliai65212). -// It then defines a testSet map with different test scenarios for the BlockWithTxs function. -// The function iterates over the testSet and performs the BlockWithTxs operation on each test case. -// It compares the returned blockWithTxs with the expected result and verifies the correctness of the operation. -// The function also checks the block hash, the number of transactions, and other properties of the returned blockWithTxs. -// The function returns an error if the actual result does not match the expected result. -// It uses the Spy object to compare the blockWithTxs with the expected result and returns an error if they don't match. -// The function also checks the block hash to ensure it starts with "0x" and verifies that the number of transactions is not zero. -// Finally, the function compares the transactions of the returned blockWithTxs with the expected transactions and returns an error if they don't match. -// -// Parameters: -// - t: *testing.T - the testing object for running the test cases -// Returns: -// -// none -func TestBlockWithTxsAndDeployOrDeclare(t *testing.T) { - testConfig := beforeEach(t) - - type testSetType struct { - BlockID BlockID - ExpectedError error - LookupTxnPositionInOriginal int - LookupTxnPositionInExpected int - ExpectedBlockWithTxs *Block - } - - var fullBlockSepolia65204 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x2b0d32dbe49e0ffdc6d5cb36896198c242276ec63a60106a17963427f7cf10e"), - ParentHash: utils.TestHexToFelt(t, "0x7c703a06d7476055adaa518cb9682621755e7a95f144a54853ace320800e82e"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65204, - NewRoot: utils.TestHexToFelt(t, "0x1a24db193c0ebab47cb29c59ef277033d2e37dd909297073cb5c9594d892344"), - Timestamp: 1715289398, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeployAccountTxn{ - TransactionHash: utils.TestHexToFelt(t, "0x26e30d2ed579c1ff575710d8ce29d9056e67ac08ab261a7221d384734d6ad5a"), - DeployAccountTxn: DeployAccountTxn{ - Type: TransactionType_DeployAccount, - Version: TransactionV1, - Nonce: utils.TestHexToFelt(t, "0x0"), - MaxFee: utils.TestHexToFelt(t, "0x4865413596"), - ContractAddressSalt: utils.TestHexToFelt(t, "0x5ffef5f00daec09457836121dcb7a8bcae97080716a292d3d8ee899d0b2597e"), - ClassHash: utils.TestHexToFelt(t, "0x13bfe114fb1cf405bfc3a7f8dbe2d91db146c17521d40dcf57e16d6b59fa8e6"), - ConstructorCalldata: []*felt.Felt{ - utils.TestHexToFelt(t, "0x5ffef5f00daec09457836121dcb7a8bcae97080716a292d3d8ee899d0b2597e"), - }, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x561486f318c01d7d47434875d685a505c282804616ed3c69e91fb59731739fc"), - utils.TestHexToFelt(t, "0x1beb073a4cac8b344d22e2d2833ea30e140b3701936b3a4af69a12a2f47394b"), - utils.TestHexToFelt(t, "0x816dd0297efc55dc1e7559020a3a825e81ef734b558f03c83325d4da7e6253"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x0"), - utils.TestHexToFelt(t, "0x534e5f5345504f4c4941"), - utils.TestHexToFelt(t, "0x1f58325efbae915a4ea70270c536fa1c84c48eedf8ae3b970e0c0270694ddad"), - utils.TestHexToFelt(t, "0x2c7adff34d5e2b1c4205c80638df0e3a5b6831ff1d9643f6e7b8bcbbe1f71f3"), - }, - }, - }, - }, - } - - var fullBlockSepolia65083 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174"), - ParentHash: utils.TestHexToFelt(t, "0x4de1acdff24acba2a537ef651ec8f790e5c0321f92f1115b272a6f2f2d637e8"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65083, - NewRoot: utils.TestHexToFelt(t, "0x7df132d80333fd54a3a059e0cc6e851bda52cc72d0437a8f13a1b0809a17499"), - Timestamp: 1715244926, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeclareTxnV1{ - TransactionHash: utils.TestHexToFelt(t, "0x3c7817502dac2dc90198c6b64b85f3700507d74c75e08af85164e1b35e3a8b5"), - DeclareTxnV1: DeclareTxnV1{ - Type: TransactionType_Declare, - MaxFee: utils.TestHexToFelt(t, "0xde0b6b3a7640000"), - Version: TransactionV1, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x998b12c82d208af7c4b820626f2f7e015b8ee33ef5ae44e8a04f5254977865"), - utils.TestHexToFelt(t, "0x55c341329a881afb29462ab32dcebb16d35c56021c3595bbba01b5c563f66fe"), - }, - Nonce: utils.TestHexToFelt(t, "0x713"), - ClassHash: utils.TestHexToFelt(t, "0x6c5a3f54e8bbfe07167c87f8ace70629573e05c385fe4bea69bc1d323acb8d3"), - SenderAddress: utils.TestHexToFelt(t, "0x2cc631ca0c544639f6e4403b8f3611696a3d831e8157ea1c946e35429c7ac31"), - }, - }, - }, - } - - var fullBlockSepoliai65212 = Block{ - BlockHeader: BlockHeader{ - BlockHash: utils.TestHexToFelt(t, "0x31b785f0f8b258f7b164d13ecc02dc4e06a1c67174f1e39f9368d1b5af43ae"), - ParentHash: utils.TestHexToFelt(t, "0x6133d377632092e31b0adad5a6496c8468cb3cb53de10f3ecdfc748f57cf9e3"), - SequencerAddress: utils.TestHexToFelt(t, "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8"), - BlockNumber: 65212, - NewRoot: utils.TestHexToFelt(t, "0x2d867e8a51807513d3372cf2658f03b0c212caba0fcad4f036e3023215b27a"), - Timestamp: 1715292305, - }, - Status: "ACCEPTED_ON_L1", - Transactions: []IBlockTransaction{ - BlockDeclareTxnV2{ - TransactionHash: utils.TestHexToFelt(t, "0x3e68091ecacab5a880ae8d9847d7b87408bbf05270ded34e082577acfdc3770"), - DeclareTxnV2: DeclareTxnV2{ - Type: TransactionType_Declare, - MaxFee: utils.TestHexToFelt(t, "0x1108942d5866"), - Version: TransactionV2, - Signature: []*felt.Felt{ - utils.TestHexToFelt(t, "0x40cedf50ffc6866050b63e9576333da68ed51e258c6ddfa7e22d5e557f71961"), - utils.TestHexToFelt(t, "0x4b33458a2005664fbd204331c078df3ac5a16288285ba0fcf1b6fd9c9d9257a"), - }, - Nonce: utils.TestHexToFelt(t, "0x2f"), - ClassHash: utils.TestHexToFelt(t, "0x190c14ee771ed5c77a006545659baa33d22c083473c8ba136cf1614f3e545b0"), - CompiledClassHash: utils.TestHexToFelt(t, "0x3bd32e501b720756105de78796bebd5f4412da986811dff38a114be296e6120"), - SenderAddress: utils.TestHexToFelt(t, "0x3b2d6d0edcbdbdf6548d2b79531263628887454a0a608762c71056172d36240"), - }, + BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174")), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, }, }, - } - - testSet := map[string][]testSetType{ - "mock": {}, "testnet": { { - BlockID: WithBlockTag("latest"), - ExpectedError: nil, - }, - { - BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x2b0d32dbe49e0ffdc6d5cb36896198c242276ec63a60106a17963427f7cf10e")), - ExpectedError: nil, - LookupTxnPositionInOriginal: 5, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65204, - }, - { - BlockID: WithBlockNumber(65204), - ExpectedError: nil, - LookupTxnPositionInOriginal: 5, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65204, - }, - { - BlockID: WithBlockNumber(65212), - ExpectedError: nil, - LookupTxnPositionInOriginal: 24, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepoliai65212, + BlockID: WithBlockTag("latest"), }, { - BlockID: WithBlockNumber(65083), - ExpectedError: nil, - LookupTxnPositionInOriginal: 26, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65083, + BlockID: WithBlockTag("pending"), }, { - BlockID: WithBlockNumber(65212), - ExpectedError: nil, - LookupTxnPositionInOriginal: 24, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepoliai65212, + BlockID: WithBlockNumber(65083), + ExpectedBlock: &fullBlockSepolia65083, + InvokeV1Index: 1, + InvokeV3Index: 3, + DeclareV1Index: 26, + DeclareV2Index: 25, + DeployAccountV1Index: 42, }, { - BlockID: WithBlockNumber(65083), - ExpectedError: nil, - LookupTxnPositionInOriginal: 26, - LookupTxnPositionInExpected: 0, - ExpectedBlockWithTxs: &fullBlockSepolia65083, + BlockID: WithBlockHash(utils.TestHexToFelt(t, "0x56a71e0443d2fbfaa91b1000e830b516ca0d4a424abb9c970d23801957dbfa3")), + ExpectedBlock: &fullBlockSepolia122476, + L1HandlerV0Index: 4, }, }, "mainnet": {}, }[testEnv] for _, test := range testSet { - spy := NewSpy(testConfig.provider.c) - testConfig.provider.c = spy blockWithTxsInterface, err := testConfig.provider.BlockWithTxs(context.Background(), test.BlockID) - assert.Equal(t, test.ExpectedError, err, "BlockWithTxHashes doesn't match the expected error.") + require.NoError(err, "Unable to fetch the given block.") + + switch block := blockWithTxsInterface.(type) { + case *PendingBlock: + if test.ExpectedPendingBlock == nil { + validatePendingBlockHeader(t, &block.PendingBlockHeader) + } else { + require.Exactly(test.ExpectedPendingBlock, block) + } + case *Block: + if test.ExpectedBlock == nil { + require.Equal(block.BlockHash.String()[:2], "0x", "Block Hash should start with \"0x\".") + require.NotEmpty(block.Transactions, "The number of transaction should not be 0.") + } else { + require.Exactly(test.ExpectedBlock, block) + + //validates an BlockInvokeV1 transaction + if test.InvokeV1Index > 0 { + invokeV1Expected, ok := (*test.ExpectedBlock).Transactions[test.InvokeV1Index].(BlockInvokeTxnV1) + require.True(ok, "Expected invoke v1 transaction.") + invokeV1Block, ok := block.Transactions[test.InvokeV1Index].(BlockInvokeTxnV1) + require.True(ok, "Expected invoke v1 transaction.") + + require.Exactly(invokeV1Expected, invokeV1Block) + } - if test.ExpectedError != nil && blockWithTxsInterface == nil { - continue - } + //validates an BlockInvokeV3 transaction + if test.InvokeV3Index > 0 { + invokeV3Expected, ok := (*test.ExpectedBlock).Transactions[test.InvokeV3Index].(BlockInvokeTxnV3) + require.True(ok, "Expected invoke v3 transaction.") + invokeV3Block, ok := block.Transactions[test.InvokeV3Index].(BlockInvokeTxnV3) + require.True(ok, "Expected invoke v3 transaction.") - blockWithTxs, ok := blockWithTxsInterface.(*Block) - require.True(t, ok, fmt.Sprintf("Expecting *rpc.Block, instead %T", blockWithTxsInterface)) + require.Exactly(invokeV3Expected, invokeV3Block) + } - diff, err := spy.Compare(blockWithTxs, false) - require.NoError(t, err, "Expected to compare the BlockWithTxs.") + //validates an BlockDeclareV1 transaction + if test.DeclareV1Index > 0 { + declareV1Expected, ok := (*test.ExpectedBlock).Transactions[test.DeclareV1Index].(BlockDeclareTxnV1) + require.True(ok, "Expected declare v1 transaction.") + declareV1Block, ok := block.Transactions[test.DeclareV1Index].(BlockDeclareTxnV1) + require.True(ok, "Expected declare v1 transaction.") - if diff != "FullMatch" { - _, err = spy.Compare(blockWithTxs, false) - require.NoError(t, err, "Unable to compare the count.") - } + require.Exactly(declareV1Expected, declareV1Block) + } - require.True(t, strings.HasPrefix(blockWithTxs.BlockHash.String(), "0x"), "Block Hash should start with \"0x\", instead: %s", blockWithTxs.BlockHash) - require.NotEmpty(t, blockWithTxs.Transactions, "the number of transactions should not be 0") + //validates an BlockDeclareV2 transaction + if test.DeclareV2Index > 0 { + declareV2Expected, ok := (*test.ExpectedBlock).Transactions[test.DeclareV2Index].(BlockDeclareTxnV2) + require.True(ok, "Expected declare v2 transaction.") + declareV2Block, ok := block.Transactions[test.DeclareV2Index].(BlockDeclareTxnV2) + require.True(ok, "Expected declare v2 transaction.") - if test.ExpectedBlockWithTxs != nil { - if test.ExpectedBlockWithTxs.BlockHash == &felt.Zero { - continue + require.Exactly(declareV2Expected, declareV2Block) + } + + //validates an BlockDeployAccountV1 transaction + if test.DeployAccountV1Index > 0 { + deployAccountV1Expected, ok := (*test.ExpectedBlock).Transactions[test.DeployAccountV1Index].(BlockDeployAccountTxn) + require.True(ok, "Expected declare v2 transaction.") + deployAccountV1Block, ok := block.Transactions[test.DeployAccountV1Index].(BlockDeployAccountTxn) + require.True(ok, "Expected declare v2 transaction.") + + require.Exactly(deployAccountV1Expected, deployAccountV1Block) + } + + //validates an BlockL1HandlerV0 transaction + if test.L1HandlerV0Index > 0 { + l1HandlerV0Expected, ok := (*test.ExpectedBlock).Transactions[test.L1HandlerV0Index].(BlockL1HandlerTxn) + require.True(ok, "Expected L1 handler transaction.") + l1HandlerV0Block, ok := block.Transactions[test.L1HandlerV0Index].(BlockL1HandlerTxn) + require.True(ok, "Expected L1 handler transaction.") + + require.Exactly(l1HandlerV0Expected, l1HandlerV0Block) + } } - require.True(t, cmp.Equal(test.ExpectedBlockWithTxs.Transactions[test.LookupTxnPositionInExpected], blockWithTxs.Transactions[test.LookupTxnPositionInOriginal]), - "the expected transaction blocks to match, instead: %s", cmp.Diff(test.ExpectedBlockWithTxs.Transactions[test.LookupTxnPositionInExpected], blockWithTxs.Transactions[test.LookupTxnPositionInOriginal])) } + } } @@ -1091,3 +701,13 @@ func TestStateUpdate(t *testing.T) { ) } } + +func validatePendingBlockHeader(t *testing.T, pBlock *PendingBlockHeader) { + require.NotZero(t, pBlock.ParentHash) + require.NotZero(t, pBlock.Timestamp) + require.NotZero(t, pBlock.SequencerAddress) + require.NotZero(t, pBlock.L1GasPrice) + require.NotZero(t, pBlock.StarknetVersion) + require.NotZero(t, pBlock.L1DataGasPrice) + require.NotZero(t, pBlock.L1DAMode) +} diff --git a/rpc/mock_test.go b/rpc/mock_test.go index 8a37ee56..78264fbd 100644 --- a/rpc/mock_test.go +++ b/rpc/mock_test.go @@ -44,53 +44,55 @@ func (r *rpcMock) Close() { func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method string, args ...interface{}) error { switch method { case "starknet_addDeclareTransaction": - return mock_starknet_addDeclareTransaction(result, method, args...) + return mock_starknet_addDeclareTransaction(result, args...) case "starknet_addInvokeTransaction": - return mock_starknet_addInvokeTransaction(result, method, args...) + return mock_starknet_addInvokeTransaction(result, args...) case "starknet_addDeployAccountTransaction": - return mock_starknet_addDeployAccountTransaction(result, method, args...) + return mock_starknet_addDeployAccountTransaction(result, args...) case "starknet_blockNumber": - return mock_starknet_blockNumber(result, method, args...) + return mock_starknet_blockNumber(result, args...) case "starknet_call": - return mock_starknet_call(result, method, args...) + return mock_starknet_call(result, args...) case "starknet_chainId": - return mock_starknet_chainId(result, method, args...) + return mock_starknet_chainId(result, args...) case "starknet_estimateFee": - return mock_starknet_estimateFee(result, method, args...) + return mock_starknet_estimateFee(result, args...) case "starknet_estimateMessageFee": - return mock_starknet_estimateMessageFee(result, method, args...) + return mock_starknet_estimateMessageFee(result, args...) + case "starknet_getBlockWithTxs": + return mock_starknet_getBlockWithTxs(result, args...) case "starknet_getBlockTransactionCount": - return mock_starknet_getBlockTransactionCount(result, method, args...) + return mock_starknet_getBlockTransactionCount(result, args...) case "starknet_getBlockWithTxHashes": - return mock_starknet_getBlockWithTxHashes(result, method, args...) + return mock_starknet_getBlockWithTxHashes(result, args...) case "starknet_getBlockWithReceipts": - return mock_starknet_getBlockWithReceipts(result, method, args...) + return mock_starknet_getBlockWithReceipts(result, args...) case "starknet_getClass": - return mock_starknet_getClass(result, method, args...) + return mock_starknet_getClass(result, args...) case "starknet_getClassAt": - return mock_starknet_getClassAt(result, method, args...) + return mock_starknet_getClassAt(result, args...) case "starknet_getClassHashAt": - return mock_starknet_getClassHashAt(result, method, args...) + return mock_starknet_getClassHashAt(result, args...) case "starknet_getEvents": - return mock_starknet_getEvents(result, method, args...) + return mock_starknet_getEvents(result, args...) case "starknet_getNonce": - return mock_starknet_getNonce(result, method, args...) + return mock_starknet_getNonce(result, args...) case "starknet_getStateUpdate": - return mock_starknet_getStateUpdate(result, method, args...) + return mock_starknet_getStateUpdate(result, args...) case "starknet_getStorageAt": - return mock_starknet_getStorageAt(result, method, args...) + return mock_starknet_getStorageAt(result, args...) case "starknet_getTransactionByBlockIdAndIndex": - return mock_starknet_getTransactionByBlockIdAndIndex(result, method, args...) + return mock_starknet_getTransactionByBlockIdAndIndex(result, args...) case "starknet_getTransactionByHash": - return mock_starknet_getTransactionByHash(result, method, args...) + return mock_starknet_getTransactionByHash(result, args...) case "starknet_getTransactionReceipt": - return mock_starknet_getTransactionReceipt(result, method, args...) + return mock_starknet_getTransactionReceipt(result, args...) case "starknet_syncing": - return mock_starknet_syncing(result, method, args...) + return mock_starknet_syncing(result, args...) case "starknet_traceBlockTransactions": - return mock_starknet_traceBlockTransactions(result, method, args...) + return mock_starknet_traceBlockTransactions(result, args...) case "starknet_traceTransaction": - return mock_starknet_traceTransaction(result, method, args...) + return mock_starknet_traceTransaction(result, args...) default: return errNotFound } @@ -104,7 +106,7 @@ func (r *rpcMock) CallContext(ctx context.Context, result interface{}, method st // - args: Additional arguments passed to the function // Returns: // - error: An error if the result is not of type *big.Int or if the arguments count is not zero -func mock_starknet_blockNumber(result interface{}, method string, args ...interface{}) error { +func mock_starknet_blockNumber(result interface{}, args ...interface{}) error { r, ok := result.(*big.Int) if !ok || r == nil { return errWrongType @@ -125,7 +127,7 @@ func mock_starknet_blockNumber(result interface{}, method string, args ...interf // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Returns: // - error: an error if there is a wrong type or wrong number of arguments. -func mock_starknet_chainId(result interface{}, method string, args ...interface{}) error { +func mock_starknet_chainId(result interface{}, args ...interface{}) error { r, ok := result.(*string) if !ok { return errWrongType @@ -146,7 +148,7 @@ func mock_starknet_chainId(result interface{}, method string, args ...interface{ // - args: a variadic parameter of type interface{} that represents the arguments of the function. // Return: // - error: an error if there is a wrong type or wrong number of arguments -func mock_starknet_syncing(result interface{}, method string, args ...interface{}) error { +func mock_starknet_syncing(result interface{}, args ...interface{}) error { // Note: Since starknet_syncing returns with bool or SyncStatus, we pass in interface{} r, ok := result.(*interface{}) if !ok { @@ -184,7 +186,7 @@ func mock_starknet_syncing(result interface{}, method string, args ...interface{ // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil -func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -224,7 +226,7 @@ func mock_starknet_getTransactionByBlockIdAndIndex(result interface{}, method st // - args: The arguments of the API call. This should be a variadic parameter that accepts a variable number of arguments // Returns: // - error: An error if the API call fails, otherwise nil -func mock_starknet_getBlockTransactionCount(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockTransactionCount(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -250,7 +252,7 @@ func mock_starknet_getBlockTransactionCount(result interface{}, method string, a // - args: a variadic parameter that contains the arguments used for retrieval // Returns: // - error: an error if there is a failure in retrieving the transaction -func mock_starknet_getTransactionByHash(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionByHash(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -294,7 +296,7 @@ func mock_starknet_getTransactionByHash(result interface{}, method string, args // - args: a variadic parameter representing the arguments of the transaction receipt // Returns: // - error: an error if there is an issue with the type of the result or the number of arguments -func mock_starknet_getTransactionReceipt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getTransactionReceipt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -384,7 +386,7 @@ func mock_starknet_getTransactionReceipt(result interface{}, method string, args // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 // The function always returns nil. -func mock_starknet_getClassAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClassAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -429,7 +431,7 @@ func mock_starknet_getClassAt(result interface{}, method string, args ...interfa // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 2 // The function always returns nil. -func mock_starknet_getClassHashAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClassHashAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -453,7 +455,7 @@ func mock_starknet_getClassHashAt(result interface{}, method string, args ...int } // mock_starknet_getClass is a function that retrieves a class from the StarkNet API. -// It takes in a result interface{}, a method string, and variadic args ...interface{}. +// It takes in a result interface{} and variadic args ...interface{}. // The result interface{} should be a pointer to json.RawMessage. // The method string specifies the method to be called on the StarkNet API. // The args ...interface{} are the arguments to be passed to the method. @@ -472,7 +474,7 @@ func mock_starknet_getClassHashAt(result interface{}, method string, args ...int // - args: The variadic args ...interface{} representing the arguments to be passed to the method // Returns: // - error: An error if any of the conditions mentioned above are met -func mock_starknet_getClass(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getClass(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { fmt.Printf("%T\n", result) @@ -513,7 +515,7 @@ func mock_starknet_getClass(result interface{}, method string, args ...interface // Returns: // - error: An error if the result is not of type *json.RawMessage or is nil or the number of arguments is not equal to 1 // The function always returns nil -func mock_starknet_getEvents(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getEvents(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -567,7 +569,7 @@ func mock_starknet_getEvents(result interface{}, method string, args ...interfac // - args: The arguments to be passed to the method // Returns: // - error: An error if the transaction fails -func mock_starknet_call(result interface{}, method string, args ...interface{}) error { +func mock_starknet_call(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -598,7 +600,7 @@ func mock_starknet_call(result interface{}, method string, args ...interface{}) // - args: The arguments to be passed to the method // Return: // - error: An error if the transaction fails -func mock_starknet_addDeclareTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addDeclareTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -634,7 +636,7 @@ func mock_starknet_addDeclareTransaction(result interface{}, method string, args // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_estimateFee(result interface{}, method string, args ...interface{}) error { +func mock_starknet_estimateFee(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -689,7 +691,7 @@ func mock_starknet_estimateFee(result interface{}, method string, args ...interf // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_estimateMessageFee(result interface{}, method string, args ...interface{}) error { +func mock_starknet_estimateMessageFee(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -732,7 +734,7 @@ func mock_starknet_estimateMessageFee(result interface{}, method string, args .. // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_addInvokeTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addInvokeTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -784,7 +786,7 @@ func mock_starknet_addInvokeTransaction(result interface{}, method string, args return errors.Wrap(errWrongArgs, fmt.Sprintf("args[0] should be InvokeTxnV1 or InvokeTxnV3, got %T\n", args[0])) } } -func mock_starknet_addDeployAccountTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_addDeployAccountTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -825,7 +827,7 @@ func mock_starknet_addDeployAccountTransaction(result interface{}, method string // - args: The arguments to be passed to the method // Returns: // - error: an error if any -func mock_starknet_getStorageAt(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getStorageAt(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -866,7 +868,7 @@ func mock_starknet_getStorageAt(result interface{}, method string, args ...inter // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any -func mock_starknet_getStateUpdate(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getStateUpdate(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { @@ -934,7 +936,7 @@ func mock_starknet_getStateUpdate(result interface{}, method string, args ...int // - The number of arguments is not equal to 2 // - The first argument is not of type BlockID // - The second argument is not of type *felt.Felt -func mock_starknet_getNonce(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getNonce(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok { return errWrongType @@ -965,6 +967,70 @@ func mock_starknet_getNonce(result interface{}, method string, args ...interface return nil } +// mock_starknet_getBlockWithTxs mocks the behavior of the starknet_getBlockWithTxs function. +// If successful, it populates the result parameter with the json.RawMessage containing the block with the transactions. +// +// Parameters: +// - result: the result is expected to be a pointer to json.RawMessage +// - method: the method to be called +// - args: variadic parameter that can contain any number of arguments +// Returns: +// - error: an error if any +func mock_starknet_getBlockWithTxs(result interface{}, args ...interface{}) error { + r, ok := result.(*json.RawMessage) + if !ok || r == nil { + return errWrongType + } + if len(args) != 1 { + return errWrongArgs + } + blockId, ok := args[0].(BlockID) + if !ok { + fmt.Printf("args[0] should be BlockID, got %T\n", args[0]) + return errWrongArgs + } + + fakeFeltField, err := utils.HexToFelt("0xdeadbeef") + if err != nil { + return err + } + + if blockId.Tag == "pending" { + pBlock, err := json.Marshal( + PendingBlock{ + PendingBlockHeader{ + ParentHash: fakeFeltField, + Timestamp: 123, + SequencerAddress: fakeFeltField, + }, + BlockTransactions{}, + }, + ) + if err != nil { + return err + } + + return json.Unmarshal(pBlock, &r) + } else { + var fullBlockSepolia64159 Block + read, err := os.ReadFile("tests/block/sepoliaBlockTxs65083.json") + if err != nil { + return err + } + err = json.Unmarshal(read, &fullBlockSepolia64159) + if err != nil { + return err + } + + blockBites, err := json.Marshal(fullBlockSepolia64159) + if err != nil { + return err + } + + return json.Unmarshal(blockBites, &r) + } +} + // mock_starknet_getBlockWithTxHashes mocks the behavior of the starknet_getBlockWithTxHashes function. // If successful, it populates the result parameter with the json.RawMessage containing the block with the specified transaction hashes. // @@ -974,7 +1040,7 @@ func mock_starknet_getNonce(result interface{}, method string, args ...interface // - args: variadic parameter that can contain any number of arguments // Returns: // - error: an error if any -func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockWithTxHashes(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -995,14 +1061,15 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args if err != nil { return err } + fakeFelt, err := utils.HexToFelt("0xbeef") if blockId.Tag == "pending" { pBlock, err := json.Marshal( PendingBlockTxHashes{ PendingBlockHeader{ - ParentHash: &felt.Zero, + ParentHash: fakeFelt, Timestamp: 123, - SequencerAddress: &felt.Zero}, + SequencerAddress: fakeFelt}, txHashes, }) if err != nil { @@ -1013,26 +1080,16 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args return err } } else { - blockHash, err := utils.HexToFelt("0xbeef") if err != nil { return err } block, err := json.Marshal( BlockTxHashes{ BlockHeader: BlockHeader{ - BlockHash: blockHash, - ParentHash: &felt.Zero, + BlockHash: fakeFelt, + ParentHash: fakeFelt, Timestamp: 124, - SequencerAddress: &felt.Zero, - L1DAMode: L1DAModeBlob, - L1GasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - L1DataGasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, + SequencerAddress: fakeFelt, }, Status: BlockStatus_AcceptedOnL1, Transactions: txHashes, @@ -1048,7 +1105,7 @@ func mock_starknet_getBlockWithTxHashes(result interface{}, method string, args return nil } -func mock_starknet_getBlockWithReceipts(result interface{}, method string, args ...interface{}) error { +func mock_starknet_getBlockWithReceipts(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -1157,7 +1214,7 @@ func mock_starknet_getBlockWithReceipts(result interface{}, method string, args // - args: optional arguments for the method // Returns: // - error: an error if any -func mock_starknet_traceBlockTransactions(result interface{}, method string, args ...interface{}) error { +func mock_starknet_traceBlockTransactions(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType @@ -1212,7 +1269,7 @@ func mock_starknet_traceBlockTransactions(result interface{}, method string, arg // - args: a variadic parameter that can accept multiple arguments. // Returns: // - error: an error if any -func mock_starknet_traceTransaction(result interface{}, method string, args ...interface{}) error { +func mock_starknet_traceTransaction(result interface{}, args ...interface{}) error { r, ok := result.(*json.RawMessage) if !ok || r == nil { return errWrongType diff --git a/rpc/provider_test.go b/rpc/provider_test.go index b1e8da67..96543dcf 100644 --- a/rpc/provider_test.go +++ b/rpc/provider_test.go @@ -13,7 +13,6 @@ import ( "strings" "testing" - "github.com/NethermindEth/juno/core/felt" "github.com/joho/godotenv" "github.com/stretchr/testify/require" ) @@ -220,53 +219,6 @@ func TestSyncing(t *testing.T) { } } -func TestGetBlock(t *testing.T) { - testConfig := beforeEach(t) - type testSetType struct { - BlockID BlockID - ExpectedResp *Block - ExpectedErr *RPCError - } - - testSet := map[string][]testSetType{ - "devnet": {}, - "mock": { - { - BlockID: BlockID{Tag: "latest"}, - ExpectedResp: &Block{ - BlockHeader: BlockHeader{ - L1DAMode: L1DAModeBlob, - L1DataGasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - L1GasPrice: ResourcePrice{ - PriceInWei: new(felt.Felt).SetUint64(1), - PriceInFRI: new(felt.Felt).SetUint64(1), - }, - }, - }, - ExpectedErr: nil, - }, - }, - }[testEnv] - - for _, test := range testSet { - block, err := testConfig.provider.BlockWithTxHashes(context.Background(), BlockID{Tag: "latest"}) - if test.ExpectedErr != nil { - require.Equal(t, test.ExpectedErr, err) - } else { - blockCasted := block.(*BlockTxHashes) - expectdBlockHeader := test.ExpectedResp.BlockHeader - require.Equal(t, blockCasted.L1DAMode, expectdBlockHeader.L1DAMode) - require.Equal(t, blockCasted.L1DataGasPrice.PriceInWei, expectdBlockHeader.L1DataGasPrice.PriceInWei) - require.Equal(t, blockCasted.L1DataGasPrice.PriceInFRI, expectdBlockHeader.L1DataGasPrice.PriceInFRI) - require.Equal(t, blockCasted.L1GasPrice.PriceInWei, expectdBlockHeader.L1GasPrice.PriceInWei) - require.Equal(t, blockCasted.L1GasPrice.PriceInFRI, expectdBlockHeader.L1GasPrice.PriceInFRI) - } - - } -} func TestCookieManagement(t *testing.T) { // Don't return anything unless cookie is set. server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { @@ -278,7 +230,7 @@ func TestCookieManagement(t *testing.T) { }) } else { var result string - err := mock_starknet_chainId(&result, "") + err := mock_starknet_chainId(&result) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return diff --git a/rpc/tests/block/sepoliaBlockTxs122476.json b/rpc/tests/block/sepoliaBlockTxs122476.json new file mode 100644 index 00000000..2078194f --- /dev/null +++ b/rpc/tests/block/sepoliaBlockTxs122476.json @@ -0,0 +1,213 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x56a71e0443d2fbfaa91b1000e830b516ca0d4a424abb9c970d23801957dbfa3", + "parent_hash": "0x4a1ea63e3ef611fb240bb16eead16695c636363a3024610376904e69d516322", + "block_number": 122476, + "new_root": "0x237e5c6bfe1194ec161004611f3ac9665642471751b9d1294067d628a1545a3", + "timestamp": 1724239919, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0x47066ac08715", + "price_in_wei": "0x28fb3be9e" + }, + "l1_data_gas_price": { + "price_in_fri": "0x39dbaca5e26d4", + "price_in_wei": "0x216251c284" + }, + "l1_da_mode": "CALLDATA", + "starknet_version": "0.13.2", + "transactions": [ + { + "transaction_hash": "0x641245619f0e5010cb9f074066b5503c1800cd378ffdcae19eece606b08770c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1c", + "max_fee": "0x6e9ddce36b59", + "sender_address": "0x43a18d9fd0d0f5c9a2c6d81d08154d262c0fc7a7f3f9dad3f0bdec4d7095afa", + "signature": [ + "0x1", + "0x0", + "0x7cbfb36b90ae66bd015b40b8ad8474e83cf56f579dd8ea0a24142b03c4efb51", + "0xa8b12c708ab70dbd54db4d70f12e96460836f25af0cb54c83873e70d25c6aa", + "0x236af83c1fd8dac6ce2d08af9ccb61ad6673df527bf5684d668b05025d9deb6" + ], + "calldata": [ + "0x1", + "0x55bf57fd5e7cc51e9dc3454cd739def751a49f25206e47d0ab41935eba96ac5", + "0x2c3af3bc76ccc9147c14ca5db346743531c8fc91c1b5be4ccfab190021aa828", + "0x1", + "0x4d93124831d19c120a4f4fedc1de422c77659297c594b0988bc6605a1906c13" + ] + }, + { + "transaction_hash": "0x64a8fac37485df357b317d7a8bb4aa18fb72ebc05363c7fc710af98316c2840", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x6", + "max_fee": "0x6b0555ce18bf", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x6a00cb31718dc425e29c4114b29682d7b4b9cdfe34fc42d8d67aa8e571e890b", + "0x6304c0fd58833f66192eff8d9798ce90560dc25cd10748327078b63ee21fea" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x5", + "0x3", + "0x8" + ] + }, + { + "transaction_hash": "0xce7138ae93a21e94ac063665f7a51be346d9c3c287d918e391f98c9d9a33fd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x3def", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x64b4dacea78c6394572f4534400abb74a872a059b68630fba80895c646aa97f", + "signature": [ + "0x509f8e6e14954b6f7bba2e4b35bc4176b751f6229730e014441cccd5e733d6e", + "0x3379aa29d6c131e5486e189f4cb43e5a09727ad4e6ea0b58199283cb0c913a8" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x8", + "0x1", + "0x2", + "0x66c5d037", + "0x44455249424954", + "0x505241474d415f4d45524b4c45", + "0x444552494249545f4f5054494f4e535f4d45524b4c455f524f4f54", + "0xa90b73a7b7b48deb9fe3ea09be50d30d", + "0x55fb4f5a4dd7c056a51f1a55e0bc09a" + ] + }, + { + "transaction_hash": "0x5cf2ffcc8c96d8c065e108bbd905e70b704ebc81e024d6a1de8c402fed65f7f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x7", + "max_fee": "0x49edb704d666", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x9e88cff23da4c7f299213beb54b13bcc4da60f668cb648e3a7bc4fa3b9705a", + "0x40a053a9e135f795533b2854ca2f554a17b675a7c5c7ca5681ce4b5c99313a2" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x6", + "0x2", + "0x3" + ] + }, + { + "transaction_hash": "0x6c1c8408b4cdfbd64c9c994ed832b4ff1bab0fa61dbe6cb481096a089b89f77", + "type": "L1_HANDLER", + "version": "0x0", + "nonce": "0x21e6", + "contract_address": "0x4c5772d1914fe6ce891b64eb35bf3522aeae1315647314aac58b01137607f3f", + "calldata": [ + "0x8453fc6cd1bcfe8d4dfc069c400b433054d47bdc", + "0x455448", + "0xb957c7591bf8b8ad1e5b8942de6ff3b1d22d4951", + "0x74a007ad858d86d30a34b0426cc0a9b44cdb7b287a39827741b922c3f5055e8", + "0x8ac7230489e80000", + "0x0" + ], + "entry_point_selector": "0x1b64b1b3b690b43b9b514fb81377518f4039cd3e4f4914d8a6bdf01d679fb19" + }, + { + "transaction_hash": "0x5cd0758b83ad825e08acc746b18022f03b9b972beadd9697f2422349b0148b0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x8", + "max_fee": "0x49e9df773879", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x632491df7060ab0f30b8b051237de3734dd4060d75fa3b6dea05a98acb39d26", + "0x6d6b36c0763109401072bdcaaf21dba0d1f01e50513b128bffa785c4799c7e0" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0x351e7616cb53c4e023ff48cbf54d76dfa5e4597a1e30b0d4fec4bba86d92c59", + "0x3", + "0x7", + "0x0", + "0x2" + ] + }, + { + "transaction_hash": "0x71648395117861ef59d09920696915a17d1df06a9439119376b0c894ad44ce7", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x639f39858940", + "contract_address_salt": "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "class_hash": "0x36078334509b514626504edc9fb252328d1a240e4e948bef8d0c08dff45927f", + "constructor_calldata": [ + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x1" + ], + "signature": [ + "0x1", + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x748e650647cba51ef1bd1ac2faf63d21ed4f24d228fc8586213f0d2d637046f", + "0x7da98a8a6c77fd1db081a4859683aaa420b70c0a5923a66ef272b9750eb5f92" + ] + }, + { + "transaction_hash": "0xaae8c4f108bd775e19caf0ee3c5505d4eeea9130c19965b8ecb8af47c687a0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x533bc04f0dda", + "sender_address": "0x11de9c756a84a99b5765183625cd7ad8eb6a0206ce2904dbe478a1a1e5c0cb1", + "signature": [ + "0x1", + "0x0", + "0x72ebef11beea5f6bc7a40867f4c13198c674d4d6b4e1bc6b534542c330b62f9", + "0x5e214ddd79c80b2e79382acfd6d00e6fcef6c068ab9b38217f050309620ea9a", + "0x3078e43f6ed45c1d0380df34a662519686c50e6d4124cab4253b02e72295267" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0xa940bfe8529989ba4e7bf3a52ab68fc33e7e4a54a8dcbd905208f52a2539b8", + "0x5f5e100", + "0x0" + ] + }, + { + "transaction_hash": "0x66534071605a2bb656fb93b34da7300fd98e44d87e19356833e6abc0d5cb245", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9", + "max_fee": "0x5b300530450c", + "sender_address": "0x6f4baf2a23802beeab7d6cb3aa2cb36ca1b0b93d371eac0560568d689909e0e", + "signature": [ + "0x1c8a08103a1c0a292d9e74dba944722d7692b440ccef82a753aed52edca092a", + "0x481395eb95e87902f4dcdfe2c1b8b45682ab6fe30c4d75c2f5069e49bf65ca7" + ], + "calldata": [ + "0x1", + "0x2f62fd47cbc9bb16b2e9ab22e1a9d57352aff1cab642d93256061a6cd3c6838", + "0xebe67ecda98df0a49deaf33424f0f34c7216d3d08eac37cef51835b4707e64", + "0x2", + "0x382f32312f3230323420363a33323a313920504d", + "0x1" + ] + } + ] +} \ No newline at end of file diff --git a/rpc/tests/block/sepoliaBlockTxs64159.json b/rpc/tests/block/sepoliaBlockTxs64159.json deleted file mode 100644 index c4387b35..00000000 --- a/rpc/tests/block/sepoliaBlockTxs64159.json +++ /dev/null @@ -1,4628 +0,0 @@ -{ - "jsonrpc": "2.0", - "result": { - "status": "ACCEPTED_ON_L1", - "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", - "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", - "block_number": 64159, - "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", - "timestamp": 1714901729, - "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", - "l1_gas_price": { - "price_in_fri": "0xdf0413d3c777", - "price_in_wei": "0x185f2d3eb5" - }, - "l1_data_gas_price": { - "price_in_fri": "0xa41c1219f8849", - "price_in_wei": "0x11ef315a9ab" - }, - "l1_da_mode": "BLOB", - "starknet_version": "0.13.1.1", - "transactions": [ - { - "transaction_hash": "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5b", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x4db15c20dfbd745d60d345f17c5e7f126f3e8d8b8db3af2defaf4b182203df", - "0x698845744536a2a4259aab10cfa49d10d9306c9cb719bf028ac5fed5bc6080a" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x246", - "0x53", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5cb15a2f0e0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4933aba6e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5c916d31e60", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x56379b7f480", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x2c60ee70", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x80204b0", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663750c6", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5ca56ee7200", - "0x4254432f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x491318b940", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375095", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f54f4c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663750c5", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375088", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c94ab5e500", - "0x574254432f555344", - "0x0", - "0x0", - "0x663750cc", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f4cce6", - "0x574254432f425443", - "0x0", - "0x0", - "0x663750df", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551abfd640", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663750d3", - "0x444546494c4c414d41", - "0x505241474d41", - "0xca1e94", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663750e6", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5846c", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x663750e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663750c5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663750e7", - "0x444546494c4c414d41", - "0x505241474d41", - "0x45c5798", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637508a", - "0x444546494c4c414d41", - "0x505241474d41", - "0x27103a980", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4b55434f494e", - "0x505241474d41", - "0x5cafb70b400", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752ce", - "0x4b55434f494e", - "0x505241474d41", - "0x4926595000", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752ca", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752ae", - "0x4b55434f494e", - "0x505241474d41", - "0x2c5fb5f0", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752b7", - "0x4b55434f494e", - "0x505241474d41", - "0x8016870", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5cab7a367fe", - "0x4254432f555344", - "0x1e06f4d257ecaebe9df20b800", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x4925334828", - "0x4554482f555344", - "0x3214c57c904b810f49aa800", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e4afd54e6a4ad51000", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e41a3ccee09cc00", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d4", - "0x48554f4249", - "0x505241474d41", - "0x2c5aef34", - "0x554e492f555344", - "0xc77502da41a59e97c800", - "0x0", - "0x663752d5", - "0x48554f4249", - "0x505241474d41", - "0x8028662", - "0x5354524b2f555344", - "0x29d90a1dcd3e1dae9e00", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x5cb2136f8fd", - "0x4254432f555344", - "0x3317dd415e633a00000000", - "0x0", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x492f54f3a9", - "0x4554482f555344", - "0x1d68b02c3424cc00000000", - "0x0", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41b0ba79a5b0600", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x2c5d3911", - "0x554e492f555344", - "0x246d4e811c7a5e000000", - "0x0", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0x8028662", - "0x5354524b2f555344", - "0x2b50a0595bd600000000", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb15aa9200", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4249545354414d50", - "0x505241474d41", - "0x491f6f4b00", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663752d3", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663752d2", - "0x4249545354414d50", - "0x505241474d41", - "0x562676b0200", - "0x4254432f455552", - "0x0", - "0x0", - "0x663752d4", - "0x4249545354414d50", - "0x505241474d41", - "0x2c617b10", - "0x554e492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663752d5", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663752d4", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5cb1dc9b3af", - "0x4254432f555344", - "0xeb56f34c978fd0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x492bb9e912", - "0x4554482f555344", - "0x62656870346344", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fd8c85ba348", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b1be6c9ad87", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5c9c1ccc4a7", - "0x574254432f555344", - "0x796c529c6f0", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5633646a2a0", - "0x4254432f455552", - "0x2afd3d24ae4d", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x2c5ceaf4", - "0x554e492f555344", - "0x149867a0a27b9", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fcec6f2f8cc5", - "0x0", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x45ae58a", - "0x5a454e442f555344", - "0x3f531f57a5e", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x49171f4e8c", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551a34ef44", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663752d5", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x663752d5", - "0x494e444558434f4f50", - "0x505241474d41", - "0x2545b6bdd", - "0x4450492f555344", - "0x502aeca0740", - "0x0", - "0x663752d7", - "0x42494e414e4345", - "0x505241474d41", - "0x2553e2b89", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5c", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x605ff2c95ffae61e96ad5481b3ddf769757aa550db9059df16e55952ab4c2da", - "0x1beb5c085b6e5096c57895f6ce1e9269cdc3d2f7a944ae35ac9effc42af95ee" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x6072a93afb6", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca44743880", - "0x4254432f555344", - "0x118686485c5984910000", - "0x0", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5cab2b8fb00", - "0x4254432f555344", - "0x1e34df95235227a0000", - "0x0", - "0x1", - "0x663752d4", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1c7341476", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xed2b58e2a", - "0x4254432f55534454", - "0x2d1821da35b7d73100", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf6e817a13", - "0x4254432f55534454", - "0x1350d69e5c0cc1c0", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0xf0effcb0f", - "0x4254432f55534454", - "0x277e234227d7cd00", - "0x1905ddbbc00", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4c265e2090", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x49254afd9f", - "0x4554482f555344", - "0x883e9377eb162bb00", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4923b001f0", - "0x4554482f555344", - "0x5a411357f980b0b000", - "0x0", - "0x1", - "0x663752d5", - "0x42494e414e4345", - "0x505241474d41", - "0x4a3e3034b3", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xbe18f17f", - "0x4554482f55534454", - "0xb54a81af01dc00", - "0x1905ddbbc00", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xc2f9c074", - "0x4554482f55534454", - "0x5cf8bb46d02800", - "0x192327e7000", - "0x1", - "0x663752d6", - "0x42494e414e4345", - "0x505241474d41", - "0xbb45eb82", - "0x4554482f55534454", - "0xe7e15df9c107bb00", - "0x0", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5db47c3f000", - "0x4254432f555344", - "0x1bc436074f8e01", - "0x1905ddbbc00", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5fb8073c180", - "0x4254432f555344", - "0xf9d290eecba37", - "0x192327e7000", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x25516ce62a0e7", - "0x19407212400", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x5368331ce0fc8", - "0x18f61842000", - "0x1", - "0x663752d4", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229c882a03220", - "0x18f8590a400", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xf02c9f7a0", - "0x4254432f55534454", - "0xc9b25aa2a2c", - "0x1905ddbbc00", - "0x1", - "0x663752d7", - "0x4f4b58", - "0x505241474d41", - "0xf6cfe13e0", - "0x4254432f55534454", - "0xc47328e90c4", - "0x192327e7000", - "0x1", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0xee8c27440", - "0x4254432f55534454", - "0x24a743d0318", - "0x18fcda9ac00", - "0x1", - "0x663752d5", - "0x4f4b58", - "0x505241474d41", - "0xfe5604100", - "0x4254432f55534454", - "0x19c84605960", - "0x19407212400", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9615dbeb4c4", - "0x18f61842000", - "0x1", - "0x663752d6", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x34a194e22ff", - "0x18f8590a400", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4a144a6600", - "0x4554482f555344", - "0x70066a27bb5a0", - "0x1905ddbbc00", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4ba4d57600", - "0x4554482f555344", - "0x3eb44b4d6c260", - "0x192327e7000", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x494dcea180", - "0x4554482f555344", - "0x37c2ffcd5c540", - "0x18f61842000", - "0x1", - "0x663752d8", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbdc563f0", - "0x4554482f55534454", - "0x808fe02b9e4", - "0x1905ddbbc00", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xc24cc0d0", - "0x4554482f55534454", - "0x2e86f16ef7c", - "0x192327e7000", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbb89cbd0", - "0x4554482f55534454", - "0x4487bc67970", - "0x18f61842000", - "0x1", - "0x663752d9", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x5cb1ba07300", - "0x4254432f555344", - "0xa8ae41b3d818c80000", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xed3ea74a0", - "0x4254432f55534454", - "0x12f33035f69b20", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0x49234f1d40", - "0x4554482f555344", - "0x17a3dd3899337d000", - "0x0", - "0x1", - "0x663752d4", - "0x4259424954", - "0x505241474d41", - "0xbb2cb7b0", - "0x4554482f55534454", - "0x42186eabcfd7c", - "0x0" - ] - }, - { - "transaction_hash": "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x32", - "max_fee": "0x4b5b075cca932", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x14c577c4dcbe6857e4d097fb0770289820019d4d67819501e813bd0daf0a540", - "0x4bfe882403bb9adad0fafdf740df449311ce47c7e79bcb94ba09ee366e432df" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x6c6d617ab2d657532de8fe2648428fc912dbc5cfea7ba7440d23e1387e3d8b", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x1eba00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5d", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x6fc52a609784800f3aa0848121b9d328568e4c518a0a80cc51913716be863ed", - "0x52eda1b2ad692dc861089dff441a760740e0d1ff4688682e0a0980fb07c3acd" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x246", - "0x53", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5cacdd019a0", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x49294c9f60", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8faf5a280", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x562fe09f7c0", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x2c627510", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537d", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f5e100", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537a", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375375", - "0x4b55434f494e", - "0x505241474d41", - "0x5caef84f200", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375379", - "0x4b55434f494e", - "0x505241474d41", - "0x492a1a9dc0", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637536f", - "0x4b55434f494e", - "0x505241474d41", - "0xf424a", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637530d", - "0x4b55434f494e", - "0x505241474d41", - "0x2c5a10a0", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637534b", - "0x4b55434f494e", - "0x505241474d41", - "0x802c800", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5ca78865e45", - "0x4254432f555344", - "0x1e073d4339087b8544de91900", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x49246cf141", - "0x4554482f555344", - "0x322097b0742185696c0dd00", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e6acfb874eaeba7000", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x2c6080ce", - "0x554e492f555344", - "0xc7a83b0e7d53c1bc6000", - "0x0", - "0x6637537b", - "0x48554f4249", - "0x505241474d41", - "0x804478b", - "0x5354524b2f555344", - "0x29e22bcf5ef7ba6be500", - "0x0", - "0x6637537b", - "0x4f4b58", - "0x505241474d41", - "0x5caabceea48", - "0x4254432f555344", - "0x3310afa265fea000000000", - "0x0", - "0x6637537b", - "0x4f4b58", - "0x505241474d41", - "0x492645e7de", - "0x4554482f555344", - "0x1d661b252653ad00000000", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41c49f02452e080", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0x2c5ebfa5", - "0x554e492f555344", - "0x24671f409590fa000000", - "0x0", - "0x6637537a", - "0x4f4b58", - "0x505241474d41", - "0x803bed8", - "0x5354524b2f555344", - "0x2b4f26a557053c000000", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb3f63b900", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375378", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375379", - "0x4249545354414d50", - "0x505241474d41", - "0x56291242900", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375377", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637537b", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5cabc867876", - "0x4254432f555344", - "0xeb4b7968bdfcd8", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x49220309e7", - "0x4554482f555344", - "0x6275e47ad2d734", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4ff00e2ba109", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b1ac7862f12", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5c9aabc5ad8", - "0x574254432f555344", - "0x7745201c165", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x56344bae440", - "0x4254432f455552", - "0x2ae33791bd5e", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x2c5fbd85", - "0x554e492f555344", - "0x149905a590614", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x8040cf5", - "0x5354524b2f555344", - "0x1fd439accefa4", - "0x0", - "0x6637537b", - "0x4259424954", - "0x505241474d41", - "0x45af912", - "0x5a454e442f555344", - "0x3f710285042", - "0x0", - "0x6637537a", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4917199e4c", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551ab282ec", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x6637537b", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x6637537c", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254b3cdaf", - "0x4450492f555344", - "0x4ff69c4fbde", - "0x0", - "0x6637537d", - "0x42494e414e4345", - "0x505241474d41", - "0x25560c033", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x33", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x3fd4d5bc46ca2a9b30073178c06fc5b4298e1ac6cc568dc40afeb808b3ad9f6", - "0x44901ac2ce0e794578e2df07e4d9c40fa247de2bd5002cb0d13afd88dcc11af" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0x1b48", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x9a6", - "max_fee": "0x7bee46410b33b", - "sender_address": "0x788722c9ffad95d40738a65d733135c03c9b169505d34fb4dc32b5fe8bcc113", - "signature": [ - "0x4c02fc283807264be825c8c0e58215703564d9f81ceb63ff6074cde42605536", - "0xab864400abe211c9590ea3873666db371a8e07439b29b4f99aeccdff5cc408" - ], - "calldata": [ - "0x2", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x5", - "0x5265736f6c766552616e646f6d4576656e74", - "0x3", - "0x0", - "0x1", - "0xead", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265636569766544656c6976657279", - "0x4", - "0x9", - "0x14cb0", - "0x1", - "0xead" - ] - }, - { - "transaction_hash": "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x34", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x57fb1e1d6de3c6610001f798a415af1ee1ede9acdd410fe8a2320056f275c2a", - "0x75a3762f19db243125fdf04ce1aa051c66b5d8cb2752af099da977f43ef795f" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x738061707d1ba5a73ca4419bd49f470d3eb5860cef23dc1d91212646e57d161", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x4300000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x76", - "max_fee": "0x18bfe6fa45de5", - "sender_address": "0x682e5c40cbf3c1c008d615d3d02ecccf859b37f888ef1d4b694d5b8da38f808", - "signature": [ - "0x75726195a9d84eb19825d3e8119ab1929f6e586654c8e27cb03e27528ee0ec5", - "0x4bcb815945933bd90c1b53f8c1df6de34f4bca14325ef796d80792bbddd4e3c" - ], - "calldata": [ - "0x1", - "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", - "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", - "0x3", - "0x3aa8a8337ac33d85a6677ca2212a58dbabeb6888decb48a8dd152521adb0a5e", - "0x6f05b59d3b20000", - "0x0" - ] - }, - { - "transaction_hash": "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5e", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x3e52c022d30c2f70d677901da82141c034f763a59ce6650c61d32855475344f", - "0x316d21bc3061f59c26642339e01d25ce0e6e6f254747e4bd1d2f1b7aa1df43d" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x238", - "0x51", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca674afba0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x491f2aa0e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f715d040", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x562b6f5dca0", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x2c5f67d0", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c897768", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4b55434f494e", - "0x505241474d41", - "0x5ca67065180", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4b55434f494e", - "0x505241474d41", - "0x491f9d11c0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753a8", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637534b", - "0x4b55434f494e", - "0x505241474d41", - "0x802c800", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5ca2b497301", - "0x4254432f555344", - "0x1e0598dbf5b7a0ce2c162ac00", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x491b564495", - "0x4554482f555344", - "0x321ce01d2debf04b547ad00", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x7e636d4c86e6b857000", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e42e2fa2f239dc0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x5ea9660", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b8", - "0x48554f4249", - "0x505241474d41", - "0x2c5c9cd6", - "0x554e492f555344", - "0xc78c66f13a84a6d8f600", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5ca631984e9", - "0x4254432f555344", - "0x330d354cdd3ce400000000", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x491c337e21", - "0x4554482f555344", - "0x1d61d10dbbdd5f00000000", - "0x0", - "0x663753b4", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41c37c01c709980", - "0x0", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0x2c5bb27e", - "0x554e492f555344", - "0x24601581819082000000", - "0x0", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x80397c9", - "0x5354524b2f555344", - "0x2b41b84ca9c5da000000", - "0x0", - "0x663753b5", - "0x4249545354414d50", - "0x505241474d41", - "0x5cafdd30e00", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753b7", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753b5", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753b7", - "0x4249545354414d50", - "0x505241474d41", - "0x562499d9d00", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753b6", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753b8", - "0x535441524b4e4554", - "0x505241474d41", - "0x430677a", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5ca6dad9da0", - "0x4254432f555344", - "0xeb5b0c136256b8", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4918a7b54d", - "0x4554482f555344", - "0x6269b77b9cc298", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4ff0079dcaa7", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3b08d76ab1d1", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5c985a2f223", - "0x574254432f555344", - "0x7756c918be7", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x562d9ae1b40", - "0x4254432f455552", - "0x2adddb21da5c", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x2c5c1423", - "0x554e492f555344", - "0x14974a35cdbac", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fd149a8c3774", - "0x0", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4584d90", - "0x5a454e442f555344", - "0x3f75543491b", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x491719a810", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753b9", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x551f3408e0", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753b8", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753ba", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254bee0f3", - "0x4450492f555344", - "0x4ff65da76b1", - "0x0", - "0x663753bd", - "0x42494e414e4345", - "0x505241474d41", - "0x25535d2a1", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b5f", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x3d50997904c49fe06a6e3fffc73a7a03d5f00dc69ab7649255f425c927faaaa", - "0x4ae8019d94da76d3af01ed39d55ce9c069905de4324fc56f5c2e11f679a4baf" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca273f6a00", - "0x4254432f555344", - "0x1e32082a190864c0000", - "0x0", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x606a16b8bd3", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5c9bb0d9b26", - "0x4254432f555344", - "0x1184e665e4ffbaa7cc00", - "0x0", - "0x1", - "0x663753b8", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1459a3c18", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xf0d7efb7b", - "0x4254432f55534454", - "0x285fe1bc1b6f25c0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xed13b041c", - "0x4254432f55534454", - "0x2d0e55b55b365dfc00", - "0x0", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0xf6d2251db", - "0x4254432f55534454", - "0x134f1f137bd26bc0", - "0x192327e7000", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x4a2f863561", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x49149ad136", - "0x4554482f555344", - "0x5a2e76a01e557e6e00", - "0x0", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x4c1d366f5c", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753b9", - "0x42494e414e4345", - "0x505241474d41", - "0x491a1df35e", - "0x4554482f555344", - "0x8829c25db594a1600", - "0x0", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xbdea2ab5", - "0x4554482f55534454", - "0xb51de5a2857400", - "0x1905ddbbc00", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xc2da0254", - "0x4554482f55534454", - "0x5ce9987031e800", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x42494e414e4345", - "0x505241474d41", - "0xbb15e496", - "0x4554482f55534454", - "0xe7dda7fa30df2080", - "0x0", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5dac8362100", - "0x4254432f555344", - "0x1bc1cf3e36edf0", - "0x1905ddbbc00", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5fb3db1e980", - "0x4254432f555344", - "0xf9a60bf1a7948", - "0x192327e7000", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2552015cdbadf", - "0x19407212400", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x663753b8", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0xf02c9f7a0", - "0x4254432f55534454", - "0xc97e79f4ecc", - "0x1905ddbbc00", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc453e6f40c0", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x198bcf7966a", - "0x19407212400", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9606e3c8b60", - "0x18f61842000", - "0x1", - "0x663753b9", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x663753bc", - "0x4f4b58", - "0x505241474d41", - "0x4a0535ecc0", - "0x4554482f555344", - "0x6fed10b96f758", - "0x1905ddbbc00", - "0x1", - "0x663753bc", - "0x4f4b58", - "0x505241474d41", - "0x4b91c2a600", - "0x4554482f555344", - "0x3eaa9abf8a95f", - "0x192327e7000", - "0x1", - "0x663753ba", - "0x4f4b58", - "0x505241474d41", - "0x493fbd8e80", - "0x4554482f555344", - "0x37bf83124e79f", - "0x18f61842000", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0xbd84b170", - "0x4554482f55534454", - "0x805d8800b20", - "0x1905ddbbc00", - "0x1", - "0x663753bb", - "0x4f4b58", - "0x505241474d41", - "0xc235b660", - "0x4554482f55534454", - "0x2e81e949068", - "0x192327e7000", - "0x1", - "0x663753be", - "0x4f4b58", - "0x505241474d41", - "0xbb6776c0", - "0x4554482f55534454", - "0x4477353a3e0", - "0x18f61842000", - "0x1", - "0x663753b4", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x5ca7daca880", - "0x4254432f555344", - "0xa891a2123920900000", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xed2084720", - "0x4254432f55534454", - "0x12f067c1ee213b", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0x4918483d00", - "0x4554482f555344", - "0x17a3401551876d000", - "0x0", - "0x1", - "0x663753b8", - "0x4259424954", - "0x505241474d41", - "0xbb111960", - "0x4554482f55534454", - "0x4226da64cfda7", - "0x0" - ] - }, - { - "transaction_hash": "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x35", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x6bd997de8e01fb712c4c53a57883ce6246eec6ffb60519e021c89d0830bf19", - "0x7e9d72cdaacdceacbb584cfc792947fb235023555ff228bc8b656d6c2434002" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0x9cd", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", - "type": "INVOKE", - "version": "0x3", - "nonce": "0x5", - "sender_address": "0x1bef1d205c047ee5d24ed873f1fa8c6c6cc37d0d3808266e2fe9a64b6ff9474", - "signature": [ - "0x61d74b8b1a72be739b8e62e579975e05f6185ab11f5d24ad23873e923c079ab", - "0x5d69947a53907d0113a5e9713afbfd03d286771995fb4b92f059b614a7df6ac" - ], - "calldata": [ - "0x1", - "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", - "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", - "0x5", - "0x47b774d6ee3573805f590bc556f500022d6d8f2b01a741239ff93ca22e6dddb", - "0x7e3c89140da097d5e30b51d617ea9ed4e8bbb0a9172e8a9359910d43dba9daa", - "0x1", - "0x1", - "0x3" - ], - "resource_bounds": { - "l1_gas": { - "max_amount": "0x1aa6", - "max_price_per_unit": "0x14e861dbd4065" - }, - "l2_gas": { - "max_amount": "0x0", - "max_price_per_unit": "0x0" - } - }, - "tip": "0x0", - "paymaster_data": [], - "account_deployment_data": [], - "nonce_data_availability_mode": "L1", - "fee_data_availability_mode": "L1" - }, - { - "transaction_hash": "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b60", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0xbb14f68cc2b09ef26c6519378ce709b12b2f4848a58476b3d4a83a9ea53e2b", - "0x3fa506dd6617ffa68628473ef4aa1d5d3c5bac2603294b450b2bacd93de5fb2" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x215", - "0x4c", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5cacdd019a0", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x4927645760", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f4c2b880", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x56319c14e00", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x2c627510", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x6637520f", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5cad419e700", - "0x4254432f555344", - "0x0", - "0x0", - "0x663751fa", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49190e9a40", - "0x4554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5814c", - "0x4441492f555344", - "0x0", - "0x0", - "0x663751fe", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344432f555344", - "0x0", - "0x0", - "0x663751b4", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf4240", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c82c9bb500", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375209", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f325c7", - "0x574254432f425443", - "0x0", - "0x0", - "0x663751e5", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551ba4b800", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663751bb", - "0x444546494c4c414d41", - "0x505241474d41", - "0xcaafe4", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x663751f8", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c899bd1", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x663753f3", - "0x4b55434f494e", - "0x505241474d41", - "0x5cadf6d1280", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f5", - "0x4b55434f494e", - "0x505241474d41", - "0x4927e60a80", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753ed", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753ec", - "0x4b55434f494e", - "0x505241474d41", - "0x803d970", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x5ca78865e45", - "0x4254432f555344", - "0x1e0713252483d0bb17b81bb00", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x4923fa840a", - "0x4554482f555344", - "0x322e2a71a8fa4214c083200", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e42e2fa2f239dc0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x2c600ba2", - "0x554e492f555344", - "0xc7984bc76ed7e5188400", - "0x0", - "0x663753f6", - "0x48554f4249", - "0x505241474d41", - "0x8046e9a", - "0x5354524b2f555344", - "0x29dcb94040e873c2be00", - "0x0", - "0x663753f6", - "0x4f4b58", - "0x505241474d41", - "0x5cad455984a", - "0x4254432f555344", - "0x330e62d5920cfe00000000", - "0x0", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x4925610d71", - "0x4554482f555344", - "0x1d6650b66c35b200000000", - "0x0", - "0x663753f2", - "0x4f4b58", - "0x505241474d41", - "0xf41c3", - "0x555344432f555344", - "0x41bc187e931cc00", - "0x0", - "0x663753f4", - "0x4f4b58", - "0x505241474d41", - "0x2c61cccc", - "0x554e492f555344", - "0x24650515e37f30000000", - "0x0", - "0x663753f4", - "0x4f4b58", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x2b3748b2407dd2000000", - "0x0", - "0x663753f3", - "0x4249545354414d50", - "0x505241474d41", - "0x5cafdd30e00", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x663753f5", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x663753f3", - "0x4249545354414d50", - "0x505241474d41", - "0x56261752100", - "0x4254432f455552", - "0x0", - "0x0", - "0x663753f4", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x663753f6", - "0x535441524b4e4554", - "0x505241474d41", - "0x424e9bc", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5cad6de032b", - "0x4254432f555344", - "0xeb69d7e377f2b0", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x492179ba0c", - "0x4554482f555344", - "0x62717719716b88", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fe1f98f8b33", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3afc7f8ccdae", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5c9872f9ff1", - "0x574254432f555344", - "0x7756e90cbef", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x563555476e0", - "0x4254432f455552", - "0x2ae1b339642a", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x2c5e9896", - "0x554e492f555344", - "0x1498755a1f8f5", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x80349ab", - "0x5354524b2f555344", - "0x1fd318cd32464", - "0x0", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x4584d90", - "0x5a454e442f555344", - "0x3f6e8a3b60b", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4916f9f600", - "0x4554482f555344", - "0x0", - "0x0", - "0x663753f6", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x663753f7", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254d1535e", - "0x4450492f555344", - "0x4ff9749858f", - "0x0", - "0x663753fa", - "0x42494e414e4345", - "0x505241474d41", - "0x2557f1f20", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b61", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x31d41de7f6ecf88bd1b4c4e06fd6f8465bc537f5e0d41991448558c2fcdabc7", - "0x29514feef0d8b315207f99773fa60bf2f4559e4acdcc20fbfc576be0c364962" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x6070411dec2", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca23abe300", - "0x4254432f555344", - "0x1186230e753b64860000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca869d7a00", - "0x4254432f555344", - "0x1e33f98b5b24f2c0000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0x5e1a9aab622", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xed246d6c0", - "0x4254432f55534454", - "0x2d0a72d7e8e9434000", - "0x0", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf6e1ee611", - "0x4254432f55534454", - "0x13505b3a82bae340", - "0x192327e7000", - "0x1", - "0x663753f6", - "0x42494e414e4345", - "0x505241474d41", - "0xf0e7f25a9", - "0x4254432f55534454", - "0x277cd1dee1875b00", - "0x1905ddbbc00", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x4c252edece", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x49209135c0", - "0x4554482f555344", - "0x8835c613814f4c000", - "0x0", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x491da58780", - "0x4554482f555344", - "0x5a399efc591c5d8000", - "0x0", - "0x1", - "0x663753f7", - "0x42494e414e4345", - "0x505241474d41", - "0x4a360bab9a", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xc2ee91cb", - "0x4554482f55534454", - "0x5cf36640fe4600", - "0x192327e7000", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xbdfaff27", - "0x4554482f55534454", - "0xb52df27d0d7c00", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x42494e414e4345", - "0x505241474d41", - "0xbb2d53f0", - "0x4554482f55534454", - "0xe7fab3519a367400", - "0x0", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5dadab05a80", - "0x4254432f555344", - "0x1bc1e98adebe70", - "0x1905ddbbc00", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5fb149158ff", - "0x4254432f555344", - "0xf9a05b12626b4", - "0x192327e7000", - "0x1", - "0x663753f3", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x663753f0", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2552015cdbadf", - "0x19407212400", - "0x1", - "0x663753f5", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x663753f3", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xf01a80ce0", - "0x4254432f55534454", - "0xc994403025c", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc4532975094", - "0x192327e7000", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x19767306a5a", - "0x19407212400", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xed9b8a960", - "0x4254432f55534454", - "0x9606e3c8b60", - "0x18f61842000", - "0x1", - "0x663753f7", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4a0d8e27c0", - "0x4554482f555344", - "0x6ffb85a7780e3", - "0x1905ddbbc00", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4b91c2a600", - "0x4554482f555344", - "0x3eaa8ba263a7f", - "0x192327e7000", - "0x1", - "0x663753fa", - "0x4f4b58", - "0x505241474d41", - "0x493fbd8e80", - "0x4554482f555344", - "0x37bf83124e79f", - "0x18f61842000", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x663753fb", - "0x4f4b58", - "0x505241474d41", - "0xbd941ac0", - "0x4554482f55534454", - "0x8069fbe97b0", - "0x1905ddbbc00", - "0x1", - "0x663753f8", - "0x4f4b58", - "0x505241474d41", - "0xc2421270", - "0x4554482f55534454", - "0x2e84fe10b5f", - "0x192327e7000", - "0x1", - "0x663753f9", - "0x4f4b58", - "0x505241474d41", - "0xbb722520", - "0x4554482f55534454", - "0x447e27f8720", - "0x18f61842000", - "0x1", - "0x663753fb", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x663753f6", - "0x4259424954", - "0x505241474d41", - "0x5caaa60c000", - "0x4254432f555344", - "0xa89278340a1db80000", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0xed32290c0", - "0x4254432f55534454", - "0x12f116f27aafc7", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0x491b8f78c0", - "0x4554482f555344", - "0x17a3d48e0b9e87000", - "0x0", - "0x1", - "0x663753f5", - "0x4259424954", - "0x505241474d41", - "0xbb2871f0", - "0x4554482f55534454", - "0x422ef453ced0c", - "0x0" - ] - }, - { - "transaction_hash": "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x36", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x310c8db8723e82a5fa8a67be11ec0e278d5c7b07c740c8056d57b828ca01b71", - "0x21a882f6e43760d7bd37537d9dc32d77b30089e4b8d91879417f9e9602e981e" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x3e93ff1b03257b5f1c64d855faa0c05c455009646d29ffdb3a1d9539eefe5cc", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x20aef00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x37", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x201c65a2165307bc5b701cbc47c72a0acb57e2e8d35f08e49af745fb1324baf", - "0x309af65acd47084a3d50102d57fde61bae96971928954a1e112b0391667f45f" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0xa6ae2db8bdba1315c709191512215b41d5616adc09d1b8ad9ee28dadd5c39f", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x212a500000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x38", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x2d350d6649616cba65f1c1822ac1c63a05f0f8fd6898a198cfd12fe332b5203", - "0x3f3cc80bcb01d1b02e32c58ab2202417398fa14d6b0ec2fd6d21f589eadc332" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x787bab7274e19042fdaf5adc8c42d564fe74232cf82cdcc971ca78fd240a577", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x20eca00000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x39", - "max_fee": "0x3de32ed40b7d5", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x38b2ee98be328d5ac9fdec64bb4653f157bd48616e4aab9ebb0b65b2a628296", - "0x73d9091938d27d703be698e1a609e89147190b5f7fe986cb6b1b2b4a4dcc117" - ], - "calldata": [ - "0x2", - "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", - "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", - "0x4", - "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", - "0x1b31d2900", - "0x1455f27ec8855f53e4e41e8e0de0429aa788e17b3506281ed984c62d9c71f27", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0xa", - "0x4163636570745072657061696441677265656d656e74", - "0x8", - "0x4", - "0x204b200000001", - "0x1", - "0x1", - "0xe52", - "0x2819a0", - "0x1", - "0xe52" - ] - }, - { - "transaction_hash": "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b62", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x50b1559e426ec214c16e539afdeecf06b0f5ce92b4079cc81a5eb0329f5ba8f", - "0x3c7dce0695b70fdecd47deac06f2cecabbc4d7ae9e37074883a7ad708d68dc0" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x23f", - "0x52", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca56f61320", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4927bfe4e0", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf41aa", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5c8f267ffa0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5f446d8", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x5627ea24e60", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x2c61b1c0", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x8038b50", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375334", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5ca987f1d00", - "0x4254432f555344", - "0x0", - "0x0", - "0x6637531c", - "0x444546494c4c414d41", - "0x505241474d41", - "0x49155c8ec0", - "0x4554482f555344", - "0x0", - "0x0", - "0x663752e3", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f56270", - "0x4441492f555344", - "0x0", - "0x0", - "0x6637531c", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf416a", - "0x555344432f555344", - "0x0", - "0x0", - "0x663752dc", - "0x444546494c4c414d41", - "0x505241474d41", - "0xf41bb", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375335", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5c8c19eae00", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375335", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f3fc60", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637530b", - "0x444546494c4c414d41", - "0x505241474d41", - "0x551801eec0", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375298", - "0x444546494c4c414d41", - "0x505241474d41", - "0xca7bf0", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x6637531d", - "0x444546494c4c414d41", - "0x505241474d41", - "0x5f5e100", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375339", - "0x444546494c4c414d41", - "0x505241474d41", - "0x2c588a00", - "0x554e492f555344", - "0x0", - "0x0", - "0x6637532b", - "0x444546494c4c414d41", - "0x505241474d41", - "0x7fcad80", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375338", - "0x444546494c4c414d41", - "0x505241474d41", - "0x464b500", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375310", - "0x444546494c4c414d41", - "0x505241474d41", - "0x26f2aa3c0", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x491c098ac0", - "0x4554482f555344", - "0xd9e2233df65960000", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5cc2a96e780", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5535a18d00", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0xc3be47", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x5f4b570", - "0x4c5553442f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x2c899bd1", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375432", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x7fdfbfb", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375433", - "0x4745434b4f5445524d494e414c", - "0x505241474d41", - "0x256f79240", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375430", - "0x4b55434f494e", - "0x505241474d41", - "0x5ca6ec5f600", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375430", - "0x4b55434f494e", - "0x505241474d41", - "0x4925282300", - "0x4554482f555344", - "0x0", - "0x0", - "0x6637541f", - "0x4b55434f494e", - "0x505241474d41", - "0xf4253", - "0x555344432f555344", - "0x0", - "0x0", - "0x66368a48", - "0x4b55434f494e", - "0x505241474d41", - "0x5c546970ac0", - "0x574254432f555344", - "0x0", - "0x0", - "0x66374441", - "0x4b55434f494e", - "0x505241474d41", - "0x5f494f8", - "0x574254432f425443", - "0x0", - "0x0", - "0x6637529d", - "0x4b55434f494e", - "0x505241474d41", - "0x55f501b5300", - "0x4254432f455552", - "0x0", - "0x0", - "0x6637537a", - "0x4b55434f494e", - "0x505241474d41", - "0x2c60c760", - "0x554e492f555344", - "0x0", - "0x0", - "0x663753ec", - "0x4b55434f494e", - "0x505241474d41", - "0x803d970", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375124", - "0x4b55434f494e", - "0x505241474d41", - "0x4770930", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5c9f62f9142", - "0x4254432f555344", - "0x1e047088dae1651a3e77ee400", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x492409c5cd", - "0x4554482f555344", - "0x32348c22440a49e0cddd800", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5f56210", - "0x4441492f555344", - "0x7e4e2787f52456be000", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0xf4191", - "0x555344432f555344", - "0x3e4292f4ac4f77c0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x5ea2130", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375433", - "0x48554f4249", - "0x505241474d41", - "0x8046e9a", - "0x5354524b2f555344", - "0x29d34f2f7e89628eb800", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5ca42eacd8c", - "0x4254432f555344", - "0x330a0731e423ca00000000", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x4926646b65", - "0x4554482f555344", - "0x1d67be2c5a036f00000000", - "0x0", - "0x66375433", - "0x4f4b58", - "0x505241474d41", - "0xf415f", - "0x555344432f555344", - "0x41c80d50af7a000", - "0x0", - "0x6637542e", - "0x4f4b58", - "0x505241474d41", - "0x2c604638", - "0x554e492f555344", - "0x2461129d5e39c0000000", - "0x0", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x8040cf5", - "0x5354524b2f555344", - "0x2b2fd209d931a0000000", - "0x0", - "0x6637542f", - "0x4249545354414d50", - "0x505241474d41", - "0x5cb45599a00", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x492302d200", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x5eb32a0", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0xf4222", - "0x555344432f555344", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0xf4326", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x5fa4dcf", - "0x574254432f425443", - "0x0", - "0x0", - "0x66375431", - "0x4249545354414d50", - "0x505241474d41", - "0x562794ca500", - "0x4254432f455552", - "0x0", - "0x0", - "0x66375430", - "0x4249545354414d50", - "0x505241474d41", - "0x2c6714a8", - "0x554e492f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0xc15ab7", - "0x4c4f5244532f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0x7fb5c5d", - "0x5354524b2f555344", - "0x0", - "0x0", - "0x66375433", - "0x535441524b4e4554", - "0x505241474d41", - "0x424e9bc", - "0x5a454e442f555344", - "0x0", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5ca45827a30", - "0x4254432f555344", - "0xeb56584a892858", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x49228c59c2", - "0x4554482f555344", - "0x62706f56fcf3a0", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5f54e88", - "0x4441492f555344", - "0x4fe1a08b75f2", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0xf412d", - "0x555344432f555344", - "0x3af543c9131a", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5c9888e8877", - "0x574254432f555344", - "0x75db15a09c3", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x5f4bc08", - "0x574254432f425443", - "0x15a5a5c4", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x563093e9ec0", - "0x4254432f455552", - "0x2ac8338d1b4f", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x2c5d6020", - "0x554e492f555344", - "0x1495bd926ffd3", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x804d03f", - "0x5354524b2f555344", - "0x1fcc1a9855ced", - "0x0", - "0x66375433", - "0x4259424954", - "0x505241474d41", - "0x4570192", - "0x5a454e442f555344", - "0x3f4b7d786aa", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x4254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x4916f9f790", - "0x4554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5f5bdd8", - "0x4441492f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0xf427e", - "0x555344542f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x5c78f7c5888", - "0x574254432f555344", - "0x0", - "0x0", - "0x66375433", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x552806cb74", - "0x5753544554482f555344", - "0x0", - "0x0", - "0x66375432", - "0x50524f50454c4c4552", - "0x505241474d41", - "0x25403d4d8", - "0x4450492f555344", - "0x0", - "0x0", - "0x66375433", - "0x494e444558434f4f50", - "0x505241474d41", - "0x254ded54e", - "0x4450492f555344", - "0x4ff9749858f", - "0x0", - "0x66375435", - "0x42494e414e4345", - "0x505241474d41", - "0x255aacb36", - "0x4450492f555344", - "0x0" - ] - }, - { - "transaction_hash": "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x15b63", - "max_fee": "0x16345785d8a0000", - "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", - "signature": [ - "0x415b0722a91e5df5a5940b15a31348cf88b36c03503c092280197789ec15cb3", - "0x6afb18ab77404451de102eae94ec7f64ff02dbdae7a84be30723a822c6fa3f7" - ], - "calldata": [ - "0x1", - "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", - "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", - "0x131", - "0x26", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x606a55937fa", - "0x4254432f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5ca0d3e6700", - "0x4254432f555344", - "0x1e31808b137e1620000", - "0x0", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5e148016179", - "0x4254432f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x66375432", - "0x42494e414e4345", - "0x505241474d41", - "0x5c9b28eb680", - "0x4254432f555344", - "0x1184ccaeee74a10d0000", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf6d41b3fc", - "0x4254432f55534454", - "0x134f465bc8774300", - "0x192327e7000", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xed13a8ed9", - "0x4254432f55534454", - "0x2d03bb2fdd1a0f7e00", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0xf0d9a6cb8", - "0x4254432f55534454", - "0x277a7a05ae532800", - "0x1905ddbbc00", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4a3761d4c5", - "0x4554482f555344", - "0x0", - "0x1905ddbbc00", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x491cc0a5c0", - "0x4554482f555344", - "0x5a38848b84f0b8c000", - "0x0", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4c27441db1", - "0x4554482f555344", - "0x0", - "0x192327e7000", - "0x1", - "0x66375433", - "0x42494e414e4345", - "0x505241474d41", - "0x4920a07800", - "0x4554482f555344", - "0x8835e27f767580000", - "0x0", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xbdfe6b16", - "0x4554482f55534454", - "0xb53135d8071800", - "0x1905ddbbc00", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xbb2ae2f0", - "0x4554482f55534454", - "0xe7f7acb86659b400", - "0x0", - "0x1", - "0x66375434", - "0x42494e414e4345", - "0x505241474d41", - "0xc2f3e193", - "0x4554482f55534454", - "0x5cf5eea5ea5600", - "0x192327e7000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5da62e23000", - "0x4254432f555344", - "0x1bbfc449a2c900", - "0x1905ddbbc00", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5fb40144380", - "0x4254432f555344", - "0xf9a7cdcdc57f0", - "0x192327e7000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5d40ed44d00", - "0x4254432f555344", - "0x1ecb0482d8a70", - "0x18fcda9ac00", - "0x1", - "0x6637542f", - "0x4f4b58", - "0x505241474d41", - "0x624b5483e80", - "0x4254432f555344", - "0x2551b5df6baaf", - "0x19407212400", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5cdda5d9280", - "0x4254432f555344", - "0x53627aa7f6388", - "0x18f61842000", - "0x1", - "0x66375432", - "0x4f4b58", - "0x505241474d41", - "0x5cfb8fda600", - "0x4254432f555344", - "0x229b82532e8e0", - "0x18f8590a400", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xf01a80ce0", - "0x4254432f55534454", - "0xc994403025c", - "0x1905ddbbc00", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xf6bd60ea0", - "0x4254432f55534454", - "0xc43d72e7634", - "0x192327e7000", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xee869f400", - "0x4254432f55534454", - "0x24ba366fd00", - "0x18fcda9ac00", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xfe4c9311f", - "0x4254432f55534454", - "0x19767306a5a", - "0x19407212400", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xed95ea280", - "0x4254432f55534454", - "0x9606302693f", - "0x18f61842000", - "0x1", - "0x66375434", - "0x4f4b58", - "0x505241474d41", - "0xee03f7fc0", - "0x4254432f55534454", - "0x3492962b658", - "0x18f8590a400", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4a1a8c9240", - "0x4554482f555344", - "0x7151f7acb43e0", - "0x1905ddbbc00", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4ba82bf400", - "0x4554482f555344", - "0x3ebf71dc70fc0", - "0x192327e7000", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x494dbf5f40", - "0x4554482f555344", - "0x37cc35b8f1a1c", - "0x18f61842000", - "0x1", - "0x66375437", - "0x4f4b58", - "0x505241474d41", - "0x4955cb4f00", - "0x4554482f555344", - "0x1a907c34de3df", - "0x18f8590a400", - "0x1", - "0x66375439", - "0x4f4b58", - "0x505241474d41", - "0xbdae3270", - "0x4554482f55534454", - "0x8087c016a44", - "0x1905ddbbc00", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xc25ee940", - "0x4554482f55534454", - "0x2e8c052574f", - "0x192327e7000", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xbb722520", - "0x4554482f55534454", - "0x447e27f8720", - "0x18f61842000", - "0x1", - "0x66375438", - "0x4f4b58", - "0x505241474d41", - "0xbbb0b4c0", - "0x4554482f55534454", - "0x2b742abf39f", - "0x18f8590a400", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0x5ca68d01500", - "0x4254432f555344", - "0xa882c83eb74ed80000", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0xed198e380", - "0x4254432f55534454", - "0x12ec8c102e2cf0", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0x4920542cc0", - "0x4554482f555344", - "0x17a5c48ac1b602000", - "0x0", - "0x1", - "0x66375432", - "0x4259424954", - "0x505241474d41", - "0xbb28c010", - "0x4554482f55534454", - "0x42344be59e7d0", - "0x0" - ] - }, - { - "transaction_hash": "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b", - "type": "INVOKE", - "version": "0x1", - "nonce": "0x3a", - "max_fee": "0x1bad55a98e1c1", - "sender_address": "0x3543d2f0290e39a08cfdf2245f14aec7dca60672b7c7458375f3cb3834e1067", - "signature": [ - "0x1", - "0x7f1d7eb58b1467c75dad461953ba6d931c7b46b51ee2055996ebaa595583985", - "0x34fb6291f60e2a7ec088a92075bb977d89eb779e8f51fa638799d27a999d9fe" - ], - "calldata": [ - "0x1", - "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", - "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", - "0x6", - "0x5265706f73736573734275696c64696e67", - "0x4", - "0x5", - "0xa25", - "0x1", - "0xe52" - ] - } - ] - }, - "id": 1 -} \ No newline at end of file diff --git a/rpc/tests/block/sepoliaBlockTxs65083.json b/rpc/tests/block/sepoliaBlockTxs65083.json new file mode 100644 index 00000000..31a76468 --- /dev/null +++ b/rpc/tests/block/sepoliaBlockTxs65083.json @@ -0,0 +1,5108 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x549770b5b74df90276277ff7a11af881c998dffa452f4156f14446db6005174", + "parent_hash": "0x4de1acdff24acba2a537ef651ec8f790e5c0321f92f1115b272a6f2f2d637e8", + "block_number": 65083, + "new_root": "0x7df132d80333fd54a3a059e0cc6e851bda52cc72d0437a8f13a1b0809a17499", + "timestamp": 1715244926, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xf04d9d9bbe0", + "price_in_wei": "0x199bad1bb" + }, + "l1_data_gas_price": { + "price_in_fri": "0xb32d49ed2b", + "price_in_wei": "0x13181962" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + { + "transaction_hash": "0x2db07ed11b1f6c678de9fc19ef0dfb8e71631e1cff236a34e68f51528a21282", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0c", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x6b67b53231b0ad782b651cb529004258ac79f8bd069042127e0f58edd40fd89", + "0x36cc9eaeb31b0b3d990624cf105aa0cea86590452e188dadb75edc02ddeea51" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192603", + "0xd34ba8c515a574cd724301a5b50e997abcfd377f705e70a8330c706f3ccf34", + "0x663c8f59", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5444abc7", + "0x54497b21", + "0x54497b21", + "0x54497b21", + "0xb6d5fbd139a7d956f", + "0x1", + "0x2", + "0x723516b6471960da09efa937c31abd5c46590e7b9df4773a5a6111497541508", + "0x385effc19083082f432ed7ab855de96b575e14a21b0a6d7a4395ff4d99e30f6", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xb5eb2dec854e82a991956a933cd3b20b888bcb1737427e829efc5cd7e241e7", + "0xb71581436348419b44d939dc2af69a310c7a4b7d4f16b07f71d1957e9d5ceb", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x60", + "max_price_per_unit": "0x13ac02cbe617" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2ddcbfc269505fbe3647d621c75b3e8611640d24e111e655cc3dcdd685d4b6a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150bf", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x416a61e2383ceb2c49c18cc1e680a087d8671c27019a600d1e563883caed857", + "0x68f02691f2b930e05d303b6dd619447ac7d3b7a6399bf0895df31329122a034" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c8f78", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594674aabde", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f78", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458da32daa", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x59429b77c16", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b5b7", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5323ba9064e", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50ece4fbb1", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41e6", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8f79", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b932256", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4fd07", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4040", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76ef2b1", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f7a", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3964f30", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x68fb35d0f683860da2b48f2e717481e33caba55168638b05286072f9bcb4953", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x88", + "max_fee": "0x1a014ef2b5e2", + "sender_address": "0x1a819d1a8a6eba088350bb2536dbc3ada7df5040540b7a55aac9263d9acf90b", + "signature": [ + "0x1a550126630d19ae4478ccae5390f4f6d4e2d6fc315d29bb2a361e727b4d57b", + "0x701f64b1abf9961ed9e194359a3f4152cf572196e2232fa582aa74cbd636192" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x27a1dd8be8df5e0a21e0d382086255ea431d8916e7f95846f0ad76221196c13", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "transaction_hash": "0x5dad0f26e1f2bf58954d1cd609abc4ebb132b83053cd7e2d4034f2d031ed0e6", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0d", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x118ccc317cddaf28568a261f9eb3b7aa12be3d185124f8d4a15a4e387062fa7", + "0x3208e4bc2b6820cbe9b0af08ade8670997d4775040ad277ec25c2fc3db5a157" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191803", + "0x49afa6204a4016439f0d4376faef03630edd318d30aeb8ef654092c2dd85d8", + "0x663c8f41", + "0x104030200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201c8a020", + "0x201e20e02", + "0x201e20e02", + "0x201e9070c", + "0xb6dafc81d832211b6", + "0x1", + "0x2", + "0x1221ca04928e8a6359d8057470fcfff570cf6f68b2cf428b78d408724f3fd47", + "0x2a9a9dda4b724a128c6457bcc05a587934ab450f4ea9f16a00f6e94337d7304", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x1d10b5a2d653396e798e675c56cc32b254bd0c573f8bec59fc6987fac8fb7d", + "0x1ec99bc00cadc31c47e3626d0b141a4c5af78c4780b88a8cd75740f1757bc82", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x280cd6f93e9a774273a62b596ab7f14c8979af1bf682b9d3d6f34510d53ea7d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0e", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x7fa8d7e297b946f6712cc4ef7a5f84d34830abd771e63ac30780e9c4f367764", + "0x506e0fcb5b2f0814441bff6ae8b012fc2ecef8ac994fe0dfc8a9a47c53c571e" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x18ff04", + "0xb26c6010f6e3a5ee446292a17c877bd5cf5a562fd78b26ebfb692ad7a04f65", + "0x663c8f74", + "0x103040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x4564547500", + "0x4564a3cd80", + "0x456b1e9fa3", + "0x456b1e9fa3", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x30b50fb37bdf93deaee4999e66b1ba765aa97516bba8a74992e50d4c5b1abcd", + "0x2439ff7c23e1e8d32f8d239582aa9cfaa1573b126f6de9c93cdf39d6d5cb932", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x45586d7dfd19c00222753f41ec23acb30a43743ae2c9cb4d32b5591dcfcccec", + "0x309ead40956c7507ef48282c17d01fe5678913f31338a9ea369fe3ae6bb11db", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3953a293f25a9c1a7aaf17b2c42d6868623256dc32e9324a757e12c1b3e877e", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x1101f", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x17a06d112e6075e187dd2fb19a22fff6ac7ee5dae09644186eea34cd95724de", + "0x7c6a0bd95b17de56da253e3631e5009626f8590186efda10112246471a33244" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191705", + "0xd05051af50f6c0d03d9aa1740fc8063f26ca96710d1c5fb5a5459902e6aed1", + "0x663c8f59", + "0x402030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5beae", + "0x5f5c350", + "0x5f5c350", + "0x5f5e6c8", + "0xb6d96967d008444b9", + "0x1", + "0x2", + "0x75eba7a4e8f7804591e990b3966be05cb1fe1e42a8414062dfcced02519cf0a", + "0x351736b78e661b934c00254b424cbb2e002d77e99e80793326ee874d6b14ff7", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x5b0cf2a688cd4ba80ff98818a3e3a9ad8a927044c611bb34f4be175d9a8a49c", + "0xe015daa4d0b8b6e89ca7468d5d44b3fffd8be0e30bfb4042ce03dd18a4f667", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x7ad89de3a2f25d575583890494a40dbcef5f9faeeb4848ab4dd116cd14d46a5", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c0f", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x492cde0fb7b373e26eb0f7a74651fc21c8b09cd23889d49d00742dbcf298369", + "0x48d44522d49551b7249d9bd4b9038109e596eee6dd0b5480ef36ac2e2493557" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a02", + "0x81959c26e1fef5dc76eced99df8f7962f938faeec8f7291b753b7bb9e1614f", + "0x663c8f5f", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5928b8eb1c5", + "0x592b94e98e0", + "0x592d7be41ec", + "0x592d7be41ec", + "0xb6dc2644e5148388f", + "0x1", + "0x2", + "0x377d12cae77537e21ceee526ddb97fdb43b2d18dbf050cae32782a35628ad2c", + "0x3b52f198ff7ee4ff7504c37909d12b806c71ff0939f52f8b84d02c166da22d5", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x7e67c7bedd77f23a625e45481d960a8c72a1f7bd0ca4b593b1cd62a277fcfb8", + "0x7e52270ecf777c7fac70bab132778b10a93c3e4f01c619066a09f45c6f1534", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4a77a30e2f8e966701916198d487a419d9404b8ffefc1316503fd0b89d66e39", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11020", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0xa74760e4e264c08910452bb3e5630832e967ef09228072557bd1b12c45cb46", + "0x2ae855ea7eda053ca600396b3366ac34dc5f41bbb3ab6e326f777fd96b18d2f" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191804", + "0x3ca3982dd83b00d0718f5e5d6b8355ff13a0f60654b44bcb14151234b0d418", + "0x663c8f9b", + "0x403010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201b4ce31", + "0x201b4ce31", + "0x201bae480", + "0x201c8ea58", + "0xb6dc365a5dd0d97a2", + "0x1", + "0x2", + "0x4ef1b230cca03b6e0d6b6c50470c8e8a04a34bffd9374819d1264666fe6335a", + "0x124eb28f8f9b34fd57550e4c9ade6c0f68b5187ee86cfd9d4c5886a1c10cfb2", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x582e9704024ce75f3436bc033832744f869dc28591dcbd6ad1d368069fe656c", + "0x280443e120c74e92a7adc9f2cfe9302205ff41856336d2af1f0b0e0b7a3c884", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x717a96ee79c7580e7d8edb658a213caacf95009eb3db53b017d5f857ed8b8d3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d64", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x2ef4cb3a3483ea3c0525ba1d9f3887af0ead57d75fb099d719155ddb3f687fd", + "0x38f9b6669743bb77116de1032c280b8dbd58b4da963441d40faec1e337764f2" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x23f", + "0x52", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x59275c970e0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x456d5c29e0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xf4401", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x59369fcb320", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x5310f326fa0", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x2b9476b0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0x7710f50", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x592c34d7f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45610d3940", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8e48", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f60", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4198", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8e56", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf3f51", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5925803ad00", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56e42", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f5f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x50d15e4580", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f2b", + "0x444546494c4c414d41", + "0x505241474d41", + "0xc334a7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8f3a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f1b440", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2b922cc0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f4c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7735940", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f45", + "0x444546494c4c414d41", + "0x505241474d41", + "0x38b9ae0", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8f2c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x22d7b7440", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x457aae80c0", + "0x4554482f555344", + "0xcf10712c2b7460000", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x510bc7e280", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc51bf1", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5bbb9b0", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2bbb7156", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x76cdafe", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x23ac62a00", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4b55434f494e", + "0x505241474d41", + "0x59283869780", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4b55434f494e", + "0x505241474d41", + "0x456d083d80", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f86", + "0x4b55434f494e", + "0x505241474d41", + "0xf43e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c7ff0", + "0x4b55434f494e", + "0x505241474d41", + "0x5911b838180", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c7c32", + "0x4b55434f494e", + "0x505241474d41", + "0x5f21458", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8d00", + "0x4b55434f494e", + "0x505241474d41", + "0x538ab861a80", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8ec4", + "0x4b55434f494e", + "0x505241474d41", + "0x2b931720", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f2a", + "0x4b55434f494e", + "0x505241474d41", + "0x7713660", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8c6f", + "0x4b55434f494e", + "0x505241474d41", + "0x376b02f", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x5934e505c52", + "0x4254432f555344", + "0x630c107c79ebc49ea968d800", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0xf45a6", + "0x555344432f555344", + "0x212c817a4cb7d500", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x5eba7d0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x2ba08701", + "0x554e492f555344", + "0xcf1cd8fdc641f4413b00", + "0x0", + "0x663c8fa0", + "0x48554f4249", + "0x505241474d41", + "0x771228c", + "0x5354524b2f555344", + "0x297b7b364c7c9b394800", + "0x0", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x59360885891", + "0x4254432f555344", + "0x31ef01c906f8f000000000", + "0x0", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x457ab127b2", + "0x4554482f555344", + "0x217579adfee5c600000000", + "0x0", + "0x663c8f9a", + "0x4f4b58", + "0x505241474d41", + "0xf45d8", + "0x555344432f555344", + "0x3a6f057654b3000", + "0x0", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x2b998131", + "0x554e492f555344", + "0x1ea9da3bad2053000000", + "0x0", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x77197cc", + "0x5354524b2f555344", + "0x2c30ef09dabb3c000000", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x591e6c3fa00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f9d", + "0x4249545354414d50", + "0x505241474d41", + "0x4563f8e780", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x5ed8460", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f9f", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0xf4092", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f9d", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f9e", + "0x4249545354414d50", + "0x505241474d41", + "0x53129091f00", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8f9f", + "0x4249545354414d50", + "0x505241474d41", + "0x2b907f10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0xc59856", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0x7688d9c", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x535441524b4e4554", + "0x505241474d41", + "0x3624904", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5934d3d8f3d", + "0x4254432f555344", + "0xfb8fc8210c3360", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x45779eeb28", + "0x4554482f555344", + "0x76bb12469bccd8", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5f6719b", + "0x4441492f555344", + "0x20ac775f402a", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0xf460a", + "0x555344432f555344", + "0x5c0f33b8aace", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x592febae995", + "0x574254432f555344", + "0x36fc0fcd3f0", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x15a46d16", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x53295291040", + "0x4254432f455552", + "0x456ae923e818", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x2b9a3111", + "0x554e492f555344", + "0x19d3556457874", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x7720d0b", + "0x5354524b2f555344", + "0x19b6ae659167a", + "0x0", + "0x663c8fa0", + "0x4259424954", + "0x505241474d41", + "0x3997feb", + "0x5a454e442f555344", + "0x38fd335253d", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x59099a376ac", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x45566769d4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5c02f", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf4062", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x59099a376ac", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x50d35cc5c8", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x2367f7367", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fa0", + "0x494e444558434f4f50", + "0x505241474d41", + "0x23473bd54", + "0x4450492f555344", + "0x7a9f1ef53ab", + "0x0", + "0x663c8fa4", + "0x42494e414e4345", + "0x505241474d41", + "0x2352cc582", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x9c515210d7c959c4659563e4a41ea3470358a9a50e9e41ec5732a040c9e2ad", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d65", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x351976cf42ac9d6df12642299270e7e1063ec72377c93872817627e244d4bfa", + "0x1830dd6ca734d15df28e8f2924a0ef02237df6087d203b2e51bcf37f320a9a3" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x591e5bd78a6", + "0x4254432f555344", + "0x11c44c7f7f130f1a1600", + "0x0", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x5cc12986304", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x59165bcc287", + "0x4254432f555344", + "0x213007d7ddb52ba7000", + "0x0", + "0x1", + "0x663c8f9f", + "0x42494e414e4345", + "0x505241474d41", + "0x5a6ba568b64", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xe77a573b3", + "0x4254432f55534454", + "0x2437b09e8c8f1380", + "0x1905ddbbc00", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xe42520050", + "0x4254432f55534454", + "0x2dc90f3f7d181ccc00", + "0x0", + "0x1", + "0x663c8fa0", + "0x42494e414e4345", + "0x505241474d41", + "0xed73fb5db", + "0x4254432f55534454", + "0x2b5830eac39150c0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x455fccca00", + "0x4554482f555344", + "0x9b103f0cddd3c0000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x466d75eba7", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x48419565e7", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0x4567f73e40", + "0x4554482f555344", + "0x5dba2d144377ca8000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb8f9d061", + "0x4554482f55534454", + "0x794794727520c0", + "0x192327e7000", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb1adfe10", + "0x4554482f55534454", + "0xf340555b383ee000", + "0x0", + "0x1", + "0x663c8fa1", + "0x42494e414e4345", + "0x505241474d41", + "0xb44b6b51", + "0x4554482f55534454", + "0xd6ed8c1d5e3d00", + "0x1905ddbbc00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x59f5ab8cf00", + "0x4254432f555344", + "0xd5ffc7a8e0e70", + "0x1905ddbbc00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x5bc20a9f600", + "0x4254432f555344", + "0x14bfc01ca35f60", + "0x192327e7000", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x599f1828d00", + "0x4254432f555344", + "0x1075d6fff54e0", + "0x18fcda9ac00", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x5e3c58bf980", + "0x4254432f555344", + "0x2dc58b39da478", + "0x19407212400", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0x5937027fc00", + "0x4254432f555344", + "0x30478fe537180", + "0x18f61842000", + "0x1", + "0x663c8f9f", + "0x4f4b58", + "0x505241474d41", + "0x594d3fef480", + "0x4254432f555344", + "0x2012474bb9450", + "0x18f8590a400", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe6d2feec0", + "0x4254432f55534454", + "0x96a707f0ba0", + "0x1905ddbbc00", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xecc294980", + "0x4254432f55534454", + "0xc30f4e21d10", + "0x192327e7000", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe5a759f00", + "0x4254432f55534454", + "0x21f4da3ae7f", + "0x18fcda9ac00", + "0x1", + "0x663c8fa0", + "0x4f4b58", + "0x505241474d41", + "0xf4165cca0", + "0x4254432f55534454", + "0x28fe4aaae08", + "0x19407212400", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe47d0ac00", + "0x4254432f55534454", + "0x4debf489c00", + "0x18f61842000", + "0x1", + "0x663c8fa2", + "0x4f4b58", + "0x505241474d41", + "0xe4dfd7b80", + "0x4254432f55534454", + "0x34647f29be0", + "0x18f8590a400", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4629067600", + "0x4554482f555344", + "0x60f7cb984183f", + "0x1905ddbbc00", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x47ba48a100", + "0x4554482f555344", + "0x598d74f7b3350", + "0x192327e7000", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4577f09940", + "0x4554482f555344", + "0x1932574675a10", + "0x18f61842000", + "0x1", + "0x663c8fa4", + "0x4f4b58", + "0x505241474d41", + "0x4582d8f500", + "0x4554482f555344", + "0x1431a563862b0", + "0x18f8590a400", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb3d68360", + "0x4554482f55534454", + "0x9f274c20dd8", + "0x1905ddbbc00", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb8570270", + "0x4554482f55534454", + "0x2e842039f07", + "0x192327e7000", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb1da8c50", + "0x4554482f55534454", + "0x2ffc5af4fbf", + "0x18f61842000", + "0x1", + "0x663c8fa7", + "0x4f4b58", + "0x505241474d41", + "0xb1fb5ac0", + "0x4554482f55534454", + "0x2ff986ccb50", + "0x18f8590a400", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0x5912807da00", + "0x4254432f555344", + "0x9f0c200412f5480000", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0xe4257ea40", + "0x4254432f55534454", + "0x14569d0a5b7e50", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0x45622f2400", + "0x4554482f555344", + "0x1864c51c9c195c000", + "0x0", + "0x1", + "0x663c8f9f", + "0x4259424954", + "0x505241474d41", + "0xb1ad13b0", + "0x4554482f55534454", + "0x4db4b5c07051c", + "0x0" + ] + }, + { + "transaction_hash": "0x1c1d77d9ff6ae6b7a0e6bf52c29265392a3f95deb6ce06602b46ee09f7ba519", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11021", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x78f4e0e4477aa8e993730ab28abc58b8ea38df4c7c4d5fc276b9dc0f4276138", + "0x4e8858bfe8bf85f5bb08ff20dc9a8e9e042e63fdbe7b02afe9f6b12942d4c81" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192604", + "0x8d0e0193b197b11be3befb6419183ffffc127058feb8c0e26c220d916cdf8d", + "0x663c8fb3", + "0x204010300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x543d316d", + "0x543d4e17", + "0x54447917", + "0x54447917", + "0xb6e833cd130afbca9", + "0x1", + "0x2", + "0x430c974d6f9fc1360a10323d3b7951f793b0f59ec22a14b5b4e8aeb2e41c110", + "0x38cd86e1768b43dbac7889fb680257289cefe470dbbff8d5dcb5381558a1a19", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x8c5a65f8d8cec43ab08b3e486cc7b1454ba36a25d7329630967e05dbf078ea", + "0x20d5f790edb17fd5ac6d9a13c6dea43dd02722e1dd639ab7dde336fdfa2ba76", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x691bc5c777a9fa04b26d25733a10b57107a36955bececb986fa0651f366a251", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c10", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x43e9bf5c87c37b5d43c9322b7535de1448bd27d8a2cb518204a15d0c2f6c2d6", + "0x2c3f053ecffa700e404c3103be036e93a3948dcfb228a0dc03174fc82f56ce8" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f801", + "0x70d81fe5fa4256bb396a57b488d1b2cda9f414acfe64619f454d55d1cea51a", + "0x663c8f82", + "0x104020300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4e0c0", + "0x5f57ff9", + "0x5f57ff9", + "0x5f5a4a2", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x712fd106ef99d137ec8379ca20289fe78a8d51a38ab1ec0ccc4e63065f7d1f2", + "0x27705132d4ea145e00b5190c719ca8a376e8e1c19bb9aac6c423287674467fe", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x2ba4d78448208598e33e5a4edeae52603bd41faac6bc4daaeac2dffeb982db2", + "0x2e0c93f2c273f778d9bbf52552849a8478019feaaa15a5a273ed051c631a28a", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x11ea42dfff1086fd0b5de05f7d65b0cb875e8b01a78ac922c9bc55132f703c0", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c0", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x5785764004ae42fb34b11eabef2ff415a51b8d865a697fae248391901b19e5c", + "0x14300b13d92debb37fc6afce77e994347db481ed8d5e5dfb29eda6bc5477162" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x59442e9fcc9", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458da3f782", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fc6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594236bce71", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b58a", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x53234fce6c1", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f1177e60", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f2", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b935804", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fc7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f4fc3a", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4041", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f1225", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fc8", + "0x464f55524c454146", + "0x464f55524c454146", + "0x39617ff", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x3b593eb47d7dc1de0461bcb84c9564bd8dd91142f6f4c8760dbecfbfe252a89", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1065", + "max_fee": "0x1bddda0c34f", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x6ea6ab679905df268fb0267fe69404158cfec6966991b6c6fc08a890e841c9a", + "0x20cee180ef0a4bb4d79bdaa64b9a2cd425123c9ce9a10683578fc2a159addc6" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x5265636569766544656c6976657279", + "0x4", + "0x9", + "0x151dc", + "0x1", + "0x1dd" + ] + }, + { + "transaction_hash": "0x2b9b2cabc3734c1fd752fb3c4c69785653caf10824640a3cc887cc62be05fc7", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c11", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0xb30856fe0ae6895bd00fcbe9155334bab81f3621d237a6212fdbf995f3491a", + "0x41860da79b9dff4080b0e6cff67ef2cacefd9cddf62273cf15f69f318e67f51" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a03", + "0x83cfa7e35d2cccab1f223672ce59f5f106ef03fae515d02053d47524c514ae", + "0x663c8fb9", + "0x403010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x59255cae384", + "0x592a144ba40", + "0x592abcdb218", + "0x592abcdb218", + "0xb6dc234fa9b2f4612", + "0x1", + "0x2", + "0x30e504ad058e0aa04c241e15e5519787fc7e276c848c59915f619d4f7930781", + "0x249b8de7d6b14df63d686eabb90d372b9274c1aeef16668c54dbcfb3fa8faf4", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x795637e95524432c204022f348842f365410303ebe0613ed15fb4b506f6e1d0", + "0x374493d2d8cfc076e01e784b4b0f1b9ca18f486fc7743a93e688c7ad9c1f72c", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x77354e0e7eeae144341b6a72a2fe1e96f8304ae5d37d5cbcda325cab57ca176", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c12", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x56780cbaa5f6aeb9f245ed7f620edfdba494f603dd1f920946b8a41baf75070", + "0x4f3c81938252f805976d224aa630103da8288686a85907067128288388493a5" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f802", + "0x34f317ece123a18da3d130ab4bd97704b984a166c22956dbc7f8b921c8f115", + "0x663c8fdc", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4f7cc", + "0x5f52d87", + "0x5f56684", + "0x5f5aff2", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x494febfbd82731f626ccaeae54536b04ab48616c0f515436bd2e250134ae76d", + "0x465a40cf940fece559cb71c7d38b36f4aa4df309f23b602b3ec18492b0dd4b", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x3495286b85df7fc9930b187e5e43b41b17a7894c1c7300c2b861f10bc6f8cc9", + "0xf0e100d4bdc1f40bf6e48f229df2e440d5bc057453e0d63c8454498d390d1f", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x13183366dba4b9c2e50822eb69b7d73ddeb81791c1907c1a7423c076f9bfab3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d66", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x693764798141ead8cd09fd820f2dabcc706c6323ea66c0653da72e0aed95480", + "0x3bea4c4d8ee61efd1c7ce400069ff837655a9951f44866794d16124d5334b72" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x246", + "0x53", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x592ee7c7d20", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4576d64fa0", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x0", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xf4401", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x59377308580", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x5f592e0", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x5317382fa60", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x2b99cde0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x77295f0", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x592c34d7f00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8f5d", + "0x444546494c4c414d41", + "0x505241474d41", + "0x45610d3940", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8e48", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f5e100", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8f60", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf4198", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8e56", + "0x444546494c4c414d41", + "0x505241474d41", + "0xf3f51", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5925803ad00", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f56e42", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8f5f", + "0x444546494c4c414d41", + "0x505241474d41", + "0x50d15e4580", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8f2b", + "0x444546494c4c414d41", + "0x505241474d41", + "0xc334a7", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8f3a", + "0x444546494c4c414d41", + "0x505241474d41", + "0x5f1b440", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8f53", + "0x444546494c4c414d41", + "0x505241474d41", + "0x2b922cc0", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f4c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x7735940", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8f45", + "0x444546494c4c414d41", + "0x505241474d41", + "0x38b9ae0", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8f2c", + "0x444546494c4c414d41", + "0x505241474d41", + "0x22d7b7440", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x457aae80c0", + "0x4554482f555344", + "0xcf10712c2b7460000", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5967c33c1c0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5f5e100", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x510bc7e280", + "0x5753544554482f555344", + "0x1e3126912f2928000", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0xc51bf1", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x5bbb9b0", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x2bbb7156", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x76cdafe", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x4745434b4f5445524d494e414c", + "0x505241474d41", + "0x23ac62a00", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4b55434f494e", + "0x505241474d41", + "0x59316bfcd00", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4b55434f494e", + "0x505241474d41", + "0x4578987200", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4b55434f494e", + "0x505241474d41", + "0xf43e4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c7ff0", + "0x4b55434f494e", + "0x505241474d41", + "0x5911b838180", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c7c32", + "0x4b55434f494e", + "0x505241474d41", + "0x5f21458", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8d00", + "0x4b55434f494e", + "0x505241474d41", + "0x538ab861a80", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8ec4", + "0x4b55434f494e", + "0x505241474d41", + "0x2b931720", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8f2a", + "0x4b55434f494e", + "0x505241474d41", + "0x7713660", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8c6f", + "0x4b55434f494e", + "0x505241474d41", + "0x376b02f", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x593bffabe66", + "0x4254432f555344", + "0x62fc8e68977fba8e2a934000", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x457f505393", + "0x4554482f555344", + "0x2200a712b80a3157c818c00", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x5f81f84", + "0x4441492f555344", + "0x87bc925d28a3ed78800", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0xf45a6", + "0x555344432f555344", + "0x212c817a4cb7d500", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x2ba46b9d", + "0x554e492f555344", + "0xcf297e88dbe70f1e6900", + "0x0", + "0x663c8fdf", + "0x48554f4249", + "0x505241474d41", + "0x7720d0b", + "0x5354524b2f555344", + "0x298099cad4ba11a61e00", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x593c6827350", + "0x4254432f555344", + "0x31e9328a4227a800000000", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x45818cd429", + "0x4554482f555344", + "0x216ec2da9cde2400000000", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0xf45d8", + "0x555344432f555344", + "0x3a6de227fac3800", + "0x0", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x2b9f9c81", + "0x554e492f555344", + "0x1eaa700997bb99000000", + "0x0", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x7731ea0", + "0x5354524b2f555344", + "0x2c33acf7142dbc000000", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0x592cf394100", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x4572470380", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0x5ed8460", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdd", + "0x4249545354414d50", + "0x505241474d41", + "0xf4236", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c8fdc", + "0x4249545354414d50", + "0x505241474d41", + "0xf4092", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x5fa4dcf", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c8fdb", + "0x4249545354414d50", + "0x505241474d41", + "0x531ac2a7500", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c8fdd", + "0x4249545354414d50", + "0x505241474d41", + "0x2b907f10", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0xc51153", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0x769061e", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x535441524b4e4554", + "0x505241474d41", + "0x3624904", + "0x5a454e442f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x593bffabe66", + "0x4254432f555344", + "0xfb7c1472a8f470", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x457e89dbe7", + "0x4554482f555344", + "0x76a168c78dbfb4", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x5f6719b", + "0x4441492f555344", + "0x20a0dc0dca5e", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0xf460a", + "0x555344432f555344", + "0x5bccea21ac97", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x59371c46e27", + "0x574254432f555344", + "0x37007e8b0f5", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x5f57f58", + "0x574254432f425443", + "0x15a42627", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x532bcdb6ac0", + "0x4254432f455552", + "0x456cfb519e08", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x2b9e2938", + "0x554e492f555344", + "0x19d73005bd40c", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x77393df", + "0x5354524b2f555344", + "0x19aead03b51d6", + "0x0", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0x3997feb", + "0x5a454e442f555344", + "0x38b19aad2b9", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x590f74b729f", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x4560e0d8b4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x5f5c02f", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0xf4062", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c8fde", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x590f74b729f", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x50df927978", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c8fdf", + "0x50524f50454c4c4552", + "0x505241474d41", + "0x2367f7367", + "0x4450492f555344", + "0x0", + "0x0", + "0x663c8fe0", + "0x494e444558434f4f50", + "0x505241474d41", + "0x2347cda91", + "0x4450492f555344", + "0x7aa8cef263a", + "0x0", + "0x663c8fe1", + "0x42494e414e4345", + "0x505241474d41", + "0x2358d465f", + "0x4450492f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x439e956d7742d1d11f4415ff178816687a79ec90176f25ece3e85877cd4280a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x17d67", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x4c1d9da136846ab084ae18cf6ce7a652df7793b666a16ce46b1bf5850cc739d", + "signature": [ + "0x411a02f6267aaedeebe888a21a45414bbd9bcbe454db629d959b4e450305933", + "0x1c657bddc30c734f2093d759f4a9123cdf0672f2e08a1a19df7fca330ca6db6" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x131", + "0x26", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x59203603200", + "0x4254432f555344", + "0x2133b3710165f200000", + "0x0", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x5ccad2aedbf", + "0x4254432f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x59277a741e8", + "0x4254432f555344", + "0x11c61dedd98076102800", + "0x0", + "0x1", + "0x663c8fde", + "0x42494e414e4345", + "0x505241474d41", + "0x5a76149d40a", + "0x4254432f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xe792d1087", + "0x4254432f55534454", + "0x243b84fafc5d5580", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xed8a7a2b4", + "0x4254432f55534454", + "0x2b5c4c1fddbb0500", + "0x192327e7000", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0xe43a48e80", + "0x4254432f55534454", + "0x2dc9e7b80c08c8e000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4676e8f27c", + "0x4554482f555344", + "0x0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x456b10b340", + "0x4554482f555344", + "0x9b296d180dac38000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x4572470380", + "0x4554482f555344", + "0x5dc819df3f4f6b0000", + "0x0", + "0x1", + "0x663c8fdf", + "0x42494e414e4345", + "0x505241474d41", + "0x484a88403c", + "0x4554482f555344", + "0x0", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb90f7c95", + "0x4554482f55534454", + "0x7955ca21ee27c0", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb1c5f8e1", + "0x4554482f55534454", + "0xf32196086a769080", + "0x0", + "0x1", + "0x663c8fe0", + "0x42494e414e4345", + "0x505241474d41", + "0xb462747b", + "0x4554482f55534454", + "0xd7090215049f00", + "0x1905ddbbc00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5a027c30b00", + "0x4254432f555344", + "0xd6219cf0953f0", + "0x1905ddbbc00", + "0x1", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0x5bcc9585580", + "0x4254432f555344", + "0x14c16168bdf4a8", + "0x192327e7000", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x599027ece80", + "0x4254432f555344", + "0x1077e7dd4de98", + "0x18fcda9ac00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5e3ece2c680", + "0x4254432f555344", + "0x2dc6e12314f20", + "0x19407212400", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x5937027fc00", + "0x4254432f555344", + "0x30472244a3d80", + "0x18f61842000", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0x594d3fef480", + "0x4254432f555344", + "0x1ff10ee930210", + "0x18f8590a400", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xe6d2feec0", + "0x4254432f55534454", + "0x96a656aad78", + "0x1905ddbbc00", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xecc294980", + "0x4254432f55534454", + "0xc30da5dba7f", + "0x192327e7000", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xe5a759f00", + "0x4254432f55534454", + "0x21f4da3ae7f", + "0x18fcda9ac00", + "0x1", + "0x663c8fde", + "0x4f4b58", + "0x505241474d41", + "0xf4165cca0", + "0x4254432f55534454", + "0x28fe4aaae08", + "0x19407212400", + "0x1", + "0x663c8fdf", + "0x4f4b58", + "0x505241474d41", + "0xe46a28c40", + "0x4254432f55534454", + "0x4e54117dce0", + "0x18f61842000", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xe4dfd7b80", + "0x4254432f55534454", + "0x34647f29be0", + "0x18f8590a400", + "0x1", + "0x663c8fe2", + "0x4f4b58", + "0x505241474d41", + "0x4624f8dd00", + "0x4554482f555344", + "0x60e0a3eb3fb30", + "0x1905ddbbc00", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x47ba48a100", + "0x4554482f555344", + "0x5960fabeb7070", + "0x192327e7000", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x4577f09940", + "0x4554482f555344", + "0x18ea418c39fc8", + "0x18f61842000", + "0x1", + "0x663c8fe3", + "0x4f4b58", + "0x505241474d41", + "0x4582d8f500", + "0x4554482f555344", + "0x142de2052c7d0", + "0x18f8590a400", + "0x1", + "0x663c8fe2", + "0x4f4b58", + "0x505241474d41", + "0xb3d68360", + "0x4554482f55534454", + "0x9ec0ad66dc0", + "0x1905ddbbc00", + "0x1", + "0x663c8fe0", + "0x4f4b58", + "0x505241474d41", + "0xb8570270", + "0x4554482f55534454", + "0x2e7b99a462f", + "0x192327e7000", + "0x1", + "0x663c8fe4", + "0x4f4b58", + "0x505241474d41", + "0xb1da8c50", + "0x4554482f55534454", + "0x2f07b1ff2ac", + "0x18f61842000", + "0x1", + "0x663c8fe1", + "0x4f4b58", + "0x505241474d41", + "0xb1fb5ac0", + "0x4554482f55534454", + "0x2fe12a50c40", + "0x18f8590a400", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0x5924f12db80", + "0x4254432f555344", + "0x9f2d35031b98900000", + "0x0", + "0x1", + "0x663c8fdf", + "0x4259424954", + "0x505241474d41", + "0xe43139920", + "0x4254432f55534454", + "0x1459cfe52961ac", + "0x0", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0x456c512280", + "0x4554482f555344", + "0x1867e51e19d8a0000", + "0x0", + "0x1", + "0x663c8fde", + "0x4259424954", + "0x505241474d41", + "0xb1c556a0", + "0x4554482f55534454", + "0x4dbd8efc67fe8", + "0x0" + ] + }, + { + "transaction_hash": "0x63118b98e1fa1b8c0bbede61734dfa49c98603b3065d3f180eb9cdd9b6cf27b", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11022", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x6ccd95255b8356178221f93df498f44c47946de608b879ddc5b129e273565c2", + "0x66b89ebdaae3dade2aad10b1c482f5f97fa194a171c7479539423bc390f0e78" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193c05", + "0x5bb3fffe5dcfd736ed629a3c89d111d1f1be80d14dbef25206953813b009c5", + "0x663c8fab", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51906", + "0x5f519c8", + "0x5f519c8", + "0x5f52ed5", + "0xb6db316481464ff09", + "0x1", + "0x2", + "0x70a37726c3585606e61409213c33c528d7a374825ce3d8dd6db7811337e354c", + "0x2798d56596ae584d49ecc2575be8a3f7292a7381d293be8e5521b4862ac216b", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x5d2dfe0f1275f70c43f634b5aeb0bccdb27bcc2d765ae5e2957f2954ef739a", + "0x3e7ac02635c2b367e667a5d1d6f90ba757a097d52901fbba826ae4cb83fc4f8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4c903a64d7bf3ccc47bfa8461a950a5e1acde63bc7447caea079074708fbe05", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x87", + "max_fee": "0x1a014ef2b5e2", + "sender_address": "0x61fa009f87866652b6fcf4d8ea4b87a12f85e8cb682b912b0a79dafdbb7f362", + "signature": [ + "0x715195ad1af9bcc7efe975c80cc012ac1707bc826835ebabe504bba2194b4db", + "0x7813eed354d25ac3e039d9f1d84cc3ee406e862d3ede489fcbd357bf65088c5" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x17497dfa48bc9c22c84d40f3d72630b05e88d9fe8c6c715b29f3e7a78d79764", + "0x6f05b59d3b20000", + "0x0" + ] + }, + { + "transaction_hash": "0x40db9475799950f6b3b7587d97ad7c2518e57626bf7696fc3d66dfd008465a3", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11023", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x740773ff4f053ac98c617a976920790e9a5c6bf1b64a28ead091c188bcec574", + "0x7a319ebca96302b8ee221d1475ee92277723bdab3c94773b434dad9e7981866" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191805", + "0xb1685d4742758f234ec20100cde1b662b91a7c2dc19e93809edb1aea1899e7", + "0x663c8ff5", + "0x304010200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x201c4dc69", + "0x2022d84d8", + "0x2023396f0", + "0x20234f6e4", + "0xb6e4c254930a0e2d6", + "0x1", + "0x2", + "0x22e56cb4db120466a910e189be7c5d02e80c74f0c9d3786c0668d3d1452f135", + "0x35f624a874fbda36652a71d6f4f6e1860e7364c738ecd1da8c5a7e494b4d4d9", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xda185753b1c4743b0f16ccc2ed2d0bd9a256e26745f0d95c22a4ac47e7ccb9", + "0xf44b7b890637dd0655d9c8afad5081e763f1d184e627c21f406a282d9d840b", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3fa15235a0009c3af071a628c5b4bcfebb0c313b1753791b14d8c34b2b2fc7b", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1131", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x2dc660294a14d876fb7fde3ea1ac9214cdd179e07b4a11440b0a026c08493db", + "0x7eb0bb73d5b1ed368c4564acbad547a219fab9ccea3d7ce6641ac736433aed2" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x3a41f5419a2ee09f26831bdcece473aa128c95d1d6dd27c0d252eeae98e642c", + "0x40d176e1231ee58d8d48f00031aa54882c876eaa71b4d302c1922cf158fd978", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x23501a801f551cbf66d384addd5a84e80ade7eab9fa754e8a3962b7b9f1f50d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1132", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x510536b71bf5e43b7d8c59022f05f2955fe3d1b5347808b42db9bbbb889ba16", + "0x2c653cb2a7c88ee3e86ae4b74be62cfb26e53a2d1eac2a2e1e58ef2efeab80a" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x12d99b0b309cbdb9af5df96cd81c5d035033584230f0cee5ec5c69a380e1916", + "0x3007799279334ed917b85b7827744e24db0644bcb871f012be8058a6e372d9c", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x60d674b58a32094f12b60981ba5e749bc39de65930c8b385a538b41a0bc4713", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c13", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x347681e3087ea9284f12cf588d981f5cc2c311e67627f72e99369969f20e8cb", + "0x2b4abd48edeb3da7a122220dd71fd8f5aa5b2381b507561b263f844ecb2cfc7" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x18ff05", + "0x65e22cfe46aa52d25352934be40131059c6e5f573e05ab1dbf94091a097059", + "0x663c8fce", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x456f50de6d", + "0x457030f4c0", + "0x45713348d4", + "0x45713348d4", + "0xb6df36fb073549d39", + "0x1", + "0x2", + "0x12b7cca2922d8aa8d615fac98257c4dc148f66dc57e7787c8c8947e826e6d8", + "0x34a0e04841c10a194cf63ee4127461034e263aefa02b0b4fb30b22507d6ba15", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x4bf4f0f400833d9a3e39b842ed5fc660464a05f9d5e9c2ec661a3a048d2d908", + "0xbb9c3b6143246a7c19f7dd19fcc95ca024050d46a3cbbf6301b7e486923aba", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x4e2405b00b65c89a8610070aba205c62d15008a25eb333e091ea889d738a6de", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xaf9", + "max_fee": "0xde0b6b3a7640000", + "sender_address": "0x56a817d8cbc2834f7b00aa3a0bf6a16ae0d060445d65f31b4a2bf0140b14afd", + "signature": [ + "0x75c049ee58fdfa9ce72b464ff70fc248034b9c9d45ae929d52959c24559b7a8", + "0xaa2b51ba1826710aeb41e59ed4e556c0fcc27c5e8dcc125ef2b1da6672cc57" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x1234", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x71c4fd75be60d7cbe11ea53dd4eb986f472b2c71158cf0a46893650b84f48c7", + "type": "DECLARE", + "version": "0x2", + "nonce": "0x6f2", + "max_fee": "0xde0b6b3a7640000", + "class_hash": "0x7004683f0ff76767107f4fffa35384507e8e86644d46297bd4f1082a95f3f1a", + "sender_address": "0xaf46a3d75c1abc204cbe7e08f220680958bd8aca2c3cfc2ef34c686148ecf7", + "signature": [ + "0x6209802ee2e18b6fca530b278c7799b42422aca71964ca6c3bdd147625eb4ca", + "0x1d17add09124a88eb6c29a6c54ca7a69049eadaecd67e10f21bdfe4301f6129" + ], + "compiled_class_hash": "0x5047109bf7eb550c5e6b0c37714f6e0db4bb8b5b227869e0797ecfc39240aa7" + }, + { + "transaction_hash": "0x3c7817502dac2dc90198c6b64b85f3700507d74c75e08af85164e1b35e3a8b5", + "type": "DECLARE", + "version": "0x1", + "nonce": "0x713", + "max_fee": "0xde0b6b3a7640000", + "class_hash": "0x6c5a3f54e8bbfe07167c87f8ace70629573e05c385fe4bea69bc1d323acb8d3", + "sender_address": "0x2cc631ca0c544639f6e4403b8f3611696a3d831e8157ea1c946e35429c7ac31", + "signature": [ + "0x998b12c82d208af7c4b820626f2f7e015b8ee33ef5ae44e8a04f5254977865", + "0x55c341329a881afb29462ab32dcebb16d35c56021c3595bbba01b5c563f66fe" + ] + }, + { + "transaction_hash": "0x28b1b7d3d9cffd976b132f9bab0449d3504ea806e0e57cc232ae655d35bd744", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1133", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x448be464409ed22109fda440dabd68277df8d933cb94067486ce1aba6e493d3", + "0x79f0b5c11c02207cb4a1aefa015fc1868770bce365fb95032a69ef0534c06a5" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x16ad322870822200b6ad2bb0b0e337aa7ce9b24fc85d43da040ee2b4020def4", + "0x6ae545b3aa0ed55bff22bee5ee2eb9995d01167ae0fc43a02e62605c3a55663", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x454b02f55ca60c92915ac59d78ad99c6995a14362006579da48c9861f387731", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c1", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x554cede9332285e085719ed94724fb84ec97efd7eb2d90d3c570578a1d6a136", + "0x3ed04c35061c178badb0bf31159682c84749d982f178dbe6b18600e50999473" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594390b0893", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458d60a0da", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594128f7baa", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c9021", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cd7a6c33", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f0e87ecd", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f5", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b94db96", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c9022", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51d3e", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f7c0d", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c9023", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3954f3a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x51a67a0b88b1e1fa686ffc1e502639af10de12f5723ba1a845296a3193f7470", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11024", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4395bede33cd26b9c85677fe5e573d470c7931e89c72d6bc20e5f760576839b", + "0xdfcd08644eb43bb688433cf36490135a3a6bc63a9c673bd6e580c333ddbd6c" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193d01", + "0x2519343f761d8112af7c037a0a4bec1d2c60067f2c6a752250f15ff9add74d", + "0x663c9005", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51977", + "0x5f519c8", + "0x5f519c8", + "0x5f53879", + "0xb6e02de0204412666", + "0x1", + "0x2", + "0x2611a2f3066b59102f4e51551e276bd4c6db833ebad3cbd7dfca27c45b286af", + "0x2a5749410a00b2c244725626a1455971069531098fe7bb0245af44b257b2db9", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x5338cf45790c414b664a0300dca71dd6f2ee3866b50c0420964a6401ec935d0", + "0x201c295500a2d18ad8546694af6d0c63d2296c654bbca4a92bec2043aaf865a", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x70144fc22866ac5a2a6e277e611f1068c70a8bc8721768dc5416bcdfa9baa01", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x13ff", + "max_fee": "0x431868e791", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x7fa468e1a046e6d25996e38d76adc4e67e301de62ed748bc69376d6e84b7756", + "0x106d2436b49a0f7dfea02dcc40465a4f766d76ece8827c34f671555c9633699" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "0x71afd498d0000", + "0x0" + ] + }, + { + "transaction_hash": "0x8e244ceb4835fa67dde317b51fd68c6cd51141de6b7b151ce809e476432f4c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c14", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x6192acb3c40ab233d382a38dd28abff5392e67235af55bfe58d762e120b478d", + "0x6acfc537c5a83c6f06d6b1830c4df56c6ced1942ab3ec7ab5546fd018db9fc6" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x190001", + "0xce40a05ed4683a264d4240e3d303868b0a9efad915238a6b3935c400d7ffd9", + "0x663c9028", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x456fb06a09", + "0x456fb06a09", + "0x456fdbf6f0", + "0x45701e1351", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x46f8b36c853ecffccf5b035e732c98589bc95b524c57a91de4840c39ac45b4", + "0x1813157a419c3612e957dc02cb7e1ae456324fc62708a703262f7f160d7074b", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x774d31f5b91b0f0ba6c6901d3b0c29592eeebe534ea2e2d79cdcf223249af49", + "0x1d786a140c31b44dc0b4d91c1876042b2b43bdc6af5f528e7d0c28cd7e1aa99", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x6ee051c34338a1f5920ab3c36d807068ed423d3cc54702faf9eba497aacedd", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c15", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x58d3893380456ec0ea1114425904e485c53a70d300cd5c0eeafdaa468c2f670", + "0x65c9af3471bd5e1e34abe7f2fa7f33d1f0e1efe7d6f0d4545fe377871a08d0e" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192605", + "0x5e92ef0e88d315b1e696f3efcfb9f9521cf3c572a61391d38b7a60c8bbbca4", + "0x663c900d", + "0x402030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x544bfebf", + "0x547f3547", + "0x5488b63e", + "0x5488b63e", + "0xb6e2f0ac79cda2dca", + "0x1", + "0x2", + "0x33d789f46e3d35f0d61bbeae3bb95d8e36f7fdf0fde9a5b8867eeb3dae09401", + "0xaaa2796d95044a78a1802e98698e5cf823d037b901a9e3ed2092d0a896013e", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x73a799aaac8888cdb2809423cb4f8b529849af0780f8215d720cfde31cb92c5", + "0x34f8b52fa3f065e78b1de920f615f7db797faa08e22dba11d7d0dedf20ba6f8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x1d3a82107c61410a0fc412e80af0642ed32191b3a8f5e9e2e515493d3aa85c1", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1134", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x2038bc58e3594773b06fd14adbcaca16a6c850f4bc908c0f9c1e5120eeebd61", + "0x3c0b4201ba7683a2a5a1b3545d699b1a50635596a91323f50fb316a26455a10" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x2cbe2e8145b35db6fbb61a8697385f81f16b8fb294b2d88ec7400bfc7edcbda", + "0x1719619dff5115817d628923dbdfe2ce19908e727d1ad57e91192f47b762add", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0xd43179a581d35efeabcb0bd41015acb584364ae193b08b7cfaf92403ce694", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c2", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x1e409552dd66984becd12d413ff372ea8436d59b12caaa4041e8211e99b1f05", + "0x42fb801b31e79b0d4cd564d617cbb93d56026a5804fbbc427599d452f24ad23" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c902d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5943658689c", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c902d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458d5c9a88", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5941279baf0", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cf4a24e7", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f0e8bba8", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f6", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c902e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b950159", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51d37", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x76f8ff8", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c902f", + "0x464f55524c454146", + "0x464f55524c454146", + "0x39549d3", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x29684514fe4a2a0ee5cd6241f6b89f0d42211175709d013f834899cf54ff6ce", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11025", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4346c6c996c63396bad0f0c9718183a63297b81a23f469797d8072b50526f24", + "0x54c99c852d88b805403a3764c74be043f1df6a98c230d1026cf4dbf5ec23c88" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a04", + "0x9ba50ae2c364320e1db973dd08f94721d23dc9952c4c75101490d0f46dde18", + "0x663c9013", + "0x103020400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5928f11966d", + "0x592b73b9760", + "0x592d5cd77f0", + "0x592d5cd77f0", + "0xb6dc234fa9b2f4612", + "0x1", + "0x2", + "0xf0b7bdc3b4ebf1fc867c55609d48389ba6655de4be2fab2ef9142c7f0b684", + "0x213b0954b6b3509d88613740ef6b0ce6508c4316c3fd9dd1d0b010b5208b401", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x34d13af7e7390545443210b7492b096ffcd4d31734cf5bb31c47ac7c4083e2f", + "0x4d6bb61f21d7cccbfb4870e5b3463e86f824dc9e86006502d58f656bf33a15", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x3c9bbf4a91179428f5391c337b374ba64d95bc045de12a8ee13cec4d2d8099", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6a", + "max_fee": "0x431868e791", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0x7f5a9bec7570e6ee12483035ae0ada78eecee5a14a326bc5908d5a78ef1e30b", + "0x6d1a4b5f744a6059d56a4c25c0e673dcaffa67e3849daf9154509a8e4bd3667" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x4754b3d17b4e3bedaaabd4b737a4bcde16647802a61ae6d49f147a4aed0500a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9db", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x6c6dde0dee8be58299c3368d2ec74cc2a03aa1bfea8690024b6d3f8ea7ac93d", + "0x6a6038bdee0df4ec8664a3283ae6b6fc20eeddfb2010cf55c72d2c6bd54e425" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0xf077816ace13d5b37cae884155cfd6777f85353c0f9d8e68b93616e485e769", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1135", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x7e3416e679955359639a3acfb18f8725582531214d174692da982b38a5559bf", + "0x13fa6d957541ea579c5fcd0611101d0af6b6c227660ba22396d174a0345dd13" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x348f560344334951bcbccd27aff05a9f6bedeaefc36315fe20e842163adae3d", + "0x4d0c6c97869d1f0bee11f147af2d0a389e3e354103cabd50e7204bea6a71d60", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x64e123a00595b7e849a82bfc719c95fcf49611d82182786e7e4872e54bc5a7c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1066", + "max_fee": "0x3c96691d889", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x7024ab983ceb4af55a98463e7adfa7f708415448d24cb9f34b95643ca39cbe8", + "0x5e831dc821c3f93023ef54ed20f51a618c63bd76a3faa7f588fe8bcc72509f1" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x6", + "0x436f6e737472756374696f6e5374617274", + "0x4", + "0x5", + "0x25fa", + "0x1", + "0x1dd" + ] + }, + { + "transaction_hash": "0x6171d53d908efad9861c02e7ab0a0388f3d560adea53dad3e8ee42df8f21a96", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f7", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x8761eb114cb2a77db9a49e4fe65cd3393fbd20262ad4693365f763d2febe2f", + "0x66e94bba33f9a068e456590686723391440be6602ed1d5f379e73260d7d3509" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x265c9365597f98f5fcbb99ab468bc9d6ea2bb25c5ada088167a8ab9b4fdb20a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9dc", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x2885f3808aba108f817ff79676c122c5cf59b025118611506ba3ed6133908b2", + "0x6bf9754f09802d7ac9e5637f5b443a88be7a26f5ee940cb3d901e35b9579140" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7460bfcca5d11c3ded7463548f1c3b80ebcd4e8e20917413b99078972d35a28", + "0x71afd498d0000", + "0x0" + ] + }, + { + "transaction_hash": "0x47f549aea4ef454814fd127f27654c13de886b67c4b794f7916bd0d754b1e46", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x2edb7d6268e82937b02e32aa0c86b8e085d7869b39dfa5453a5221ed4cc26c1", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x2edb7d6268e82937b02e32aa0c86b8e085d7869b39dfa5453a5221ed4cc26c1", + "0x0" + ], + "signature": [ + "0x700f15f61e1012d174c3db3ab65d9179029a1aa9f772e128c272ee06dc2072d", + "0x3c4eb7e69ad6a7372250560a4e25493f470838533ff29b2167b23c8dfa3d7a" + ] + }, + { + "transaction_hash": "0x685566a806ea92570ca39f2bba5cebf9a820e24f8311d59900e511bcdad5764", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1136", + "max_fee": "0x491385e48a", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x46aae101077c12001070deec78dec5c6e71becad66a80f92462d87c9df9f5f2", + "0x405e20f73528bc8e7b8e941a2822fea680cd7b5bc4efa31bd11dd6533fbce26" + ], + "calldata": [ + "0x1", + "0x41a78e741e5af2fec34b695679bc6891742439f7afb8484ecd7766661ad02bf", + "0x1987cbd17808b9a23693d4de7e246a443cfe37e6e7fbaeabd7d7e6532b07c3d", + "0x4", + "0x2cbe2e8145b35db6fbb61a8697385f81f16b8fb294b2d88ec7400bfc7edcbda", + "0x3d02f9e8ae59852de8321201bf99086a286af6423d002c67bf806df9b1a08ad", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x5870bc49190555504c0369ce9300127a608a8ec3ce2ead1b6b0bb411ee97d2a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1400", + "max_fee": "0x516a7bf111", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x734515d3da632f69e2f9a1fcd864924778c1c95ff661b3ad7ea97a53122ff8b", + "0x638d3bbc36ebd50e050df59e882aae1888d207cc4f97117008b00be4b0b4253" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x59bacc61ba0b53d7c6d13811952522a96ba0ebb19f73a42eb3c756a9a533cba", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9dd", + "max_fee": "0x431868e791", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x5289b56898df47f794a418423f3929d1e66ee5a9f474397f2ca14e0febd45d4", + "0x4d8a3323c4d138e1e302939b053f178c1b4f85c683457d092672787e35c2caa" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x30a23234b63c563e33b202f6802181c3b8103c82052e957b48498972f918aae", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1137", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0xb628041d3a51d8ceb97cf2501be7bf54676422c95852f4eeed751aae04908a", + "0x33f686e1390982ac5c54bee2ee1e59f2e168236561b9e2384ab93eb3525d5d" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x3e2fdc4fded8e42d196fdcc4cfbd8cb5e9e588271ff0d3f039e40aef2c3b5e0", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x44bc657b3bbc09f44ef60aa96a387e2417b9adfaf4e0cecd4805eb12ccbbcb1", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x44bc657b3bbc09f44ef60aa96a387e2417b9adfaf4e0cecd4805eb12ccbbcb1", + "0x0" + ], + "signature": [ + "0x200ce1c6df3795e93d129e3d8d59c1c82b89ac62777f8f739ba104a5480eb69", + "0x1e0c7a364cb035317f1652fda46dc6034cfe01564ec161582ac27f962da9705" + ] + }, + { + "transaction_hash": "0x532c30764fe78b7a387e636431066bd21fd2c837768afcbb7dd9f13f7216b4d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x8162b7e8ec", + "sender_address": "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "signature": [ + "0x2c81a8c4b8d3fc36f69d3f718235898647d0c169ddafb4054111e1135034737", + "0x21ac200fd89a44f397357b41de030d62e2b6c648cb69b70198d71f70b7efcbc" + ], + "calldata": [ + "0x1", + "0x7d8b7316000f9b6a8bc6ebcd31209873a7996d2731c30c8d04beb3eb9117a0e", + "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", + "0x1", + "0x222c2f741930cdeadb1bf6585d68f47ab7c8066adf32bb3b8aace46bc14b32c" + ] + }, + { + "transaction_hash": "0x4dc7ed3c082d25dbb3d5351fd8f964a805acf75e99bc9e94d1c5717e19aea41", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x689", + "max_fee": "0x92fbb63b0b9", + "sender_address": "0x386b08cdb00692197f60f5bd31184d7f1f53da308c5f1d21de48cd7fac4055a", + "signature": [ + "0x6f6567d830c573742f37806058ea098431edaf205b98e91477d4a26100ca3df", + "0x26663cafa80f8c4719ed5f94f62c0ef6b5e806ac3db65022474077fbeeec405" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x11", + "0x50726f6365737350726f64756374735374617274", + "0xf", + "0x5", + "0x20b0", + "0x1", + "0x59", + "0x5b", + "0xff3b645a", + "0x0", + "0x5", + "0x247f", + "0x2", + "0x5", + "0x1e30", + "0x2", + "0x1", + "0x1003" + ] + }, + { + "transaction_hash": "0x11ac20bed9df3a53a08bdb23f03d21ca4b32ccd4620830c28775aa1c05b0c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x9de", + "max_fee": "0x516a7bf111", + "sender_address": "0x723b0bb9291fad40e3ad9d36a08e82d9aa1981b25f9d6751afed600cd0479d6", + "signature": [ + "0x2945438fc8d2aa5c68bace2b7bc8c1f58960429beefd68a6388e644cceb7d23", + "0x35c3a95f810372912ec6a8e0d73f3a0544e47a6926ddc133f3c60a41efcb65d" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x3bdba77237a5c22ab6f9e5ec20746798583c7701b75bb42287fcd4ada7ece91", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1d73", + "max_fee": "0xaa87bee538000", + "sender_address": "0x279fde026e3e6cceacb9c263fece0c8d66a8f59e8448f3da5a1968976841c62", + "signature": [ + "0x21e0bc5df953d31e21b79951a568e5c1ae9dae8f29a20298eaa3a85e7e12a3e", + "0x2774ffa85d7e373562bf3630b2180dc6cd006ecc93b3c1eb54bf6d6aba6036b" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x4e", + "0xb", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x456c512280", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x767e385", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x59047a634cd", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x50ea1ec5f5", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xc5cfa2", + "0x4c4f5244532f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x2fb10323", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xf3b2f", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x5e406b2", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0xf341d", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x4c7add8e1b", + "0x524554482f555344", + "0x0", + "0x0", + "0x663c9047", + "0x41564e55", + "0x41564e55", + "0x4817a", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x1eb4dc3bce5cc98391d4cfe8bca95aa609730bbbf6a422ee5b136c46ced647d", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11026", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0xac970b65e3c098a8c5652f1b1cea66b1458a711dfdc03a4075fa4f34cdb09a", + "0x421bf4cea9f5ca9b6abedc99d5ee2f01106080a3fe6ea050a2ea7171216337b" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191901", + "0x17c0a9489c5a15019f09a97fe921a1f4582446fcb12c185ae5afbe5a5303a6", + "0x663c9049", + "0x304020100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5c042", + "0x5f5daf4", + "0x5f5dcfe", + "0x5f5eb82", + "0xb6d96967d008444b9", + "0x1", + "0x2", + "0x4fe258bc38bd0a89f358810420730cf2ffdf89cd16639722e01a5f7902beb43", + "0x36e86e6cd4b243d10532c3c4d6711cde18e4d05ec4bcd86901430882275141f", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x4c22539575f880707f4a05cd9fb950de78c231d10c67dcff50e3303bb254771", + "0x39676beadc90cab733d6a2a30c1fd1af8b6a0e1cb781a12b8f59cf1d34e6cb8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x376cc7a859a71641813a455f06689b0c7389de8c78a9c3cbeae4fa967b1a4eb", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1138", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x745d135e14e374e09309d34eb1dcf428b887ba6209eaf47b7622718ca5ae3d5", + "0xfbf9b387cdd6866e99c125afb1ad02668812b15548f0fa133f03d8ea1b6936" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x29881088c9b9071a5c60ebc798dccb570c6190d2bdd498f1e4833778d244c86", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f8", + "max_fee": "0x516a7bf111", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x35e1213522b13458296dc9c2482fe11b225c988105dffeeb88b1fde74a2b6d4", + "0x350fded527445b5967b1bcf2aeb5850bbf5a47e26ef3f7bbcc28c71affb16a5" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x3a05b2a66d9de255eee0ad4e7be398f86d53a82114c0f8d0eab980d88f59650", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c16", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x3a435814045fd65b336790507d4f5d5a87c57331dbac72092b66336a9b9ca30", + "0x46672f3742231c553f9a4ac287e7e2b05d9d2e7e0297a0aa72dd250cb824411" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f803", + "0x7d64ced76d7ec11e149afb0360449b46e68333c50ee824b275088b12aec7e4", + "0x663c9036", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4d5d0", + "0x5f540ec", + "0x5f565b8", + "0x5f5ab2b", + "0xb6e3fc957c38d00cc", + "0x1", + "0x2", + "0x4da5bafd4f70ad1e9ec79df1262c4b2edc99a9e71124b6bf962ccf27f201a17", + "0x1d0f7bd5d3d63e5fcbcd16d219b76b60f5f235fe3864a5a2a54af989fb42d8", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x7ae19ee3927f6db2e188b14ec8714e50abfd3a02cbd526aa7020fc3b34740d3", + "0x3e261231117174590eae6bc9d3719fe6c1f51603cffd91a30a43350ade8d464", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x768addaff39179e9ab90dcd2c553a715bd1413694855075a893c95adbc26bb3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1067", + "max_fee": "0x3344c4a74ca", + "sender_address": "0xaa5c7c9554d61184c83cb8a35580d4cb4a0379cee16229af361695576a2dbe", + "signature": [ + "0x257f9d99e2ccb616ed52cfef7052a8c52d09c313cfa8dd3a17f336350106059", + "0x4a15c0171b677291c7522c1ac138de975af8dea5ca643de3612468530c9e639" + ], + "calldata": [ + "0x2", + "0x30058f19ed447208015f6430f0102e8ab82d6c291566d7e73fe8e613c3d2ed", + "0xa72371689866be053cc37a071de4216af73c9ffff96319b2576f7bf1e15290", + "0x4", + "0x5acb0547f4b06e5db4f73f5b6ea7425e9b59b6adc885ed8ecc4baeefae8b8d8", + "0x2a7dd90100", + "0x65888559ae70ba4fcda91d689ff92d57877d030115d0b4deefe2965728ca307", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0xa", + "0x4163636570745072657061696441677265656d656e74", + "0x8", + "0x4", + "0x18f54f00000001", + "0x1", + "0x1", + "0xba4", + "0x2819a0", + "0x1", + "0xba4" + ] + }, + { + "transaction_hash": "0x9b58f4070fdfcc7fc7ebec65439ecfe6e685b485a4d30ae8762cc8604877d2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1139", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x6672e17abf61835f003da5faaf50d4506b0cc8439e5dbdcae04291c02262697", + "0x413a62b97df0e157878d8aa145486605916396791c4b22923efe0e69bd7f749" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x20cbe051691c714b9bcc3f3a599bbd419b5b1c0b239544efddd99e94217317b", + "0x1", + "0xff" + ] + }, + { + "transaction_hash": "0x27086e19f056c5c747db2a506f7488515398e9f8a217822002010cb8d72d1ab", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c3", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x5c984ca7772a61c1aa7ebaa69b2287908dde5403d6c23aedc3aab74ce4b0cd3", + "0x67b4923976af7db56105d2ad5ff37a5bbedb67f5a1948573d3eca43bc448bec" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5942768d8b1", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x458cf157e4", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x594048b89db", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c907c", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531cfd0f771", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f1f3a43c", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41f4", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b9583e8", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c907d", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51b78", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4043", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x7701543", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c907e", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3953fe3", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x6bcce0337959bbdf561ead0be5208e0ceeb9a11d812c098214669de12719494", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6b", + "max_fee": "0x431868e791", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0xbd101f40ba59c99510f355818eea4c0f2b569c621c06506d5cfdd28434786b", + "0x7221b247d1345b8430625d74825731b36c140e5f6cc0a06a76a6fefc25cb4" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x36e72f0943543dc5150b9095dde64dc451fece86a6f6186af469938258cf9bf", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x595e57a9c3804851b13bcf0581aee58e689cb1282d38af9249d5aa488fbb8a2", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x70896f2056", + "contract_address_salt": "0x4259fba114978a4105cbfee9721eea65a208cf4aa50aff8d15e4e7e3a5b872", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x4259fba114978a4105cbfee9721eea65a208cf4aa50aff8d15e4e7e3a5b872", + "0x0" + ], + "signature": [ + "0xf819ae9ef9c1f6e37f7f9f29d222521ae2c57cd8341f6fcac40c0a4331ba08", + "0x734227adea827c4a3f9d0d88f6927ffb4a55274deb35fc7483b97b7a03283c6" + ] + }, + { + "transaction_hash": "0x6a73b609025b845b41b32877ffcdd9c84503fefde735e8fe44ed7d1490dccbd", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862f905a0e", + "sender_address": "0x28950b6d6872606038c06d36def1dc6d15180762e190d6f0ff1f63da1364e07", + "signature": [ + "0x7c7951f78f03c0dd03521cb04e0d9008f7e1db208608dedf19a059e379200d2", + "0x6dc200dbf99d78d1f87015453d1c5f4a09748fe1ce712e79ce2cc830347546d" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "0x1ff973cafa8000", + "0x0" + ] + }, + { + "transaction_hash": "0x2e99ccd7c97be4afac75eebf72d65cac1bd6d16f5df44a713acaf6202b1424a", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11027", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x198443b0972edd66492d80514969874895bc33f7cfe6cc52f50542aa3b2139f", + "0x40ad729f5d30d1b1ccdbbe433e948395ee284e30c9b7449989138613dbd8979" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192701", + "0x2f57bd84043788f1ef906d270f553eaccde4287b2962537d01861e0a92452a", + "0x663c9067", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5488123c", + "0x54889524", + "0x549728ad", + "0x549728ad", + "0xb6e2f0ac79cda2dca", + "0x1", + "0x2", + "0x7ad6fd3c60e5dc301cd525d9ee5578cca28820f62fae2a4ae164d412e8aee1c", + "0x113a2beb25d27e6ce20beba6ba2bf40e7a4111727576c1417ec94bf86192d1f", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x425042ab3f99bfadda34c7e850c0d5f4cfafd96522ba09928cf23dde8f9c6e4", + "0x3d1cb83f7498c28d327f0a308154f1090b63d762542a63ec18ae0b9035723a8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x6637a6cabdaf6822d4f984cbf2c2716177e6698c2cb5b368cfdd4d2b102857", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x7089fb0e6a", + "contract_address_salt": "0x6535e40dd8015aaceaf0b39c808741ce885da9e7fb30daeeba3ec831683ef20", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6535e40dd8015aaceaf0b39c808741ce885da9e7fb30daeeba3ec831683ef20", + "0x0" + ], + "signature": [ + "0x20bbd0123e5b9c418896b364c620be045dfba45abaada6f2b8012bd0c267d0e", + "0x6005a4f10093dad066bf653bc026e41e6bbd110551c834b4ed925d42b7dbf9" + ] + }, + { + "transaction_hash": "0x1438c7206688aa9b096537114aefe361a1ea5fd2fed89b5c105dae8de6f6039", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113a", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x282e38ca937b8d96136759c67fa3573101ebb1adf8436aa90b16a7f2aeb506e", + "0x1a6771f69ae39604c91d32e742ba8fdb7f46ae9afd20a6ad4a958eb9aa6f912" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x1" + ] + }, + { + "transaction_hash": "0x2b70812630a11cc1c62ee9cfbf4cb025552a02d076815cc636a0514db3878f3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862fde1ac8", + "sender_address": "0x759778fff5e38e78abdae4674a359a7140ebd245166da59dc3ac729784250e2", + "signature": [ + "0x274ddca49759b790637d9c81bc5d9efc800af94b124df0e054bd48dd41a3f0d", + "0x10403d26c6d997f1f19be2c9749c02646f08a600850d8337cfec6aedf01a56d" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "0x2385e30a269e11", + "0x0" + ] + }, + { + "transaction_hash": "0x5f3928bf16cb1ec0134d8ee232e44035e4f1bdecdf883553a072ad50ec9074", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c17", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x35723bc5e016098355af7f96e5631d1fc3080377135ed0f0c1385994f2018fe", + "0x1dd06270c0271c4f7e2daafe33cf2461877308f973f45147a7d7c2710af2609" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191901", + "0x526d47ce3564bf7219599f06ec6ba4c3f8886c2e9a313975106509e99496b7", + "0x663c904f", + "0x302040100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x20205e8e0", + "0x20212acc4", + "0x202193120", + "0x202193120", + "0xb6dc365a5dd0d97a2", + "0x1", + "0x2", + "0x59b39ae7a6d761d7b16fd9ea67dae7d9c82329a24b56ce9f297db62eaba31e0", + "0x3fe263ebe91c5a8e6ba1cda482bf1fbee6bd8244eafd75791f0a1eed9371578", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x5446a7d0d41e0b9a016f082fc0b5504240d82a4eb3cc55c6c145e824f72c22f", + "0x9c7a5618cd62bef88154de4ea9008ae3f8667452ae240c2c92965b933e4c79", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x1da0485b4749456d985a96e2a7b22869200aab5403a1c368321b6f1211c4007", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x7089b458d2", + "contract_address_salt": "0x6b5ea50a65d300099ef3ed48ff81b9593357f721967974fb547bbee1f308d73", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6b5ea50a65d300099ef3ed48ff81b9593357f721967974fb547bbee1f308d73", + "0x0" + ], + "signature": [ + "0x3ecaea4af1ec86e3bb12265c20e8bb58b88e90e12ffa3daa20179690b60b0e", + "0x13c922bb9dcd08f5db014bf48d31b478f4648e30352aa0e8d56996c2d305b87" + ] + }, + { + "transaction_hash": "0xb250945441e4ebed09c383dd60b6542f3e707c81c949578d889e10fcf6667f", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x862f1e96f6", + "sender_address": "0x7d8423b1fdd6035ef998d6160887a17938b066ae831ce6c86e84ef1c48305a", + "signature": [ + "0x3ef1a720da66be9812a2a9186cd75e45971dda1f7f04d0d2ba8d51b8f971e62", + "0x5cb428cef5a1990946b5dcbebac26f1200e9fff59fabdc599795d3bab193d19" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x1609fe6b78cd9d0d9f7afb8e500ee0b774653b2ed7b2267340f892f958d8dbd", + "0x2385e30af0a823", + "0x0" + ] + }, + { + "transaction_hash": "0x5a6b257fee658ded7b01f149f037bae0d4d84fc2920c1a3ef976c7d1c72f1d2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x68a", + "max_fee": "0x95af2607fec", + "sender_address": "0x386b08cdb00692197f60f5bd31184d7f1f53da308c5f1d21de48cd7fac4055a", + "signature": [ + "0x1f1f64ea125fa42521a5014a29b6241491f16955f8fcab540b2aec19c55ea0c", + "0x1b7b4c1c01745031e47d56eed0d5e1df59836ad90abe1f73b4329837389019d" + ], + "calldata": [ + "0x1", + "0x517567ac7026ce129c950e6e113e437aa3c83716cd61481c6bb8c5057e6923e", + "0xcaffbd1bd76bd7f24a3fa1d69d1b2588a86d1f9d2359b13f6a84b7e1cbd126", + "0x11", + "0x50726f6365737350726f64756374735374617274", + "0xf", + "0x5", + "0x25c8", + "0x1", + "0xb0", + "0x40", + "0x548f5c28f", + "0x0", + "0x5", + "0x247f", + "0x2", + "0x5", + "0x1e30", + "0x2", + "0x1", + "0xfe7" + ] + }, + { + "transaction_hash": "0x1d6f46dd98578817f87df795ce0a2622feacc0bbc604fac8ca4b95a0018c927", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113b", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x3169ff1eabc3d6fc3e934cee3a9962a11d940188c6c4a1e080d4569743c46e7", + "0x36c2862cf6e65b2a9c7da1c323d6d78c9c758c412d87f20c3e793e4ea51ba9c" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x0" + ] + }, + { + "transaction_hash": "0x1af9156d0c94088d63e55d8e6d0ba511955c72630116fd935dd52a3bcf8cfc7", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11028", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x251516d2136511c78cd03653be698943fec26d2779d29cda59869628f9ba0d3", + "0x50f76e65750fc2b6436ebdfcad3f441e178323cdbe09a001af9ce93661012ec" + ], + "calldata": [ + "0x1", + "0x224d3c33d3dd10789e7d1075f12c4e279e2c6e81baa6c74801b5e6262f70c83", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x40fe731a9782af40749728ac28aae03aab3146a5cccc9ff52764e84fa2955", + "0x193d02", + "0x5f94e12173b304f3b0563f562c4447c73e84f854fa803a58bcfcc5e4cc1e38", + "0x663c905f", + "0x204030100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f51843", + "0x5f519c8", + "0x5f519c8", + "0x5f52775", + "0xb6e02de0204412666", + "0x1", + "0x2", + "0x538ba409f053a576b6591244d8ffe8e86720bb84ab954ea17df315e44f62980", + "0xbac676ea28c38fce7e29192e4567da57a62a5cd57e1ede2a50006181f8ead6", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0xa1f8d929561ade664957b7585b00ce93651b5afc616e336f50211567398413", + "0x229c3d2756b6f2bad270d7b00196f3cd86d271d315f09d77750bd199ecb9be3", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x5587fe95b898809fa3c4f300d2d80cf4a56f190dc1a054e683fa28949d37e9d", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18f9", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x13a0b29d2bce95e3939c78ea76a0790bcb258924d030dc8baad0fbfe3b821ae", + "0x1502ef2d94704ed248c26f7155a51a7e1b13e1c383e97e92454b130bf628ede" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x28f4c3f9b516cede942c7b58845dc6bf4a26171af49a5f2cf56dc56faeddb88", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x5251568e4c4dc5e925950d7d90c096f1573e160fd7a6959879baeb024a3df2c", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c18", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x7ba4cd6504d0356dd3076461947e41e6805e9c92f5f822c7ac2391317ecfa1c", + "0x48f9abf4f98ad15ff40ea45cff5433078e1bba1b53823fe72e53d6189cad6d" + ], + "calldata": [ + "0x1", + "0x1730b20846e904de106ec706a41d7153c8fce8f670006e239989f76539659af", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4128bc4d1ff1a2c4b3eac393be3c77fb1fe39b69e026e425c1cda857ef9b2", + "0x191902", + "0xf4adcc2cda12ebcd70e78dbd1238f773405db4fcf22a1aff38eb9a42d8a16a", + "0x663c90a3", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f5bfcc", + "0x5f5d30b", + "0x5f5d47e", + "0x5f5dcfe", + "0xb68a2b4012c1801bd", + "0x1", + "0x2", + "0x1b268f4cf131932c007e8ddb676a5a4d048dd13b85d99b16f43ce711b3dd50c", + "0x415b88b3dd25e9e3a8b5ccc326f4b9f16432c85c214c79ba2a35e2b3c43fde", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x79cb73aa7e642bce0193698ffaae018fe8d6d3e5b9fe285dd9e16c6165860bc", + "0x3c2c98a15f40b0451be66c99c09d7a99ca61bd3315ab840b5256e172b5035b8", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x69e5d729b357ca9f883d621ffeee7494fdd0321c89edcf6ecc41323eea7c2e3", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113c", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x4c4342205b11192e1e74ab7ca5f8256ecc57adcbe109aab019c5f060b2eb6ec", + "0x558c7b9cd8cecc855e00753edf46249c94fc71ebb9a44381719ec07d3af6e8b" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x39cc14c53224e0c3959f62b52de46909ab05c7b8196add5e69255fd8cdcdd96", + "0x1", + "0x1" + ] + }, + { + "transaction_hash": "0x647eeea01568af856779428fd67aee15b9103770a51b3d9184988c3772dca10", + "type": "DEPLOY_ACCOUNT", + "version": "0x1", + "nonce": "0x0", + "max_fee": "0x3ac37ca280", + "contract_address_salt": "0x6ee0abca4092c6628a330118ce58e1708f74f7d98551173f1421c0b62e7f811", + "class_hash": "0x29927c8af6bccf3f6fda035981e765a7bdbf18a2dc0d630494f8758aa908e2b", + "constructor_calldata": [ + "0x6ee0abca4092c6628a330118ce58e1708f74f7d98551173f1421c0b62e7f811", + "0x0" + ], + "signature": [ + "0x3a2c79468399c8525d029cc18bd0a915c050fb91c9e170844716d8bd20b993", + "0x3313af7fb7f65951e4fcae5567532be01df0966d3bf3205f9fb79e4a002f48c" + ] + }, + { + "transaction_hash": "0x8eb91683e4cc8f43842bda57255b6d5948771bccbe7242e2e001a1b08f6095", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1401", + "max_fee": "0x431868e791", + "sender_address": "0x4337e199aa6a8959aeb2a6afcd2f82609211104191a041e7b9ba2f4039768f0", + "signature": [ + "0x2af685b94001ccb1b85f9e167c3c0f5da6728d3b14c4594133bbd8f1a7057a5", + "0x361dcddc5726f8bd7051fe3e6dc3de11804db77797c6a5870aff7f071948205" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4297ef9d32c91cfeb7c7a5d992f6857b8d84957acbe00aefb27e6b8ed34ebff", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x5aec664a35cfa112a9a7ad2569b354506282df6641ce5010c5d71decb8cd4c1", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c19", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x3aafa3a2ef3682eadbb44ff1cdac5b14c8c3bb167fc8079c2849a66d3ccdae2", + "0x3950c86c23b82fa12250019ade676168bb8bb545b651162f463b327bbb883f4" + ], + "calldata": [ + "0x1", + "0x12b0847cf221531f729090c10161692401c94994a033467c496db63a3d5facb", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x44b4d39504a21b1495d082177bb8455dd2116642deabdc35353b5785642dd", + "0x18f804", + "0x7176b743fed02c98c80f9f9c8d58b2336053b0b74b4f984302ffa78e095648", + "0x663c9090", + "0x102040300000000000000000000000000000000000000000000000000000000", + "0x4", + "0x5f4d508", + "0x5f538c2", + "0x5f58d16", + "0x5f5bcc8", + "0xb6606cb206bf4a407", + "0x1", + "0x2", + "0x5232d4ac07f303851a09f6163f57e5cc6140a06c6e7b4c61a2fd86ee04bc7ed", + "0x2ee5614becd19903c8712751d3a02bdb0968b1beea1d0490571903b2b6b06ed", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x4ce3237e941d7a0ac45892777fc0a0115c00a2ddac62b6febbfe844b168647a", + "0x36ec18f6c6e69476678341343e2865d5f482d21270e603140cd79fa024dcebd", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2411dddbe7d17c6e57f9ae5ece5f2bb65078977213edb7c5e4a6cc6f6f74c9c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113d", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x14a03fa7b4ca29a27cf2f83566adaa85383a7dbcf3315d579f391673ee949d5", + "0x5f46f6dde230af658270e96139caa3bd64ddaad228ec313c160876a2c3d40a0" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x2e7cee56dde1a85a9f26d9d3d7b4204fa30dcfa87f7cfa41de45d553bc9bd73", + "0x1", + "0x7b" + ] + }, + { + "transaction_hash": "0x4cf50020576c6800247e73b4ce4de5f0334f4f7502448e3b54261fa409c21f2", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18fa", + "max_fee": "0x431868e791", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x65c4bd9197da2b3d4af73801dcfdf451be34d1d539dc6c7cf939e409d27744b", + "0x2599846f8eb4d4d02a1bb9f3b1eaa47db849e74557d3d756d474419e0f23321" + ], + "calldata": [ + "0x1", + "0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x566ad22f0f913dfe7dfd44b62c917bdd931bb6b0770ae25b89f0f262acbfe3b", + "0x2386f26fc10000", + "0x0" + ] + }, + { + "transaction_hash": "0x2316ed749eaeb1c3e5cbb8416fc72e739ec5a373e2035cea82b1f4042295ed6", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c1a", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x90a3382857cb2410b9dd7099b0fe4e767ef520367e19bba9804036a5371307", + "0x70e60790dc7292b78ccfc6268c2dc025149d8c6e9b080bec8aafe04f6341644" + ], + "calldata": [ + "0x1", + "0x53d5cb0de4f03f9ac31f83621cef64b9372bf1f690fdfa2ba8a07c316e67817", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4c7fb0cc02a3432253dcc76f8ab04ed11bc804ca36312d9fbd0777541f266", + "0x192702", + "0x351cd516338d130af3de970371fbfd9b3aea9a27fb0b3442425b4aa8e479d2", + "0x663c90c1", + "0x201030400000000000000000000000000000000000000000000000000000000", + "0x4", + "0x54818db5", + "0x5485ae18", + "0x548e9f28", + "0x5499d27e", + "0xb66c74a824ae93f99", + "0x1", + "0x2", + "0x6ac4c5b3544f62b773a44a7ade09fa48d37bcea95709a50a877fcf56014b55a", + "0x3f0a058272e100f36c0f241879a08728efa00fb68d02db4a42de01a798b4be5", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x58116de08551bcab31a7707db6e182358457012d314bbbeef2f70a5fe158c42", + "0x3313b354d548a3d0fdd244c531f95d84a77dd969d84f49fba83b79b761018b9", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x341605ba433f1a8ea7b6034656f22b1be2d239c669b9f13936819124b68268c", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113e", + "max_fee": "0x40a71181ef", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x1c2e2a58f367a54828b4f182e54abae1408e3b7cc83b82c7acf775d91cc88c9", + "0x1579475252c81e5942674681cf4b66eb63ac04a2d1421ec1493de848101ea31" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x362398bec32bc0ebb411203221a35a0301193a96f317ebe5e40be9f60d15320", + "0x1", + "0x64" + ] + }, + { + "transaction_hash": "0x5dc9c4c8d23d3962eaa7c45c5a0ed4156a912ddb4ce39560bab73fcda2e9bfb", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x12c1b", + "sender_address": "0x573ea9a8602e03417a4a31d55d115748f37a08bbb23adf6347cb699743a998d", + "signature": [ + "0x777927ea6ec08ab89c7f724595cb87eb80f402dd7015615b3cfe9a8586e52b0", + "0x1415e4848f61ce256d43d2572fcf79bebdb664e92e8c8ba9513931aeb3cbfa7" + ], + "calldata": [ + "0x1", + "0x424ce41bea300e095e763d9fb4316af76c9da9c0fa926009f25b42b6f4ad04a", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x441b0ab7fcd3923bd830e146e99ed90c4aebd19951eb6ed7b3713241aa8af", + "0x191902", + "0x1363e2e851f71a1dde904b7bd6d77ee09ab9a59729b6fd9a8339d1e75f6c12", + "0x663c90a9", + "0x302040100000000000000000000000000000000000000000000000000000000", + "0x4", + "0x20210f0aa", + "0x20219f790", + "0x20220fb7a", + "0x202340c20", + "0xb66b3ef8c4fbc61ef", + "0x1", + "0x2", + "0x2b460aa7f29195372bd1251e5abbd0e62af696cfab919d605c028a0665bdab0", + "0x1a168f7b59ed303767af4bff35b0b202bf35599eff4cff4e92862c0c8545ca4", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x2edcc1cd4289556d11ba488a420d4ed5ee8dcbdd1feb98102eaf09399af79a7", + "0x37a1991966be0119fbffec43fe0a92c2407c2b4dabad264126192896e6182f4", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x2fc697ed6ac8251ce5662d9eeac045b296233895dbd19a19d2154a56d80b406", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x11029", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x4102c8917263d790ef7162daa01f0f30dbd05905927c911544bacab8a842263", + "0x54859b0b8ba1c61ec0479e20542a91a5f5c253458479b207cd246422f254a77" + ], + "calldata": [ + "0x1", + "0x79c0bc2a03570241c27235a2dca7696a658cbdaae0bad5762e30204b2791aba", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x4dde495a4a4736dcb99c96c0b31aee80ebf4d130d2fcc1af087d0b4ee1da8", + "0x193a05", + "0x64326667f2efdaeefec6420702463dc2fd728b01ff60154705b2ba67b2ada2", + "0x663c906d", + "0x103040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x592adde9c03", + "0x592ce9a9000", + "0x592dbbe0ff9", + "0x592dbbe0ff9", + "0xb6d731dcba4af4767", + "0x1", + "0x2", + "0x3bf4ec0be331d4f21e3c956d33b2971f5dbcfb8650ccb5938ae613d61a64612", + "0x62ebd92662680e77b3d03bd532655e55a18c5c6db3576c437cbd61251f0b4d", + "0x2e7dc996ebf724c1cf18d668fc3455df4245749ebc0724101cbc6c9cb13c962", + "0x3e69e193a5251516d2ea79b190bfcb68f9cfe3a4f931ab27ce7349462365db9", + "0x2b4737ab76f5a34bae46b291fae24c239a604a3b64b2541ae508218051fa675", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + }, + { + "transaction_hash": "0x9a21aecfa0bc6cdecae0e84b4f48c036d9523be4a544b0f726b31f8b3ac56a", + "type": "INVOKE", + "version": "0x1", + "nonce": "0xf6c", + "max_fee": "0x516a7bf111", + "sender_address": "0x4dafa0cc30eb25dd697be6b711d55eb3f7632e281ab47d451351cf5e24d5df0", + "signature": [ + "0x4989879efb914f7c37924b8f85623bca44295e3e0c99c85cc976bb31373790e", + "0x4aee85e3ca5a32f4e488e9f017e88d816167b3784f32617272d7c47b312a453" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x566ad22f0f913dfe7dfd44b62c917bdd931bb6b0770ae25b89f0f262acbfe3b", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x4471aefcf6e908d53109ae93a1b57c54b773b7da79c14c88da1364b437a32", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x1", + "max_fee": "0x81622454a8", + "sender_address": "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "signature": [ + "0x4ba9219c6f5937b01259b1481046fba6f23713e7ee793571cf5ac80c07c0f00", + "0x59ac3d720b475ccc158d6325b197d44dc8a82f80e74cb31fa4094dac0382a2" + ], + "calldata": [ + "0x1", + "0x410d0d31e1d66a08470e3292eb3b787dbefc692f95baff893e7ef18c4e6b2f3", + "0x309e00d93c6f8c0c2fcc1c8a01976f72e03b95841c3e3a1f7614048d5a77ead", + "0x1", + "0x4ecd26a0aaba3b8215a99921ea5225c2c33d8fec9b5ac32021af233071d2f42" + ] + }, + { + "transaction_hash": "0x37284dae0ce9325aa27a210166da65ed7c72ebb0711c55b571dcbd62629b9d4", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x113f", + "max_fee": "0x3254fe786f", + "sender_address": "0xf9e998b2853e6d01f3ae3c598c754c1b9a7bd398fec7657de022f3b778679", + "signature": [ + "0x24df1ac354e1eb630607b54675195dcb8a5d41c785a23e650c4f950e59dc32f", + "0x1be5762aa48dbd09cf6ca7c587a3b16c72df50963f68692a24de8179c08f99a" + ], + "calldata": [ + "0x1", + "0x67441f27183592a4cfad4cc2faf6110b02c7110a038640c3449f19ad8358363", + "0x2e7cee56dde1a85a9f26d9d3d7b4204fa30dcfa87f7cfa41de45d553bc9bd73", + "0x1", + "0x7b" + ] + }, + { + "transaction_hash": "0x2b0f71c9aca8739e84a82f7b38f594b0b5278ec85d29a3697bb4a0751993c73", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x150c4", + "max_fee": "0x16345785d8a0000", + "sender_address": "0x37a10f2808c05f4a328bdac9a9344358547ae4676ebddc005e24ff887b188fd", + "signature": [ + "0x4300058b6862cff1879738beaa822910a68e9392110eda10feaa566ed5d9b34", + "0x26c46a193ef107cc0d1a6aedc4c3bc50772b4d5ce6aadfb60980e3f984ee103" + ], + "calldata": [ + "0x1", + "0x36031daa264c24520b11d93af622c848b2499b66b41d611bac95e13cfca131a", + "0x3d0bcca55c118f88a08e0fcc06f43906c0c174feb52ebc83f0fa28a1f59ed67", + "0x5c", + "0xd", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5950bd2919b", + "0x4254432f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x457303e638", + "0x4554482f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x592e488ec11", + "0x574254432f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f5b560", + "0x574254432f425443", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x531e74e15ed", + "0x4254432f455552", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x50f2be48c2", + "0x5753544554482f555344", + "0x0", + "0x0", + "0x663c90d6", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f47603", + "0x4c5553442f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf41c0", + "0x555344432f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x2b9d42b5", + "0x554e492f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x5f51c02", + "0x4441492f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0xf4015", + "0x555344542f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x7724a17", + "0x5354524b2f555344", + "0x0", + "0x0", + "0x663c90d7", + "0x464f55524c454146", + "0x464f55524c454146", + "0x3948b57", + "0x5a454e442f555344", + "0x0" + ] + }, + { + "transaction_hash": "0x93bb1860849af17fc6bcd8af4201362008f60f112a8118a846f45423c48f96", + "type": "INVOKE", + "version": "0x1", + "nonce": "0x18fb", + "max_fee": "0x516a7bf111", + "sender_address": "0x4d567630f8fe7915b7382ebfeb0c382e1cd1fa81622b4f768f71727d42d29e2", + "signature": [ + "0x6286ef669bb27cd2a6b1b8574a28889b37f4fa7cc526a99e7421f0ab6c03feb", + "0x4b2aecd2a8f6eb2910651a6d060e977b9a3eaf01619e771ead8b7db91469e68" + ], + "calldata": [ + "0x1", + "0x4718f5a0fc34cc1af16a1cdee98ffb20c31f5cd61d6ab07201858f4287c938d", + "0x83afd3f4caedc6eebf44246fe54e38c95e3179a5ec9ea81740eca5b482d12e", + "0x3", + "0x4297ef9d32c91cfeb7c7a5d992f6857b8d84957acbe00aefb27e6b8ed34ebff", + "0x38d7ea4c68000", + "0x0" + ] + }, + { + "transaction_hash": "0x6038c7498d699e62208c50c081bb12ece4b2f25551afbf9bb3ceafcb8858b4", + "type": "INVOKE", + "version": "0x3", + "nonce": "0x1102a", + "sender_address": "0x1d091b30a2d20ca2509579f8beae26934bfdc3725c0b497f50b353b7a3c636f", + "signature": [ + "0x36c7661e2f7a90502a773c77d4e2975514ff60164eef016f089a11be6fe9489", + "0x5cb45f501a22baaf40d79c6bfde3cdbf215074325e63334402240044f27090d" + ], + "calldata": [ + "0x1", + "0x132303a40ae2f271f4e1b707596a63f6f2921c4d400b38822548ed1bb0cbe0", + "0xc844fd57777b0cd7e75c8ea68deec0adf964a6308da7a58de32364b7131cc8", + "0x13", + "0x46f1db039a8aa6edb473195b98421579517d79bbe026e74bbc3f172af0798", + "0x190002", + "0xc1653bc421e6cf2fc7b506da1e30cdbafc77b75e4dba7fae06568c0cac2f58", + "0x663c9082", + "0x301040200000000000000000000000000000000000000000000000000000000", + "0x4", + "0x45753afa16", + "0x4576361800", + "0x4576eaba02", + "0x4576eaba02", + "0xb6dc58408e2e8e602", + "0x1", + "0x2", + "0x5ebe5369250591189a64d01c1bc56299bfad3caaff8ef2d0d0040b309e848f4", + "0x220827cc7ed5b55c8bc8c0dd170b44fa612139fcc1bba8837b77da63857dda0", + "0x2cb74dff29a13dd5d855159349ec92f943bacf0547ff3734e7d84a15d08cbc5", + "0x4d5999a8d794aa0a60eb0e2ba941ced241422d853bced5179c11fc4d3d4deaf", + "0x2751a8a43c8dd60866fbd9b5d3824427b86a712b9de739bed194a03ff735469", + "0x4225d1c8ee8e451a25e30c10689ef898e11ccf5c0f68d0fc7876c47b318e946" + ], + "resource_bounds": { + "l1_gas": { + "max_amount": "0x57", + "max_price_per_unit": "0x168746c699d0" + }, + "l2_gas": { + "max_amount": "0x0", + "max_price_per_unit": "0x0" + } + }, + "tip": "0x0", + "paymaster_data": [], + "account_deployment_data": [], + "nonce_data_availability_mode": "L1", + "fee_data_availability_mode": "L1" + } + ] +} \ No newline at end of file diff --git a/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json b/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json new file mode 100644 index 00000000..70c9e9c2 --- /dev/null +++ b/rpc/tests/blockWithHashes/sepoliaBlockWithHashes64159.json @@ -0,0 +1,42 @@ +{ + "status": "ACCEPTED_ON_L1", + "block_hash": "0x6df565874b2ea6a02d346a23f9efb0b26abbf5708b51bb12587f88a49052964", + "parent_hash": "0x1406ec9385293905d6c20e9c5aa0bbf9f63f87d39cf12fcdfef3ed0d056c0f5", + "block_number": 64159, + "new_root": "0x310be818a18de0d6f6c1391f467d0dbd1a2753e6dde876449448465f8e617f0", + "timestamp": 1714901729, + "sequencer_address": "0x1176a1bd84444c89232ec27754698e5d2e7e1a7f1539f12027f28b23ec9f3d8", + "l1_gas_price": { + "price_in_fri": "0xdf0413d3c777", + "price_in_wei": "0x185f2d3eb5" + }, + "l1_data_gas_price": { + "price_in_fri": "0xa41c1219f8849", + "price_in_wei": "0x11ef315a9ab" + }, + "l1_da_mode": "BLOB", + "starknet_version": "0.13.1.1", + "transactions": [ + "0x5e3fcf2f7dc0f3786a7406dc271cc54a00ba4658f9d0567b25b8e2a90a6250f", + "0x603fec12cfbc73bcf411fdf6f7780d4698c71b989002192a1277025235b23b9", + "0x23a24d95872d0eb15bf54cfb432830a3b85ad5c621b5edf849f131a2a45988d", + "0x4a35d133717f1f0288346432037d7964a16e503100fdab4cc3914a44790f3b4", + "0x5f14364b746abcfdfc0280877ff6d18c311d363e62264d7f218c5da2d396acc", + "0x7b49053e9a0bcd28c40d946702c28cf4ba068ff2e1755eff3fd99d62aada1a8", + "0x173c7a20046ab576667a2581cdea9565160a76e028864102a4d0828ca35a0d3", + "0x5754961d70d6f39d0e2c71a1a4ff5df0a26b1ceda4881ca82898994379e1e73", + "0x402f81ce59e3e79ca12c9cffea888c3f02542f2f4926731cb2145a3b8e810d5", + "0x48fa3e27b725e595e910548f3c0bb1ddfb30d32b31ebbf23fa1e63a66b0e59d", + "0x3d43ca0ea28f8e412b6abb37b76e75ac33e7df177cc8e4221e361ed0621bcdd", + "0x692381bba0e8505a8e0b92d0f046c8272de9e65f050850df678a0c10d8781d", + "0x7a56162702394b43b8fc05c511e1ddbe490749f2fd6786365d5d59797cd2012", + "0xcaead659d470ac0b572f0a4d8831275d51944d08961aab1a85bd68f9e98409", + "0x73376f10049aa689a5c6bf78b39b5a8c76ce5fb6611290b3080aa0d4f492d56", + "0x45061dccdb8cb32e428ec7b25136ae3a691f02bf5d01bd2d30ae9d2d4a29d4e", + "0x707071e6d5354a254935bf605b4eba4bb289261dc9ce75c1e9d8ad1367a5154", + "0x5358c68fa172aafabae1a007f5ec71eb1bddd64d4574366880f253287e8a0be", + "0x27a2e57d2ead1f9b7ce99c2e7b367820ecedf66cae3353572e6e7a7de89d1ce", + "0x59866d2230404c1c5787b523d3233f7f9d4ea9faf804ff747a0a2d3da77720e", + "0x5d41f4dec3678156d3888d6b890648c3baa02d866820689d5f8b3e20735521b" + ] +} \ No newline at end of file diff --git a/rpc/types_block_test.go b/rpc/types_block_test.go index cac355d8..4ceea73d 100644 --- a/rpc/types_block_test.go +++ b/rpc/types_block_test.go @@ -111,7 +111,7 @@ func TestBlockStatus(t *testing.T) { } } -//go:embed tests/block/sepoliaBlockTxs64159.json +//go:embed tests/block/sepoliaBlockTxs65083.json var rawBlock []byte // TestBlock_Unmarshal tests the Unmarshal function of the Block type. diff --git a/utils/Test.go b/utils/Test.go index c3da1fe4..7a3b2a6e 100644 --- a/utils/Test.go +++ b/utils/Test.go @@ -7,6 +7,9 @@ import ( "github.com/stretchr/testify/require" ) +// Just a random felt variable to use when needed. The value is "0xdeadbeef" +var RANDOM_FELT = new(felt.Felt).SetUint64(3735928559) + // TestHexToFelt generates a felt.Felt from a hexadecimal string. // // Parameters: