mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-09 15:37:54 -05:00
Simulation: Add nonce to call parameter (#8139)
Signed-off-by: Gabriel-Trintinalia <gabriel.trintinalia@consensys.net>
This commit is contained in:
committed by
GitHub
parent
74d22a082b
commit
702ce74c3d
@@ -31,6 +31,7 @@
|
|||||||
- Add support for `movePrecompileToAddress` in `StateOverrides` (`eth_call`)[8115](https://github.com/hyperledger/besu/pull/8115)
|
- Add support for `movePrecompileToAddress` in `StateOverrides` (`eth_call`)[8115](https://github.com/hyperledger/besu/pull/8115)
|
||||||
- Default target-gas-limit to 36M for holesky [#8125](https://github.com/hyperledger/besu/pull/8125)
|
- Default target-gas-limit to 36M for holesky [#8125](https://github.com/hyperledger/besu/pull/8125)
|
||||||
- Add EIP-7623 - Increase calldata cost [#8093](https://github.com/hyperledger/besu/pull/8093)
|
- Add EIP-7623 - Increase calldata cost [#8093](https://github.com/hyperledger/besu/pull/8093)
|
||||||
|
- Add nonce to transaction call object [#8139](https://github.com/hyperledger/besu/pull/8139)
|
||||||
|
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
- Fix serialization of state overrides when `movePrecompileToAddress` is present [#8204](https://github.com/hyperledger/besu/pull/8024)
|
- Fix serialization of state overrides when `movePrecompileToAddress` is present [#8204](https://github.com/hyperledger/besu/pull/8024)
|
||||||
|
|||||||
@@ -14,6 +14,8 @@
|
|||||||
*/
|
*/
|
||||||
package org.hyperledger.besu.tests.acceptance.dsl.transaction.eth;
|
package org.hyperledger.besu.tests.acceptance.dsl.transaction.eth;
|
||||||
|
|
||||||
|
import static org.web3j.protocol.core.DefaultBlockParameterName.LATEST;
|
||||||
|
|
||||||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.NodeRequests;
|
import org.hyperledger.besu.tests.acceptance.dsl.transaction.NodeRequests;
|
||||||
import org.hyperledger.besu.tests.acceptance.dsl.transaction.Transaction;
|
import org.hyperledger.besu.tests.acceptance.dsl.transaction.Transaction;
|
||||||
|
|
||||||
@@ -36,11 +38,13 @@ public class EthEstimateGasTransaction implements Transaction<EthEstimateGas> {
|
|||||||
public EthEstimateGas execute(final NodeRequests node) {
|
public EthEstimateGas execute(final NodeRequests node) {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
var nonce = node.eth().ethGetTransactionCount(from, LATEST).send().getTransactionCount();
|
||||||
|
|
||||||
return node.eth()
|
return node.eth()
|
||||||
.ethEstimateGas(
|
.ethEstimateGas(
|
||||||
new org.web3j.protocol.core.methods.request.Transaction(
|
new org.web3j.protocol.core.methods.request.Transaction(
|
||||||
from,
|
from,
|
||||||
BigInteger.ONE,
|
nonce,
|
||||||
BigInteger.ZERO,
|
BigInteger.ZERO,
|
||||||
BigInteger.ZERO,
|
BigInteger.ZERO,
|
||||||
contractAddress,
|
contractAddress,
|
||||||
|
|||||||
@@ -356,6 +356,7 @@ public class BlockAdapterBase extends AdapterBase {
|
|||||||
maxFeePerGas,
|
maxFeePerGas,
|
||||||
valueParam,
|
valueParam,
|
||||||
data,
|
data,
|
||||||
|
Optional.empty(),
|
||||||
Optional.empty());
|
Optional.empty());
|
||||||
|
|
||||||
return transactionSimulator.process(
|
return transactionSimulator.process(
|
||||||
|
|||||||
@@ -147,7 +147,8 @@ public abstract class AbstractEstimateGas extends AbstractBlockParameterMethod {
|
|||||||
callParams.getPayload(),
|
callParams.getPayload(),
|
||||||
callParams.getAccessList(),
|
callParams.getAccessList(),
|
||||||
callParams.getMaxFeePerBlobGas(),
|
callParams.getMaxFeePerBlobGas(),
|
||||||
callParams.getBlobVersionedHashes());
|
callParams.getBlobVersionedHashes(),
|
||||||
|
callParams.getNonce());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -127,7 +127,8 @@ public class EthCreateAccessList extends AbstractEstimateGas {
|
|||||||
callParams.getMaxFeePerGas(),
|
callParams.getMaxFeePerGas(),
|
||||||
callParams.getValue(),
|
callParams.getValue(),
|
||||||
callParams.getPayload(),
|
callParams.getPayload(),
|
||||||
Optional.of(accessListEntries));
|
Optional.of(accessListEntries),
|
||||||
|
callParams.getNonce());
|
||||||
}
|
}
|
||||||
|
|
||||||
private record AccessListSimulatorResult(
|
private record AccessListSimulatorResult(
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import org.hyperledger.besu.datatypes.AccessListEntry;
|
|||||||
import org.hyperledger.besu.datatypes.Address;
|
import org.hyperledger.besu.datatypes.Address;
|
||||||
import org.hyperledger.besu.datatypes.VersionedHash;
|
import org.hyperledger.besu.datatypes.VersionedHash;
|
||||||
import org.hyperledger.besu.datatypes.Wei;
|
import org.hyperledger.besu.datatypes.Wei;
|
||||||
|
import org.hyperledger.besu.datatypes.parameters.UnsignedLongParameter;
|
||||||
import org.hyperledger.besu.ethereum.core.json.ChainIdDeserializer;
|
import org.hyperledger.besu.ethereum.core.json.ChainIdDeserializer;
|
||||||
import org.hyperledger.besu.ethereum.core.json.GasDeserializer;
|
import org.hyperledger.besu.ethereum.core.json.GasDeserializer;
|
||||||
import org.hyperledger.besu.ethereum.core.json.HexStringDeserializer;
|
import org.hyperledger.besu.ethereum.core.json.HexStringDeserializer;
|
||||||
@@ -56,6 +57,7 @@ import org.slf4j.LoggerFactory;
|
|||||||
* .withMaxPriorityFeePerGas(Wei.of(1)) // Optional
|
* .withMaxPriorityFeePerGas(Wei.of(1)) // Optional
|
||||||
* .withMaxFeePerBlobGas(Wei.of(3)) // Optional
|
* .withMaxFeePerBlobGas(Wei.of(3)) // Optional
|
||||||
* .withBlobVersionedHashes(blobVersionedHashes) // Optional
|
* .withBlobVersionedHashes(blobVersionedHashes) // Optional
|
||||||
|
* .withNonce(new UnsignedLongParameter(1L)) // Optional
|
||||||
* .build();
|
* .build();
|
||||||
* }</pre>
|
* }</pre>
|
||||||
*
|
*
|
||||||
@@ -86,7 +88,8 @@ public class JsonCallParameter extends CallParameter {
|
|||||||
final Optional<Boolean> strict,
|
final Optional<Boolean> strict,
|
||||||
final Optional<List<AccessListEntry>> accessList,
|
final Optional<List<AccessListEntry>> accessList,
|
||||||
final Optional<Wei> maxFeePerBlobGas,
|
final Optional<Wei> maxFeePerBlobGas,
|
||||||
final Optional<List<VersionedHash>> blobVersionedHashes) {
|
final Optional<List<VersionedHash>> blobVersionedHashes,
|
||||||
|
final Optional<Long> nonce) {
|
||||||
|
|
||||||
super(
|
super(
|
||||||
chainId,
|
chainId,
|
||||||
@@ -100,7 +103,8 @@ public class JsonCallParameter extends CallParameter {
|
|||||||
payload,
|
payload,
|
||||||
accessList,
|
accessList,
|
||||||
maxFeePerBlobGas,
|
maxFeePerBlobGas,
|
||||||
blobVersionedHashes);
|
blobVersionedHashes,
|
||||||
|
nonce);
|
||||||
|
|
||||||
this.strict = strict;
|
this.strict = strict;
|
||||||
}
|
}
|
||||||
@@ -133,6 +137,7 @@ public class JsonCallParameter extends CallParameter {
|
|||||||
private Bytes input;
|
private Bytes input;
|
||||||
private Optional<List<AccessListEntry>> accessList = Optional.empty();
|
private Optional<List<AccessListEntry>> accessList = Optional.empty();
|
||||||
private Optional<List<VersionedHash>> blobVersionedHashes = Optional.empty();
|
private Optional<List<VersionedHash>> blobVersionedHashes = Optional.empty();
|
||||||
|
private Optional<Long> nonce = Optional.empty();
|
||||||
|
|
||||||
/** Default constructor. */
|
/** Default constructor. */
|
||||||
public JsonCallParameterBuilder() {}
|
public JsonCallParameterBuilder() {}
|
||||||
@@ -327,6 +332,18 @@ public class JsonCallParameter extends CallParameter {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the nonce for the {@link JsonCallParameter}. It is an optional parameter, and if not
|
||||||
|
* specified, it defaults to an empty {@link Optional}.
|
||||||
|
*
|
||||||
|
* @param nonce the nonce, can be {@code null} to indicate no nonce is provided
|
||||||
|
* @return the {@link JsonCallParameterBuilder} instance for chaining
|
||||||
|
*/
|
||||||
|
public JsonCallParameterBuilder withNonce(final UnsignedLongParameter nonce) {
|
||||||
|
this.nonce = Optional.ofNullable(nonce).map(UnsignedLongParameter::getValue);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles unknown JSON properties during deserialization. This method is invoked when an
|
* Handles unknown JSON properties during deserialization. This method is invoked when an
|
||||||
* unknown property is encountered in the JSON being deserialized into a {@link
|
* unknown property is encountered in the JSON being deserialized into a {@link
|
||||||
@@ -376,7 +393,8 @@ public class JsonCallParameter extends CallParameter {
|
|||||||
strict,
|
strict,
|
||||||
accessList,
|
accessList,
|
||||||
maxFeePerBlobGas,
|
maxFeePerBlobGas,
|
||||||
blobVersionedHashes);
|
blobVersionedHashes,
|
||||||
|
nonce);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -579,6 +579,7 @@ public class EthEstimateGasTest {
|
|||||||
Optional.empty(),
|
Optional.empty(),
|
||||||
Wei.ZERO,
|
Wei.ZERO,
|
||||||
Bytes.EMPTY,
|
Bytes.EMPTY,
|
||||||
|
Optional.empty(),
|
||||||
Optional.empty());
|
Optional.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -613,6 +614,7 @@ public class EthEstimateGasTest {
|
|||||||
Optional.of(Wei.fromHexString("0x10")),
|
Optional.of(Wei.fromHexString("0x10")),
|
||||||
Wei.ZERO,
|
Wei.ZERO,
|
||||||
Bytes.EMPTY,
|
Bytes.EMPTY,
|
||||||
|
Optional.empty(),
|
||||||
Optional.empty());
|
Optional.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
||||||
"nonce" : "0x0"
|
"nonce" : "0x1E"
|
||||||
}, "latest",
|
}, "latest",
|
||||||
{
|
{
|
||||||
"disableMemory": true, "disableStack": true, "disableStorage": true
|
"disableMemory": true, "disableStack": true, "disableStorage": true
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
||||||
"nonce" : "0x0"
|
"nonce" : "0x1E"
|
||||||
}, "latest" ],
|
}, "latest" ],
|
||||||
"id" : 1
|
"id" : 1
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
||||||
"nonce" : "0x0"
|
"nonce" : "0x1E"
|
||||||
}, "latest",
|
}, "latest",
|
||||||
{
|
{
|
||||||
"disableMemory":true
|
"disableMemory":true
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
||||||
"nonce" : "0x0"
|
"nonce" : "0x1E"
|
||||||
}, "latest",
|
}, "latest",
|
||||||
{
|
{
|
||||||
"disableStack": true
|
"disableStack": true
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
||||||
"nonce" : "0x0"
|
"nonce" : "0x1E"
|
||||||
}, "latest",
|
}, "latest",
|
||||||
{
|
{
|
||||||
"disableStorage": true
|
"disableStorage": true
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0000000000000000000000000000000000000999",
|
"to" : "0x0000000000000000000000000000000000000999",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x1",
|
"value" : "0x1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 0
|
"id" : 0
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0000000000000000000000000000000000000999",
|
"to" : "0x0000000000000000000000000000000000000999",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x1",
|
"value" : "0x1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 0
|
"id" : 0
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0000000000000000000000000000000000000999",
|
"to" : "0x0000000000000000000000000000000000000999",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x1",
|
"value" : "0x1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 53
|
"id" : 53
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 1
|
"id" : 1
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 1
|
"id" : 1
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 54
|
"id" : 54
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 2
|
"id" : 2
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 2
|
"id" : 2
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 55
|
"id" : 55
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 3
|
"id" : 3
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 3
|
"id" : 3
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 56
|
"id" : 56
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 4
|
"id" : 4
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 4
|
"id" : 4
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 57
|
"id" : 57
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 5
|
"id" : 5
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 5
|
"id" : 5
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000",
|
"data" : "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 58
|
"id" : 58
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000999",
|
"data" : "0x0000000000000000000000000000000000000999"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 6
|
"id" : 6
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000999",
|
"data" : "0x0000000000000000000000000000000000000999"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 6
|
"id" : 6
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000000000000000999",
|
"data" : "0x0000000000000000000000000000000000000999"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 59
|
"id" : 59
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 7
|
"id" : 7
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 7
|
"id" : 7
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0xf000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 60
|
"id" : 60
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 8
|
"id" : 8
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 8
|
"id" : 8
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 61
|
"id" : 61
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 9
|
"id" : 9
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 9
|
"id" : 9
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 62
|
"id" : 62
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 10
|
"id" : 10
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 10
|
"id" : 10
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 63
|
"id" : 63
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 11
|
"id" : 11
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 11
|
"id" : 11
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,8 +9,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001",
|
"data" : "0x0000000000000000000000000030000000000000000000000000000000000000f000000000000000000000000000000000000000000000000000000000000001"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 64
|
"id" : 64
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0070000000000000000000000000000000000000",
|
"to" : "0x0070000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 12
|
"id" : 12
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0070000000000000000000000000000000000000",
|
"to" : "0x0070000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 12
|
"id" : 12
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0070000000000000000000000000000000000000",
|
"to" : "0x0070000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 65
|
"id" : 65
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0080000000000000000000000000000000000000",
|
"to" : "0x0080000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 13
|
"id" : 13
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0080000000000000000000000000000000000000",
|
"to" : "0x0080000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 13
|
"id" : 13
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0080000000000000000000000000000000000000",
|
"to" : "0x0080000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 66
|
"id" : 66
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 14
|
"id" : 14
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 14
|
"id" : 14
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 67
|
"id" : 67
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 15
|
"id" : 15
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 15
|
"id" : 15
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 68
|
"id" : 68
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 16
|
"id" : 16
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 16
|
"id" : 16
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0090000000000000000000000000000000000000",
|
"to" : "0x0090000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 69
|
"id" : 69
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00A0000000000000000000000000000000000000",
|
"to" : "0x00A0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 17
|
"id" : 17
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00A0000000000000000000000000000000000000",
|
"to" : "0x00A0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 17
|
"id" : 17
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00A0000000000000000000000000000000000000",
|
"to" : "0x00A0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 70
|
"id" : 70
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00B0000000000000000000000000000000000000",
|
"to" : "0x00B0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 18
|
"id" : 18
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00B0000000000000000000000000000000000000",
|
"to" : "0x00B0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 18
|
"id" : 18
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00B0000000000000000000000000000000000000",
|
"to" : "0x00B0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 71
|
"id" : 71
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00C0000000000000000000000000000000000000",
|
"to" : "0x00C0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 19
|
"id" : 19
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00C0000000000000000000000000000000000000",
|
"to" : "0x00C0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 19
|
"id" : 19
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00C0000000000000000000000000000000000000",
|
"to" : "0x00C0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 72
|
"id" : 72
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00D0000000000000000000000000000000000000",
|
"to" : "0x00D0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 20
|
"id" : 20
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00D0000000000000000000000000000000000000",
|
"to" : "0x00D0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 20
|
"id" : 20
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00D0000000000000000000000000000000000000",
|
"to" : "0x00D0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 73
|
"id" : 73
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00E0000000000000000000000000000000000000",
|
"to" : "0x00E0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 21
|
"id" : 21
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00E0000000000000000000000000000000000000",
|
"to" : "0x00E0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 21
|
"id" : 21
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00E0000000000000000000000000000000000000",
|
"to" : "0x00E0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 74
|
"id" : 74
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00F0000000000000000000000000000000000000",
|
"to" : "0x00F0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 22
|
"id" : 22
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00F0000000000000000000000000000000000000",
|
"to" : "0x00F0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 22
|
"id" : 22
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x00F0000000000000000000000000000000000000",
|
"to" : "0x00F0000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 75
|
"id" : 75
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0100000000000000000000000000000000000000",
|
"to" : "0x0100000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 23
|
"id" : 23
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0100000000000000000000000000000000000000",
|
"to" : "0x0100000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 23
|
"id" : 23
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0100000000000000000000000000000000000000",
|
"to" : "0x0100000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 76
|
"id" : 76
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0110000000000000000000000000000000000000",
|
"to" : "0x0110000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 24
|
"id" : 24
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0110000000000000000000000000000000000000",
|
"to" : "0x0110000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 24
|
"id" : 24
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"to" : "0x0110000000000000000000000000000000000000",
|
"to" : "0x0110000000000000000000000000000000000000",
|
||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 77
|
"id" : 77
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 25
|
"id" : 25
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 25
|
"id" : 25
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 78
|
"id" : 78
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1",
|
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 26
|
"id" : 26
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1",
|
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 26
|
"id" : 26
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1",
|
"data" : "0x60006000600060006000738f0483125fcb9aaaefa9209d8e9d7b9c8b9fb90f5AF1600060006000600060007300A00000000000000000000000000000000000005AF1"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 79
|
"id" : 79
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 27
|
"id" : 27
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 27
|
"id" : 27
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 80
|
"id" : 80
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2",
|
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 28
|
"id" : 28
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2",
|
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "trace" ], "latest" ],
|
}, [ "trace" ], "latest" ],
|
||||||
"id" : 28
|
"id" : 28
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2",
|
"data" : "0x60006000600060006000732c2b9c9a4a25e24b174f26114e8926a9f2128fe45AF2600060006000600060007300A00000000000000000000000000000000000005AF2"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "vmTrace" ], "latest" ],
|
}, [ "vmTrace" ], "latest" ],
|
||||||
"id" : 81
|
"id" : 81
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -8,8 +8,7 @@
|
|||||||
"gas" : "0xfffff2",
|
"gas" : "0xfffff2",
|
||||||
"gasPrice" : "0xef",
|
"gasPrice" : "0xef",
|
||||||
"value" : "0x0",
|
"value" : "0x0",
|
||||||
"data" : "0x6004600C60003960046000F3600035FF",
|
"data" : "0x6004600C60003960046000F3600035FF"
|
||||||
"nonce" : "0x0"
|
|
||||||
}, [ "stateDiff" ], "latest" ],
|
}, [ "stateDiff" ], "latest" ],
|
||||||
"id" : 29
|
"id" : 29
|
||||||
},
|
},
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user