@ledgerhq/coin-tron 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.js +20 -0
- package/.turbo/turbo-build.log +4 -0
- package/.unimportedrc.json +25 -0
- package/LICENSE.txt +21 -0
- package/jest.config.js +8 -0
- package/jest.integ.config.js +7 -0
- package/lib/bridge/broadcast.d.ts +7 -0
- package/lib/bridge/broadcast.d.ts.map +1 -0
- package/lib/bridge/broadcast.js +26 -0
- package/lib/bridge/broadcast.js.map +1 -0
- package/lib/bridge/buildOptimisticOperation.d.ts +5 -0
- package/lib/bridge/buildOptimisticOperation.d.ts.map +1 -0
- package/lib/bridge/buildOptimisticOperation.js +101 -0
- package/lib/bridge/buildOptimisticOperation.js.map +1 -0
- package/lib/bridge/createTransaction.d.ts +4 -0
- package/lib/bridge/createTransaction.d.ts.map +1 -0
- package/lib/bridge/createTransaction.js +19 -0
- package/lib/bridge/createTransaction.js.map +1 -0
- package/lib/bridge/deviceTransactionConfig.d.ts +20 -0
- package/lib/bridge/deviceTransactionConfig.d.ts.map +1 -0
- package/lib/bridge/deviceTransactionConfig.js +65 -0
- package/lib/bridge/deviceTransactionConfig.js.map +1 -0
- package/lib/bridge/estimateMaxSpendable.d.ts +5 -0
- package/lib/bridge/estimateMaxSpendable.d.ts.map +1 -0
- package/lib/bridge/estimateMaxSpendable.js +30 -0
- package/lib/bridge/estimateMaxSpendable.js.map +1 -0
- package/lib/bridge/getEstimateFees.d.ts +6 -0
- package/lib/bridge/getEstimateFees.d.ts.map +1 -0
- package/lib/bridge/getEstimateFees.js +52 -0
- package/lib/bridge/getEstimateFees.js.map +1 -0
- package/lib/bridge/getTransactionStatus.d.ts +4 -0
- package/lib/bridge/getTransactionStatus.d.ts.map +1 -0
- package/lib/bridge/getTransactionStatus.js +218 -0
- package/lib/bridge/getTransactionStatus.js.map +1 -0
- package/lib/bridge/index.d.ts +10 -0
- package/lib/bridge/index.d.ts.map +1 -0
- package/lib/bridge/index.js +60 -0
- package/lib/bridge/index.js.map +1 -0
- package/lib/bridge/preload.d.ts +8 -0
- package/lib/bridge/preload.d.ts.map +1 -0
- package/lib/bridge/preload.js +32 -0
- package/lib/bridge/preload.js.map +1 -0
- package/lib/bridge/prepareTransaction.d.ts +4 -0
- package/lib/bridge/prepareTransaction.d.ts.map +1 -0
- package/lib/bridge/prepareTransaction.js +19 -0
- package/lib/bridge/prepareTransaction.js.map +1 -0
- package/lib/bridge/serialization.d.ts +9 -0
- package/lib/bridge/serialization.d.ts.map +1 -0
- package/lib/bridge/serialization.js +238 -0
- package/lib/bridge/serialization.js.map +1 -0
- package/lib/bridge/signOperation.d.ts +5 -0
- package/lib/bridge/signOperation.d.ts.map +1 -0
- package/lib/bridge/signOperation.js +92 -0
- package/lib/bridge/signOperation.js.map +1 -0
- package/lib/bridge/synchronization.d.ts +5 -0
- package/lib/bridge/synchronization.d.ts.map +1 -0
- package/lib/bridge/synchronization.integ.test.d.ts +3 -0
- package/lib/bridge/synchronization.integ.test.d.ts.map +1 -0
- package/lib/bridge/synchronization.integ.test.js +96 -0
- package/lib/bridge/synchronization.integ.test.js.map +1 -0
- package/lib/bridge/synchronization.js +216 -0
- package/lib/bridge/synchronization.js.map +1 -0
- package/lib/bridge/transaction.d.ts +15 -0
- package/lib/bridge/transaction.d.ts.map +1 -0
- package/lib/bridge/transaction.js +61 -0
- package/lib/bridge/transaction.js.map +1 -0
- package/lib/config.d.ts +10 -0
- package/lib/config.d.ts.map +1 -0
- package/lib/config.js +17 -0
- package/lib/config.js.map +1 -0
- package/lib/index.d.ts +3 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +21 -0
- package/lib/index.js.map +1 -0
- package/lib/logic/constants.d.ts +4 -0
- package/lib/logic/constants.d.ts.map +1 -0
- package/lib/logic/constants.js +7 -0
- package/lib/logic/constants.js.map +1 -0
- package/lib/logic/pagination.d.ts +3 -0
- package/lib/logic/pagination.d.ts.map +1 -0
- package/lib/logic/pagination.js +19 -0
- package/lib/logic/pagination.js.map +1 -0
- package/lib/logic/utils.d.ts +12 -0
- package/lib/logic/utils.d.ts.map +1 -0
- package/lib/logic/utils.js +177 -0
- package/lib/logic/utils.js.map +1 -0
- package/lib/network/format.d.ts +9 -0
- package/lib/network/format.d.ts.map +1 -0
- package/lib/network/format.js +127 -0
- package/lib/network/format.js.map +1 -0
- package/lib/network/index.d.ts +30 -0
- package/lib/network/index.d.ts.map +1 -0
- package/lib/network/index.integ.test.d.ts +2 -0
- package/lib/network/index.integ.test.d.ts.map +1 -0
- package/lib/network/index.integ.test.js +38 -0
- package/lib/network/index.integ.test.js.map +1 -0
- package/lib/network/index.js +555 -0
- package/lib/network/index.js.map +1 -0
- package/lib/network/index.test.d.ts +2 -0
- package/lib/network/index.test.d.ts.map +1 -0
- package/lib/network/index.test.js +66 -0
- package/lib/network/index.test.js.map +1 -0
- package/lib/network/superRepresentativesData.mock.d.ts +69 -0
- package/lib/network/superRepresentativesData.mock.d.ts.map +1 -0
- package/lib/network/superRepresentativesData.mock.js +2208 -0
- package/lib/network/superRepresentativesData.mock.js.map +1 -0
- package/lib/network/types.d.ts +122 -0
- package/lib/network/types.d.ts.map +1 -0
- package/lib/network/types.fixture.d.ts +498 -0
- package/lib/network/types.fixture.d.ts.map +1 -0
- package/lib/network/types.fixture.js +4375 -0
- package/lib/network/types.fixture.js.map +1 -0
- package/lib/network/types.js +13 -0
- package/lib/network/types.js.map +1 -0
- package/lib/signer/getAddress.d.ts +6 -0
- package/lib/signer/getAddress.d.ts.map +1 -0
- package/lib/signer/getAddress.js +19 -0
- package/lib/signer/getAddress.js.map +1 -0
- package/lib/signer/index.d.ts +6 -0
- package/lib/signer/index.d.ts.map +1 -0
- package/lib/signer/index.js +11 -0
- package/lib/signer/index.js.map +1 -0
- package/lib/test/bot-deviceActions.d.ts +4 -0
- package/lib/test/bot-deviceActions.d.ts.map +1 -0
- package/lib/test/bot-deviceActions.js +103 -0
- package/lib/test/bot-deviceActions.js.map +1 -0
- package/lib/test/bot-specs.d.ts +7 -0
- package/lib/test/bot-specs.d.ts.map +1 -0
- package/lib/test/bot-specs.js +433 -0
- package/lib/test/bot-specs.js.map +1 -0
- package/lib/test/bridgeDatasetTest.d.ts +4 -0
- package/lib/test/bridgeDatasetTest.d.ts.map +1 -0
- package/lib/test/bridgeDatasetTest.js +1284 -0
- package/lib/test/bridgeDatasetTest.js.map +1 -0
- package/lib/test/cli.d.ts +52 -0
- package/lib/test/cli.d.ts.map +1 -0
- package/lib/test/cli.js +155 -0
- package/lib/test/cli.js.map +1 -0
- package/lib/test/index.d.ts +6 -0
- package/lib/test/index.d.ts.map +1 -0
- package/lib/test/index.js +26 -0
- package/lib/test/index.js.map +1 -0
- package/lib/types/bridge.d.ts +245 -0
- package/lib/types/bridge.d.ts.map +1 -0
- package/lib/types/bridge.js +16 -0
- package/lib/types/bridge.js.map +1 -0
- package/lib/types/errors.d.ts +49 -0
- package/lib/types/errors.d.ts.map +1 -0
- package/lib/types/errors.js +21 -0
- package/lib/types/errors.js.map +1 -0
- package/lib/types/index.d.ts +4 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.js +21 -0
- package/lib/types/index.js.map +1 -0
- package/lib/types/signer.d.ts +10 -0
- package/lib/types/signer.d.ts.map +1 -0
- package/lib/types/signer.js +3 -0
- package/lib/types/signer.js.map +1 -0
- package/lib-es/bridge/broadcast.d.ts +7 -0
- package/lib-es/bridge/broadcast.d.ts.map +1 -0
- package/lib-es/bridge/broadcast.js +24 -0
- package/lib-es/bridge/broadcast.js.map +1 -0
- package/lib-es/bridge/buildOptimisticOperation.d.ts +5 -0
- package/lib-es/bridge/buildOptimisticOperation.d.ts.map +1 -0
- package/lib-es/bridge/buildOptimisticOperation.js +94 -0
- package/lib-es/bridge/buildOptimisticOperation.js.map +1 -0
- package/lib-es/bridge/createTransaction.d.ts +4 -0
- package/lib-es/bridge/createTransaction.d.ts.map +1 -0
- package/lib-es/bridge/createTransaction.js +14 -0
- package/lib-es/bridge/createTransaction.js.map +1 -0
- package/lib-es/bridge/deviceTransactionConfig.d.ts +20 -0
- package/lib-es/bridge/deviceTransactionConfig.d.ts.map +1 -0
- package/lib-es/bridge/deviceTransactionConfig.js +63 -0
- package/lib-es/bridge/deviceTransactionConfig.js.map +1 -0
- package/lib-es/bridge/estimateMaxSpendable.d.ts +5 -0
- package/lib-es/bridge/estimateMaxSpendable.d.ts.map +1 -0
- package/lib-es/bridge/estimateMaxSpendable.js +25 -0
- package/lib-es/bridge/estimateMaxSpendable.js.map +1 -0
- package/lib-es/bridge/getEstimateFees.d.ts +6 -0
- package/lib-es/bridge/getEstimateFees.d.ts.map +1 -0
- package/lib-es/bridge/getEstimateFees.js +47 -0
- package/lib-es/bridge/getEstimateFees.js.map +1 -0
- package/lib-es/bridge/getTransactionStatus.d.ts +4 -0
- package/lib-es/bridge/getTransactionStatus.d.ts.map +1 -0
- package/lib-es/bridge/getTransactionStatus.js +213 -0
- package/lib-es/bridge/getTransactionStatus.js.map +1 -0
- package/lib-es/bridge/index.d.ts +10 -0
- package/lib-es/bridge/index.d.ts.map +1 -0
- package/lib-es/bridge/index.js +53 -0
- package/lib-es/bridge/index.js.map +1 -0
- package/lib-es/bridge/preload.d.ts +8 -0
- package/lib-es/bridge/preload.d.ts.map +1 -0
- package/lib-es/bridge/preload.js +27 -0
- package/lib-es/bridge/preload.js.map +1 -0
- package/lib-es/bridge/prepareTransaction.d.ts +4 -0
- package/lib-es/bridge/prepareTransaction.d.ts.map +1 -0
- package/lib-es/bridge/prepareTransaction.js +15 -0
- package/lib-es/bridge/prepareTransaction.js.map +1 -0
- package/lib-es/bridge/serialization.d.ts +9 -0
- package/lib-es/bridge/serialization.d.ts.map +1 -0
- package/lib-es/bridge/serialization.js +229 -0
- package/lib-es/bridge/serialization.js.map +1 -0
- package/lib-es/bridge/signOperation.d.ts +5 -0
- package/lib-es/bridge/signOperation.d.ts.map +1 -0
- package/lib-es/bridge/signOperation.js +85 -0
- package/lib-es/bridge/signOperation.js.map +1 -0
- package/lib-es/bridge/synchronization.d.ts +5 -0
- package/lib-es/bridge/synchronization.d.ts.map +1 -0
- package/lib-es/bridge/synchronization.integ.test.d.ts +3 -0
- package/lib-es/bridge/synchronization.integ.test.d.ts.map +1 -0
- package/lib-es/bridge/synchronization.integ.test.js +89 -0
- package/lib-es/bridge/synchronization.integ.test.js.map +1 -0
- package/lib-es/bridge/synchronization.js +209 -0
- package/lib-es/bridge/synchronization.js.map +1 -0
- package/lib-es/bridge/transaction.d.ts +15 -0
- package/lib-es/bridge/transaction.d.ts.map +1 -0
- package/lib-es/bridge/transaction.js +55 -0
- package/lib-es/bridge/transaction.js.map +1 -0
- package/lib-es/config.d.ts +10 -0
- package/lib-es/config.d.ts.map +1 -0
- package/lib-es/config.js +12 -0
- package/lib-es/config.js.map +1 -0
- package/lib-es/index.d.ts +3 -0
- package/lib-es/index.d.ts.map +1 -0
- package/lib-es/index.js +3 -0
- package/lib-es/index.js.map +1 -0
- package/lib-es/logic/constants.d.ts +4 -0
- package/lib-es/logic/constants.d.ts.map +1 -0
- package/lib-es/logic/constants.js +4 -0
- package/lib-es/logic/constants.js.map +1 -0
- package/lib-es/logic/pagination.d.ts +3 -0
- package/lib-es/logic/pagination.d.ts.map +1 -0
- package/lib-es/logic/pagination.js +15 -0
- package/lib-es/logic/pagination.js.map +1 -0
- package/lib-es/logic/utils.d.ts +12 -0
- package/lib-es/logic/utils.d.ts.map +1 -0
- package/lib-es/logic/utils.js +167 -0
- package/lib-es/logic/utils.js.map +1 -0
- package/lib-es/network/format.d.ts +9 -0
- package/lib-es/network/format.d.ts.map +1 -0
- package/lib-es/network/format.js +117 -0
- package/lib-es/network/format.js.map +1 -0
- package/lib-es/network/index.d.ts +30 -0
- package/lib-es/network/index.d.ts.map +1 -0
- package/lib-es/network/index.integ.test.d.ts +2 -0
- package/lib-es/network/index.integ.test.d.ts.map +1 -0
- package/lib-es/network/index.integ.test.js +36 -0
- package/lib-es/network/index.integ.test.js.map +1 -0
- package/lib-es/network/index.js +524 -0
- package/lib-es/network/index.js.map +1 -0
- package/lib-es/network/index.test.d.ts +2 -0
- package/lib-es/network/index.test.d.ts.map +1 -0
- package/lib-es/network/index.test.js +63 -0
- package/lib-es/network/index.test.js.map +1 -0
- package/lib-es/network/superRepresentativesData.mock.d.ts +69 -0
- package/lib-es/network/superRepresentativesData.mock.d.ts.map +1 -0
- package/lib-es/network/superRepresentativesData.mock.js +2206 -0
- package/lib-es/network/superRepresentativesData.mock.js.map +1 -0
- package/lib-es/network/types.d.ts +122 -0
- package/lib-es/network/types.d.ts.map +1 -0
- package/lib-es/network/types.fixture.d.ts +498 -0
- package/lib-es/network/types.fixture.d.ts.map +1 -0
- package/lib-es/network/types.fixture.js +4371 -0
- package/lib-es/network/types.fixture.js.map +1 -0
- package/lib-es/network/types.js +8 -0
- package/lib-es/network/types.js.map +1 -0
- package/lib-es/signer/getAddress.d.ts +6 -0
- package/lib-es/signer/getAddress.d.ts.map +1 -0
- package/lib-es/signer/getAddress.js +17 -0
- package/lib-es/signer/getAddress.js.map +1 -0
- package/lib-es/signer/index.d.ts +6 -0
- package/lib-es/signer/index.d.ts.map +1 -0
- package/lib-es/signer/index.js +6 -0
- package/lib-es/signer/index.js.map +1 -0
- package/lib-es/test/bot-deviceActions.d.ts +4 -0
- package/lib-es/test/bot-deviceActions.d.ts.map +1 -0
- package/lib-es/test/bot-deviceActions.js +100 -0
- package/lib-es/test/bot-deviceActions.js.map +1 -0
- package/lib-es/test/bot-specs.d.ts +7 -0
- package/lib-es/test/bot-specs.d.ts.map +1 -0
- package/lib-es/test/bot-specs.js +428 -0
- package/lib-es/test/bot-specs.js.map +1 -0
- package/lib-es/test/bridgeDatasetTest.d.ts +4 -0
- package/lib-es/test/bridgeDatasetTest.d.ts.map +1 -0
- package/lib-es/test/bridgeDatasetTest.js +1278 -0
- package/lib-es/test/bridgeDatasetTest.js.map +1 -0
- package/lib-es/test/cli.d.ts +52 -0
- package/lib-es/test/cli.d.ts.map +1 -0
- package/lib-es/test/cli.js +149 -0
- package/lib-es/test/cli.js.map +1 -0
- package/lib-es/test/index.d.ts +6 -0
- package/lib-es/test/index.d.ts.map +1 -0
- package/lib-es/test/index.js +6 -0
- package/lib-es/test/index.js.map +1 -0
- package/lib-es/types/bridge.d.ts +245 -0
- package/lib-es/types/bridge.d.ts.map +1 -0
- package/lib-es/types/bridge.js +11 -0
- package/lib-es/types/bridge.js.map +1 -0
- package/lib-es/types/errors.d.ts +49 -0
- package/lib-es/types/errors.d.ts.map +1 -0
- package/lib-es/types/errors.js +18 -0
- package/lib-es/types/errors.js.map +1 -0
- package/lib-es/types/index.d.ts +4 -0
- package/lib-es/types/index.d.ts.map +1 -0
- package/lib-es/types/index.js +5 -0
- package/lib-es/types/index.js.map +1 -0
- package/lib-es/types/signer.d.ts +10 -0
- package/lib-es/types/signer.d.ts.map +1 -0
- package/lib-es/types/signer.js +2 -0
- package/lib-es/types/signer.js.map +1 -0
- package/package.json +133 -0
- package/src/bridge/broadcast.ts +24 -0
- package/src/bridge/buildOptimisticOperation.ts +133 -0
- package/src/bridge/createTransaction.ts +16 -0
- package/src/bridge/deviceTransactionConfig.ts +99 -0
- package/src/bridge/estimateMaxSpendable.ts +32 -0
- package/src/bridge/getEstimateFees.ts +52 -0
- package/src/bridge/getTransactionStatus.ts +263 -0
- package/src/bridge/index.ts +78 -0
- package/src/bridge/preload.ts +24 -0
- package/src/bridge/prepareTransaction.ts +12 -0
- package/src/bridge/serialization.ts +288 -0
- package/src/bridge/signOperation.ts +123 -0
- package/src/bridge/synchronization.integ.test.ts +105 -0
- package/src/bridge/synchronization.ts +284 -0
- package/src/bridge/transaction.ts +84 -0
- package/src/config.ts +24 -0
- package/src/index.ts +3 -0
- package/src/logic/constants.ts +4 -0
- package/src/logic/pagination.ts +21 -0
- package/src/logic/utils.ts +231 -0
- package/src/network/format.ts +148 -0
- package/src/network/index.integ.test.ts +33 -0
- package/src/network/index.test.ts +61 -0
- package/src/network/index.ts +747 -0
- package/src/network/superRepresentativesData.mock.ts +2205 -0
- package/src/network/types.fixture.ts +4476 -0
- package/src/network/types.ts +147 -0
- package/src/signer/getAddress.ts +13 -0
- package/src/signer/index.ts +7 -0
- package/src/test/bot-deviceActions.ts +121 -0
- package/src/test/bot-specs.ts +457 -0
- package/src/test/bridgeDatasetTest.ts +1343 -0
- package/src/test/cli.ts +219 -0
- package/src/test/index.ts +6 -0
- package/src/types/bridge.ts +304 -0
- package/src/types/errors.ts +22 -0
- package/src/types/index.ts +4 -0
- package/src/types/signer.ts +9 -0
- package/tsconfig.json +14 -0
- package/types/tronweb/index.d.ts +5 -0
|
@@ -0,0 +1,4375 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TRC20_DETAIL_FIXTURE = exports.TRANSACTION_DETAIL_FIXTURE = exports.TRC20_FIXTURE = exports.TRANSACTION_FIXTURE = void 0;
|
|
4
|
+
exports.TRANSACTION_FIXTURE = {
|
|
5
|
+
data: [
|
|
6
|
+
{
|
|
7
|
+
ret: [
|
|
8
|
+
{
|
|
9
|
+
contractRet: "SUCCESS",
|
|
10
|
+
fee: 0,
|
|
11
|
+
},
|
|
12
|
+
],
|
|
13
|
+
signature: [
|
|
14
|
+
"c1c0b1ad18f56248ebc6820c611cd65683cef6b5deed8002246cc00df7e79f9f73d48c35b8c2e41694ef23c8020ab8c578c0aa57b7e079683f322e45c88b0e0700",
|
|
15
|
+
],
|
|
16
|
+
txID: "47086db397eac45d2fe7dacedcb6f77267d6895dce645210e495e64f8a2a7910",
|
|
17
|
+
net_usage: 265,
|
|
18
|
+
raw_data_hex: "0a02fdf622084cd898aed8ce5d1440f0d2ccf1fd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15419b3281a60ab7a44f351ef2896c653f134972ad2212154105cc125604448afeb6867eb688efb7e80411d57a1805709c91c9f1fd31",
|
|
19
|
+
net_fee: 0,
|
|
20
|
+
energy_usage: 0,
|
|
21
|
+
blockNumber: 62258698,
|
|
22
|
+
block_timestamp: 1717419792000,
|
|
23
|
+
energy_fee: 0,
|
|
24
|
+
energy_usage_total: 0,
|
|
25
|
+
raw_data: {
|
|
26
|
+
contract: [
|
|
27
|
+
{
|
|
28
|
+
parameter: {
|
|
29
|
+
value: {
|
|
30
|
+
amount: 5,
|
|
31
|
+
owner_address: "419b3281a60ab7a44f351ef2896c653f134972ad22",
|
|
32
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
33
|
+
},
|
|
34
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
35
|
+
},
|
|
36
|
+
type: "TransferContract",
|
|
37
|
+
},
|
|
38
|
+
],
|
|
39
|
+
ref_block_bytes: "fdf6",
|
|
40
|
+
ref_block_hash: "4cd898aed8ce5d14",
|
|
41
|
+
expiration: 1717419846000,
|
|
42
|
+
timestamp: 1717419788444,
|
|
43
|
+
},
|
|
44
|
+
internal_transactions: [],
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
ret: [
|
|
48
|
+
{
|
|
49
|
+
contractRet: "SUCCESS",
|
|
50
|
+
fee: 0,
|
|
51
|
+
},
|
|
52
|
+
],
|
|
53
|
+
signature: [
|
|
54
|
+
"128c28c7f1229e532c93d6b8cf7697f35604e00f3f57c590df48f73df4ae176521963f224457a7f176752fa1f6832f95760799050c9b8aa489f1e51db14d53ed01",
|
|
55
|
+
],
|
|
56
|
+
txID: "37c2bfbd2324e68588745ff34de0cc64c9ce6704e52ebee31410617e1c99e38d",
|
|
57
|
+
net_usage: 265,
|
|
58
|
+
raw_data_hex: "0a02fdf42208af4cc71c5b5c08f04080a4ccf1fd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15412d499c019736e436558265952866ae36353b6d0412154105cc125604448afeb6867eb688efb7e80411d57a18017094e9c8f1fd31",
|
|
59
|
+
net_fee: 0,
|
|
60
|
+
energy_usage: 0,
|
|
61
|
+
blockNumber: 62258696,
|
|
62
|
+
block_timestamp: 1717419786000,
|
|
63
|
+
energy_fee: 0,
|
|
64
|
+
energy_usage_total: 0,
|
|
65
|
+
raw_data: {
|
|
66
|
+
contract: [
|
|
67
|
+
{
|
|
68
|
+
parameter: {
|
|
69
|
+
value: {
|
|
70
|
+
amount: 1,
|
|
71
|
+
owner_address: "412d499c019736e436558265952866ae36353b6d04",
|
|
72
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
73
|
+
},
|
|
74
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
75
|
+
},
|
|
76
|
+
type: "TransferContract",
|
|
77
|
+
},
|
|
78
|
+
],
|
|
79
|
+
ref_block_bytes: "fdf4",
|
|
80
|
+
ref_block_hash: "af4cc71c5b5c08f0",
|
|
81
|
+
expiration: 1717419840000,
|
|
82
|
+
timestamp: 1717419783316,
|
|
83
|
+
},
|
|
84
|
+
internal_transactions: [],
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
ret: [
|
|
88
|
+
{
|
|
89
|
+
contractRet: "SUCCESS",
|
|
90
|
+
fee: 0,
|
|
91
|
+
},
|
|
92
|
+
],
|
|
93
|
+
signature: [
|
|
94
|
+
"e9deba28c868bf43795b53833bfc21918abfa0051df470e00bfbbd1d5e81346fbc24d3b47e5a15e11f77d266cf147f42d9a99cdfa2bbb3d7b3fa1b0f4a14550a00",
|
|
95
|
+
],
|
|
96
|
+
txID: "3de7821163ac008e1760cd1e2596f927af679510f784bdb4249580f946e805cd",
|
|
97
|
+
net_usage: 265,
|
|
98
|
+
raw_data_hex: "0a02fde92208e9b4e926866fbb004098a2caf1fd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15414e4dad8fc2b32471f7499d8889ff43fd78d34f9112154105cc125604448afeb6867eb688efb7e80411d57a180170f5e2c6f1fd31",
|
|
99
|
+
net_fee: 0,
|
|
100
|
+
energy_usage: 0,
|
|
101
|
+
blockNumber: 62258685,
|
|
102
|
+
block_timestamp: 1717419753000,
|
|
103
|
+
energy_fee: 0,
|
|
104
|
+
energy_usage_total: 0,
|
|
105
|
+
raw_data: {
|
|
106
|
+
contract: [
|
|
107
|
+
{
|
|
108
|
+
parameter: {
|
|
109
|
+
value: {
|
|
110
|
+
amount: 1,
|
|
111
|
+
owner_address: "414e4dad8fc2b32471f7499d8889ff43fd78d34f91",
|
|
112
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
113
|
+
},
|
|
114
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
115
|
+
},
|
|
116
|
+
type: "TransferContract",
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
ref_block_bytes: "fde9",
|
|
120
|
+
ref_block_hash: "e9b4e926866fbb00",
|
|
121
|
+
expiration: 1717419807000,
|
|
122
|
+
timestamp: 1717419749749,
|
|
123
|
+
},
|
|
124
|
+
internal_transactions: [],
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
ret: [
|
|
128
|
+
{
|
|
129
|
+
contractRet: "SUCCESS",
|
|
130
|
+
fee: 0,
|
|
131
|
+
},
|
|
132
|
+
],
|
|
133
|
+
signature: [
|
|
134
|
+
"4a3fd2d2ef561c8d9ecfd7733a3ab5a5d4a7a52ea3482d5a8a12d5e44c111ee4502d74d77c4b961d3a33bb88b8be8ab2be4e01b6e8db13957fbc4e73171d5d1601",
|
|
135
|
+
],
|
|
136
|
+
txID: "37966e8d22d5f5e0b21af47ec364562d88d883000cc1d92192acb1109b48db26",
|
|
137
|
+
net_usage: 265,
|
|
138
|
+
raw_data_hex: "0a02fde42208a58d29086d4fa61b4080adc9f1fd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154197d11943acd1fe8836533cce07146816c7421a2812154105cc125604448afeb6867eb688efb7e80411d57a180570ece8c5f1fd31",
|
|
139
|
+
net_fee: 0,
|
|
140
|
+
energy_usage: 0,
|
|
141
|
+
blockNumber: 62258680,
|
|
142
|
+
block_timestamp: 1717419738000,
|
|
143
|
+
energy_fee: 0,
|
|
144
|
+
energy_usage_total: 0,
|
|
145
|
+
raw_data: {
|
|
146
|
+
contract: [
|
|
147
|
+
{
|
|
148
|
+
parameter: {
|
|
149
|
+
value: {
|
|
150
|
+
amount: 5,
|
|
151
|
+
owner_address: "4197d11943acd1fe8836533cce07146816c7421a28",
|
|
152
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
153
|
+
},
|
|
154
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
155
|
+
},
|
|
156
|
+
type: "TransferContract",
|
|
157
|
+
},
|
|
158
|
+
],
|
|
159
|
+
ref_block_bytes: "fde4",
|
|
160
|
+
ref_block_hash: "a58d29086d4fa61b",
|
|
161
|
+
expiration: 1717419792000,
|
|
162
|
+
timestamp: 1717419734124,
|
|
163
|
+
},
|
|
164
|
+
internal_transactions: [],
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
ret: [
|
|
168
|
+
{
|
|
169
|
+
contractRet: "SUCCESS",
|
|
170
|
+
fee: 1100000,
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
signature: [
|
|
174
|
+
"a3cccbc84cffff009eaddb091228dba7ef438e8b3bb20db99589425a0da036a52ef0a1d29b99f8f73a48472cdaf88bfcf25d7d00ae4988b89804dc7173482f7501",
|
|
175
|
+
],
|
|
176
|
+
txID: "b0b68ea41e7b46f06196ea0ff47837afe821f985eb966a4915eb3809ac893461",
|
|
177
|
+
net_usage: 0,
|
|
178
|
+
raw_data_hex: "0a02fddc22083b99310ce713c98f4080c1ecf1fd315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a154105cc125604448afeb6867eb688efb7e80411d57a121541f03c5fb459d4f746ff01692b940c5a8a01480db11880c2d72f70beaec4f1fd31",
|
|
179
|
+
net_fee: 100000,
|
|
180
|
+
energy_usage: 0,
|
|
181
|
+
blockNumber: 62258673,
|
|
182
|
+
block_timestamp: 1717419717000,
|
|
183
|
+
energy_fee: 0,
|
|
184
|
+
energy_usage_total: 0,
|
|
185
|
+
raw_data: {
|
|
186
|
+
contract: [
|
|
187
|
+
{
|
|
188
|
+
parameter: {
|
|
189
|
+
value: {
|
|
190
|
+
amount: 100000000,
|
|
191
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
192
|
+
to_address: "41f03c5fb459d4f746ff01692b940c5a8a01480db1",
|
|
193
|
+
},
|
|
194
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
195
|
+
},
|
|
196
|
+
type: "TransferContract",
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
ref_block_bytes: "fddc",
|
|
200
|
+
ref_block_hash: "3b99310ce713c98f",
|
|
201
|
+
expiration: 1717420368000,
|
|
202
|
+
timestamp: 1717419710270,
|
|
203
|
+
},
|
|
204
|
+
internal_transactions: [],
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
ret: [
|
|
208
|
+
{
|
|
209
|
+
contractRet: "SUCCESS",
|
|
210
|
+
fee: 0,
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
signature: [
|
|
214
|
+
"46694e8ed51caa6249c0f949152d2717b4d84d47270e656100e0e65ee467ab773da3304fbf400958bf9ef10306a8539061393ebc5782ed03c1ca7d826bfc3b9000",
|
|
215
|
+
],
|
|
216
|
+
txID: "ab5fe577de8119b6148aefcadd97722ff7d231ba004604a464118e7561c30b08",
|
|
217
|
+
net_usage: 265,
|
|
218
|
+
raw_data_hex: "0a02295222084e09bdd07efb4d784090e9dfcef9315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541cd55bd0097b594eae3acca01c824bb68b79ab7d512154105cc125604448afeb6867eb688efb7e80411d57a180570d2acdccef931",
|
|
219
|
+
net_fee: 0,
|
|
220
|
+
energy_usage: 0,
|
|
221
|
+
blockNumber: 61876582,
|
|
222
|
+
block_timestamp: 1716272964000,
|
|
223
|
+
energy_fee: 0,
|
|
224
|
+
energy_usage_total: 0,
|
|
225
|
+
raw_data: {
|
|
226
|
+
contract: [
|
|
227
|
+
{
|
|
228
|
+
parameter: {
|
|
229
|
+
value: {
|
|
230
|
+
amount: 5,
|
|
231
|
+
owner_address: "41cd55bd0097b594eae3acca01c824bb68b79ab7d5",
|
|
232
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
233
|
+
},
|
|
234
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
235
|
+
},
|
|
236
|
+
type: "TransferContract",
|
|
237
|
+
},
|
|
238
|
+
],
|
|
239
|
+
ref_block_bytes: "2952",
|
|
240
|
+
ref_block_hash: "4e09bdd07efb4d78",
|
|
241
|
+
expiration: 1716273018000,
|
|
242
|
+
timestamp: 1716272961106,
|
|
243
|
+
},
|
|
244
|
+
internal_transactions: [],
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
ret: [
|
|
248
|
+
{
|
|
249
|
+
contractRet: "SUCCESS",
|
|
250
|
+
fee: 0,
|
|
251
|
+
},
|
|
252
|
+
],
|
|
253
|
+
signature: [
|
|
254
|
+
"5eff5b9f892aa42a63e3a93b6eb7ddcaf724d6d2a8ae83edb6f69508b55516d511cf7504fd2c167acb0b9f6a83560661aa74140aa9fb7a653eb9af52374982b600",
|
|
255
|
+
],
|
|
256
|
+
txID: "2e8712749bbc844d6b19bd8c4855606d05bed75ab2a9770e898aca5dfb583a1c",
|
|
257
|
+
net_usage: 265,
|
|
258
|
+
raw_data_hex: "0a0229512208d9cb06ead9252c2440d8d1dfcef9315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15410efad4666a9a71be964a35c3afd6435dd6c1d8fd12154105cc125604448afeb6867eb688efb7e80411d57a1801709a85dccef931",
|
|
259
|
+
net_fee: 0,
|
|
260
|
+
energy_usage: 0,
|
|
261
|
+
blockNumber: 61876580,
|
|
262
|
+
block_timestamp: 1716272958000,
|
|
263
|
+
energy_fee: 0,
|
|
264
|
+
energy_usage_total: 0,
|
|
265
|
+
raw_data: {
|
|
266
|
+
contract: [
|
|
267
|
+
{
|
|
268
|
+
parameter: {
|
|
269
|
+
value: {
|
|
270
|
+
amount: 1,
|
|
271
|
+
owner_address: "410efad4666a9a71be964a35c3afd6435dd6c1d8fd",
|
|
272
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
273
|
+
},
|
|
274
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
275
|
+
},
|
|
276
|
+
type: "TransferContract",
|
|
277
|
+
},
|
|
278
|
+
],
|
|
279
|
+
ref_block_bytes: "2951",
|
|
280
|
+
ref_block_hash: "d9cb06ead9252c24",
|
|
281
|
+
expiration: 1716273015000,
|
|
282
|
+
timestamp: 1716272956058,
|
|
283
|
+
},
|
|
284
|
+
internal_transactions: [],
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
ret: [
|
|
288
|
+
{
|
|
289
|
+
contractRet: "SUCCESS",
|
|
290
|
+
fee: 0,
|
|
291
|
+
},
|
|
292
|
+
],
|
|
293
|
+
signature: [
|
|
294
|
+
"74f4f6c98b412ee5b0689e34c7434c5f55ac0a228da5abfc6fe03cae21c273aa27fba3aa70eb081604b4438d9615bd30f426705299b1c42f73b4a381dbb55b0201",
|
|
295
|
+
],
|
|
296
|
+
txID: "adc3f1c4cf23d4adfcf25d3cdae5378d86a209b7b9d49d69db47cae7f838c5f0",
|
|
297
|
+
net_usage: 267,
|
|
298
|
+
raw_data_hex: "0a0229382208d1bf54ec9e8dec0140a0d7ffcef9315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f371880897a7085b5d7cef931",
|
|
299
|
+
net_fee: 0,
|
|
300
|
+
energy_usage: 0,
|
|
301
|
+
blockNumber: 61876557,
|
|
302
|
+
block_timestamp: 1716272889000,
|
|
303
|
+
energy_fee: 0,
|
|
304
|
+
energy_usage_total: 0,
|
|
305
|
+
raw_data: {
|
|
306
|
+
contract: [
|
|
307
|
+
{
|
|
308
|
+
parameter: {
|
|
309
|
+
value: {
|
|
310
|
+
amount: 2000000,
|
|
311
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
312
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
313
|
+
},
|
|
314
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
315
|
+
},
|
|
316
|
+
type: "TransferContract",
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
ref_block_bytes: "2938",
|
|
320
|
+
ref_block_hash: "d1bf54ec9e8dec01",
|
|
321
|
+
expiration: 1716273540000,
|
|
322
|
+
timestamp: 1716272880261,
|
|
323
|
+
},
|
|
324
|
+
internal_transactions: [],
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
ret: [
|
|
328
|
+
{
|
|
329
|
+
contractRet: "SUCCESS",
|
|
330
|
+
fee: 0,
|
|
331
|
+
},
|
|
332
|
+
],
|
|
333
|
+
signature: [
|
|
334
|
+
"adb9977af42be2634244b404c1ad0c3e15f065f76107313780bc594a18c455496ab7d5af43cc0db9a68427a08ba9f0b704dc68ba8f93180a6e7c860f39076f8400",
|
|
335
|
+
],
|
|
336
|
+
txID: "0f9151ed85e6a49c063dc9fc51c90c2cbc35b926b87c4018383dd7677b59d876",
|
|
337
|
+
net_usage: 265,
|
|
338
|
+
raw_data_hex: "0a02865622088e37d7d25957e32840f8cabc8ce6315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15413b6688cfdb07824293e00a12c7ba6c3305af51cb12154105cc125604448afeb6867eb688efb7e80411d57a180470cc83b98ce631",
|
|
339
|
+
net_fee: 0,
|
|
340
|
+
energy_usage: 0,
|
|
341
|
+
blockNumber: 60130921,
|
|
342
|
+
block_timestamp: 1711033698000,
|
|
343
|
+
energy_fee: 0,
|
|
344
|
+
energy_usage_total: 0,
|
|
345
|
+
raw_data: {
|
|
346
|
+
contract: [
|
|
347
|
+
{
|
|
348
|
+
parameter: {
|
|
349
|
+
value: {
|
|
350
|
+
amount: 4,
|
|
351
|
+
owner_address: "413b6688cfdb07824293e00a12c7ba6c3305af51cb",
|
|
352
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
353
|
+
},
|
|
354
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
355
|
+
},
|
|
356
|
+
type: "TransferContract",
|
|
357
|
+
},
|
|
358
|
+
],
|
|
359
|
+
ref_block_bytes: "8656",
|
|
360
|
+
ref_block_hash: "8e37d7d25957e328",
|
|
361
|
+
expiration: 1711033755000,
|
|
362
|
+
timestamp: 1711033696716,
|
|
363
|
+
},
|
|
364
|
+
internal_transactions: [],
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
ret: [
|
|
368
|
+
{
|
|
369
|
+
contractRet: "SUCCESS",
|
|
370
|
+
fee: 0,
|
|
371
|
+
},
|
|
372
|
+
],
|
|
373
|
+
signature: [
|
|
374
|
+
"3ee357ef74703e939fbe3619493807375a4cc81d2505c56f53912f3c2dd81dea7ca251dde4fbc78238467cf78143a8e6e7ea3c569fecd3926f7fae84f4fbe4e401",
|
|
375
|
+
],
|
|
376
|
+
txID: "ba104de7af21648e2803d18e7045f3184f6bc6472532990480577837f56f747c",
|
|
377
|
+
net_usage: 265,
|
|
378
|
+
raw_data_hex: "0a02863f2208c9e76b5b49fd2be640f0afb88ce6315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541479b16209b5cb31a9b88d95436a7ff2f943b23bb12154105cc125604448afeb6867eb688efb7e80411d57a180570b8f1b48ce631",
|
|
379
|
+
net_fee: 0,
|
|
380
|
+
energy_usage: 0,
|
|
381
|
+
blockNumber: 60130899,
|
|
382
|
+
block_timestamp: 1711033632000,
|
|
383
|
+
energy_fee: 0,
|
|
384
|
+
energy_usage_total: 0,
|
|
385
|
+
raw_data: {
|
|
386
|
+
contract: [
|
|
387
|
+
{
|
|
388
|
+
parameter: {
|
|
389
|
+
value: {
|
|
390
|
+
amount: 5,
|
|
391
|
+
owner_address: "41479b16209b5cb31a9b88d95436a7ff2f943b23bb",
|
|
392
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
393
|
+
},
|
|
394
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
395
|
+
},
|
|
396
|
+
type: "TransferContract",
|
|
397
|
+
},
|
|
398
|
+
],
|
|
399
|
+
ref_block_bytes: "863f",
|
|
400
|
+
ref_block_hash: "c9e76b5b49fd2be6",
|
|
401
|
+
expiration: 1711033686000,
|
|
402
|
+
timestamp: 1711033628856,
|
|
403
|
+
},
|
|
404
|
+
internal_transactions: [],
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
ret: [
|
|
408
|
+
{
|
|
409
|
+
contractRet: "SUCCESS",
|
|
410
|
+
fee: 0,
|
|
411
|
+
},
|
|
412
|
+
],
|
|
413
|
+
signature: [
|
|
414
|
+
"f639fcb294bdc60cb0dde4de9c63b6e433114a2728075b28c5c310c941de361c64036a06d644c272b630ea2af6da7fb60426a706fe344588543f429b01e37fd300",
|
|
415
|
+
],
|
|
416
|
+
txID: "ad39fd85c219c8f94cc9b4597c97f8019c6f4bcfed25cccbe5d35be3b59b3d0c",
|
|
417
|
+
net_usage: 267,
|
|
418
|
+
raw_data_hex: "0a02863b22089459842f9a12704e40d0a1dc8ce6315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718c0843d70fe90b48ce631",
|
|
419
|
+
net_fee: 0,
|
|
420
|
+
energy_usage: 0,
|
|
421
|
+
blockNumber: 60130896,
|
|
422
|
+
block_timestamp: 1711033623000,
|
|
423
|
+
energy_fee: 0,
|
|
424
|
+
energy_usage_total: 0,
|
|
425
|
+
raw_data: {
|
|
426
|
+
contract: [
|
|
427
|
+
{
|
|
428
|
+
parameter: {
|
|
429
|
+
value: {
|
|
430
|
+
amount: 1000000,
|
|
431
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
432
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
433
|
+
},
|
|
434
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
435
|
+
},
|
|
436
|
+
type: "TransferContract",
|
|
437
|
+
},
|
|
438
|
+
],
|
|
439
|
+
ref_block_bytes: "863b",
|
|
440
|
+
ref_block_hash: "9459842f9a12704e",
|
|
441
|
+
expiration: 1711034274000,
|
|
442
|
+
timestamp: 1711033616510,
|
|
443
|
+
},
|
|
444
|
+
internal_transactions: [],
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
ret: [
|
|
448
|
+
{
|
|
449
|
+
contractRet: "SUCCESS",
|
|
450
|
+
fee: 0,
|
|
451
|
+
},
|
|
452
|
+
],
|
|
453
|
+
signature: [
|
|
454
|
+
"fe1bf4d1099e90b98f21992a6eedb53fcd165ef7c825e1013c668d5303ca7c16324ce81cedb2a6bef43acc8527a46db335b8dcb4199edfef67683c613d98bb1e01",
|
|
455
|
+
],
|
|
456
|
+
txID: "10a748b856b46356ed8d7ae96f2b540dd40870f073981689c2f758e3359bbc94",
|
|
457
|
+
net_usage: 252,
|
|
458
|
+
raw_data_hex: "0a0280b9220863e75a2a561115d940a0da8791e3315a59083612550a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e63655632436f6e7472616374121d0a154105cc125604448afeb6867eb688efb7e80411d57a10c0843d18017085978491e331",
|
|
459
|
+
net_fee: 0,
|
|
460
|
+
energy_usage: 0,
|
|
461
|
+
blockNumber: 59867342,
|
|
462
|
+
block_timestamp: 1710238017000,
|
|
463
|
+
energy_fee: 0,
|
|
464
|
+
energy_usage_total: 0,
|
|
465
|
+
raw_data: {
|
|
466
|
+
contract: [
|
|
467
|
+
{
|
|
468
|
+
parameter: {
|
|
469
|
+
value: {
|
|
470
|
+
resource: "ENERGY",
|
|
471
|
+
frozen_balance: 1000000,
|
|
472
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
473
|
+
},
|
|
474
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceV2Contract",
|
|
475
|
+
},
|
|
476
|
+
type: "FreezeBalanceV2Contract",
|
|
477
|
+
},
|
|
478
|
+
],
|
|
479
|
+
ref_block_bytes: "80b9",
|
|
480
|
+
ref_block_hash: "63e75a2a561115d9",
|
|
481
|
+
expiration: 1710238068000,
|
|
482
|
+
timestamp: 1710238010245,
|
|
483
|
+
},
|
|
484
|
+
internal_transactions: [],
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
ret: [
|
|
488
|
+
{
|
|
489
|
+
contractRet: "SUCCESS",
|
|
490
|
+
fee: 0,
|
|
491
|
+
},
|
|
492
|
+
],
|
|
493
|
+
signature: [
|
|
494
|
+
"0489edb9b57e097ae30c85021dca62f8f665ef30e9c623e5f74c1386e5629b9f5cf8d16e1bddd6510e4346bfbfa15c493716ac9e876d451b0afe03ddf8e2614901",
|
|
495
|
+
],
|
|
496
|
+
txID: "f5c9797248fe446157d089404c6d25da68b1c33ccd4d7c213eb4c603d014411c",
|
|
497
|
+
net_usage: 279,
|
|
498
|
+
raw_data_hex: "0a022946220859d63421af64447d40b8bdf1f0e2315a73083a126f0a37747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e556e44656c65676174655265736f75726365436f6e747261637412340a154105cc125604448afeb6867eb688efb7e80411d57a100118c0843d221541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3770c6ffedf0e231",
|
|
499
|
+
net_fee: 0,
|
|
500
|
+
energy_usage: 0,
|
|
501
|
+
blockNumber: 59844955,
|
|
502
|
+
block_timestamp: 1710170544000,
|
|
503
|
+
energy_fee: 0,
|
|
504
|
+
energy_usage_total: 0,
|
|
505
|
+
raw_data: {
|
|
506
|
+
contract: [
|
|
507
|
+
{
|
|
508
|
+
parameter: {
|
|
509
|
+
value: {
|
|
510
|
+
balance: 1000000,
|
|
511
|
+
resource: "ENERGY",
|
|
512
|
+
receiver_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
513
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
514
|
+
},
|
|
515
|
+
type_url: "type.googleapis.com/protocol.UnDelegateResourceContract",
|
|
516
|
+
},
|
|
517
|
+
type: "UnDelegateResourceContract",
|
|
518
|
+
},
|
|
519
|
+
],
|
|
520
|
+
ref_block_bytes: "2946",
|
|
521
|
+
ref_block_hash: "59d63421af64447d",
|
|
522
|
+
expiration: 1710170595000,
|
|
523
|
+
timestamp: 1710170537926,
|
|
524
|
+
},
|
|
525
|
+
internal_transactions: [],
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
ret: [
|
|
529
|
+
{
|
|
530
|
+
contractRet: "SUCCESS",
|
|
531
|
+
fee: 0,
|
|
532
|
+
},
|
|
533
|
+
],
|
|
534
|
+
signature: [
|
|
535
|
+
"4285b3ce5ceb97599c554426245c0d62572bd0157d5b0df598786f7d4cec80112d34faca6e9149df832d0b4e285804ea74afa40cc85c84ca2cd708193365d4e600",
|
|
536
|
+
],
|
|
537
|
+
txID: "ea4799c792746d195265f2a85c60eb9090dd5387de591c55a7004e8b8defb079",
|
|
538
|
+
net_usage: 326,
|
|
539
|
+
raw_data_hex: "0a02b45722086d3350b5486c3cf34098f4a2e8e1315aa1010804129c010a30747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e566f74655769746e657373436f6e747261637412680a154105cc125604448afeb6867eb688efb7e80411d57a12190a154132fe6e6706591420655feb0c3b0436864aaf05e7100c12190a154162398d516b555ac64af24416e05c199c01823048100c12190a15411c8163d2a981b90481dcc8ca34c0f837b3305bc6100b70aca59fe8e131",
|
|
540
|
+
net_fee: 0,
|
|
541
|
+
energy_usage: 0,
|
|
542
|
+
blockNumber: 59749488,
|
|
543
|
+
block_timestamp: 1709884056000,
|
|
544
|
+
energy_fee: 0,
|
|
545
|
+
energy_usage_total: 0,
|
|
546
|
+
raw_data: {
|
|
547
|
+
contract: [
|
|
548
|
+
{
|
|
549
|
+
parameter: {
|
|
550
|
+
value: {
|
|
551
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
552
|
+
votes: [
|
|
553
|
+
{
|
|
554
|
+
vote_address: "4132fe6e6706591420655feb0c3b0436864aaf05e7",
|
|
555
|
+
vote_count: 12,
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
vote_address: "4162398d516b555ac64af24416e05c199c01823048",
|
|
559
|
+
vote_count: 12,
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
vote_address: "411c8163d2a981b90481dcc8ca34c0f837b3305bc6",
|
|
563
|
+
vote_count: 11,
|
|
564
|
+
},
|
|
565
|
+
],
|
|
566
|
+
},
|
|
567
|
+
type_url: "type.googleapis.com/protocol.VoteWitnessContract",
|
|
568
|
+
},
|
|
569
|
+
type: "VoteWitnessContract",
|
|
570
|
+
},
|
|
571
|
+
],
|
|
572
|
+
ref_block_bytes: "b457",
|
|
573
|
+
ref_block_hash: "6d3350b5486c3cf3",
|
|
574
|
+
expiration: 1709884095000,
|
|
575
|
+
timestamp: 1709884035756,
|
|
576
|
+
},
|
|
577
|
+
internal_transactions: [],
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
ret: [
|
|
581
|
+
{
|
|
582
|
+
contractRet: "SUCCESS",
|
|
583
|
+
fee: 0,
|
|
584
|
+
},
|
|
585
|
+
],
|
|
586
|
+
signature: [
|
|
587
|
+
"35dc9383d0ec66775260e15c24f61b8e05c4f293aab9f1e9ce8927292feac5b911bdf6841988c9b99ef86bc585e42d72658b13de96889f1b23cd9b85420aeda701",
|
|
588
|
+
],
|
|
589
|
+
txID: "912a71cbdd2203cb84da1964995743178e7e18f073b7229502ecd7b7d3ca5cb2",
|
|
590
|
+
net_usage: 265,
|
|
591
|
+
raw_data_hex: "0a02302b22084a7517bfa320ef554090bbdef4d7315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154122c44e3cfae3472c6cc4bd7130fff779785a57d712154105cc125604448afeb6867eb688efb7e80411d57a180170a0eedaf4d731",
|
|
592
|
+
net_fee: 0,
|
|
593
|
+
energy_usage: 0,
|
|
594
|
+
blockNumber: 58863678,
|
|
595
|
+
block_timestamp: 1707225825000,
|
|
596
|
+
energy_fee: 0,
|
|
597
|
+
energy_usage_total: 0,
|
|
598
|
+
raw_data: {
|
|
599
|
+
contract: [
|
|
600
|
+
{
|
|
601
|
+
parameter: {
|
|
602
|
+
value: {
|
|
603
|
+
amount: 1,
|
|
604
|
+
owner_address: "4122c44e3cfae3472c6cc4bd7130fff779785a57d7",
|
|
605
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
606
|
+
},
|
|
607
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
608
|
+
},
|
|
609
|
+
type: "TransferContract",
|
|
610
|
+
},
|
|
611
|
+
],
|
|
612
|
+
ref_block_bytes: "302b",
|
|
613
|
+
ref_block_hash: "4a7517bfa320ef55",
|
|
614
|
+
expiration: 1707225882000,
|
|
615
|
+
timestamp: 1707225823008,
|
|
616
|
+
},
|
|
617
|
+
internal_transactions: [],
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
ret: [
|
|
621
|
+
{
|
|
622
|
+
contractRet: "SUCCESS",
|
|
623
|
+
fee: 0,
|
|
624
|
+
},
|
|
625
|
+
],
|
|
626
|
+
signature: [
|
|
627
|
+
"2ceb3edea6c4bcafeba0a09f9151d5d88a2b9894cef429f99c04b00b76234a8c57e8451ce8aaa1477ec697465b6f83bd9ab2fcfdafb4cc387e255ac7c69ece1401",
|
|
628
|
+
],
|
|
629
|
+
txID: "c61323aad0a68d685ca1466203e1fbd6066b8ed6c02bcfc0f4d97a5f8155591c",
|
|
630
|
+
net_usage: 268,
|
|
631
|
+
raw_data_hex: "0a023011220877d2e9e1964777e640a0a9fef4d7315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a154105cc125604448afeb6867eb688efb7e80411d57a121541fd441d3022d5d02d289cd7056c8bac4169cb904118c096b10270ee9bd6f4d731",
|
|
632
|
+
net_fee: 0,
|
|
633
|
+
energy_usage: 0,
|
|
634
|
+
blockNumber: 58863655,
|
|
635
|
+
block_timestamp: 1707225756000,
|
|
636
|
+
energy_fee: 0,
|
|
637
|
+
energy_usage_total: 0,
|
|
638
|
+
raw_data: {
|
|
639
|
+
contract: [
|
|
640
|
+
{
|
|
641
|
+
parameter: {
|
|
642
|
+
value: {
|
|
643
|
+
amount: 5000000,
|
|
644
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
645
|
+
to_address: "41fd441d3022d5d02d289cd7056c8bac4169cb9041",
|
|
646
|
+
},
|
|
647
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
648
|
+
},
|
|
649
|
+
type: "TransferContract",
|
|
650
|
+
},
|
|
651
|
+
],
|
|
652
|
+
ref_block_bytes: "3011",
|
|
653
|
+
ref_block_hash: "77d2e9e1964777e6",
|
|
654
|
+
expiration: 1707226404000,
|
|
655
|
+
timestamp: 1707225746926,
|
|
656
|
+
},
|
|
657
|
+
internal_transactions: [],
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
ret: [
|
|
661
|
+
{
|
|
662
|
+
contractRet: "SUCCESS",
|
|
663
|
+
fee: 0,
|
|
664
|
+
},
|
|
665
|
+
],
|
|
666
|
+
signature: [
|
|
667
|
+
"566c09a861fda2c12dc09db942aa9faf336befbcf4c27cb370aff087602fc4e316b19236c54c66f54422a52d59b7ff0b95bf7250921f078cb23818960636a9ee01",
|
|
668
|
+
],
|
|
669
|
+
txID: "59a153b8ee2a19b3d5ff56b6180bf87cb02575afb8541c2434b0ed1125a591f8",
|
|
670
|
+
net_usage: 281,
|
|
671
|
+
raw_data_hex: "0a026ec2220802d82c8fce4ec67540c0a3cff2d5315a75080212710a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123b0a07313030323030301215416e3b44b96104b26f84057974a1f0c9880f7c9b131a154105cc125604448afeb6867eb688efb7e80411d57a20a08d0670b88ca7f2d531",
|
|
672
|
+
net_fee: 0,
|
|
673
|
+
energy_usage: 0,
|
|
674
|
+
blockNumber: 58683095,
|
|
675
|
+
block_timestamp: 1706683917000,
|
|
676
|
+
energy_fee: 0,
|
|
677
|
+
energy_usage_total: 0,
|
|
678
|
+
raw_data: {
|
|
679
|
+
contract: [
|
|
680
|
+
{
|
|
681
|
+
parameter: {
|
|
682
|
+
value: {
|
|
683
|
+
amount: 100000,
|
|
684
|
+
asset_name: "1002000",
|
|
685
|
+
owner_address: "416e3b44b96104b26f84057974a1f0c9880f7c9b13",
|
|
686
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
687
|
+
},
|
|
688
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
689
|
+
},
|
|
690
|
+
type: "TransferAssetContract",
|
|
691
|
+
},
|
|
692
|
+
],
|
|
693
|
+
ref_block_bytes: "6ec2",
|
|
694
|
+
ref_block_hash: "02d82c8fce4ec675",
|
|
695
|
+
expiration: 1706684568000,
|
|
696
|
+
timestamp: 1706683909688,
|
|
697
|
+
},
|
|
698
|
+
internal_transactions: [],
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
ret: [
|
|
702
|
+
{
|
|
703
|
+
contractRet: "SUCCESS",
|
|
704
|
+
fee: 0,
|
|
705
|
+
},
|
|
706
|
+
],
|
|
707
|
+
signature: [
|
|
708
|
+
"1e9d1cb65f36fa09b2319ef7e554eafecd90e08f60479958f0e842a46b51b52a71f72b36ebc98985a5778d3790786165418163f8dd2989bcc2b8350be55047a101",
|
|
709
|
+
],
|
|
710
|
+
txID: "128b24a33290789dfce3ae5b5608a94838b73c0b108171f767663844ef199d70",
|
|
711
|
+
net_usage: 265,
|
|
712
|
+
raw_data_hex: "0a02f0d72208b3439ffcf42da05540d0d2d388d4315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541cd55bd0097b594eae3acca01c824bb68b79ab7d512154105cc125604448afeb6867eb688efb7e80411d57a180570f88bd088d431",
|
|
713
|
+
net_fee: 0,
|
|
714
|
+
energy_usage: 0,
|
|
715
|
+
blockNumber: 58519786,
|
|
716
|
+
block_timestamp: 1706193849000,
|
|
717
|
+
energy_fee: 0,
|
|
718
|
+
energy_usage_total: 0,
|
|
719
|
+
raw_data: {
|
|
720
|
+
contract: [
|
|
721
|
+
{
|
|
722
|
+
parameter: {
|
|
723
|
+
value: {
|
|
724
|
+
amount: 5,
|
|
725
|
+
owner_address: "41cd55bd0097b594eae3acca01c824bb68b79ab7d5",
|
|
726
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
727
|
+
},
|
|
728
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
729
|
+
},
|
|
730
|
+
type: "TransferContract",
|
|
731
|
+
},
|
|
732
|
+
],
|
|
733
|
+
ref_block_bytes: "f0d7",
|
|
734
|
+
ref_block_hash: "b3439ffcf42da055",
|
|
735
|
+
expiration: 1706193906000,
|
|
736
|
+
timestamp: 1706193847800,
|
|
737
|
+
},
|
|
738
|
+
internal_transactions: [],
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
ret: [
|
|
742
|
+
{
|
|
743
|
+
contractRet: "SUCCESS",
|
|
744
|
+
fee: 0,
|
|
745
|
+
},
|
|
746
|
+
],
|
|
747
|
+
signature: [
|
|
748
|
+
"21fe4df65ee122d671789ab235c20272ef5f7fccc123fd67d9624e62799916480fb3206895f74246c49eebe808839cf3d4846b1942c8bff35a3658a97653010900",
|
|
749
|
+
],
|
|
750
|
+
txID: "ee16cd911aca27f20c0fdd9311835df095dc88159e196e4feb6cfa95502d2921",
|
|
751
|
+
net_usage: 265,
|
|
752
|
+
raw_data_hex: "0a02f0d622083906e50536f1ac194098bbd388d4315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15416b38c83bef9b9776abe8ed809a794211c637833b12154105cc125604448afeb6867eb688efb7e80411d57a180170f3eccf88d431",
|
|
753
|
+
net_fee: 0,
|
|
754
|
+
energy_usage: 0,
|
|
755
|
+
blockNumber: 58519785,
|
|
756
|
+
block_timestamp: 1706193846000,
|
|
757
|
+
energy_fee: 0,
|
|
758
|
+
energy_usage_total: 0,
|
|
759
|
+
raw_data: {
|
|
760
|
+
contract: [
|
|
761
|
+
{
|
|
762
|
+
parameter: {
|
|
763
|
+
value: {
|
|
764
|
+
amount: 1,
|
|
765
|
+
owner_address: "416b38c83bef9b9776abe8ed809a794211c637833b",
|
|
766
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
767
|
+
},
|
|
768
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
769
|
+
},
|
|
770
|
+
type: "TransferContract",
|
|
771
|
+
},
|
|
772
|
+
],
|
|
773
|
+
ref_block_bytes: "f0d6",
|
|
774
|
+
ref_block_hash: "3906e50536f1ac19",
|
|
775
|
+
expiration: 1706193903000,
|
|
776
|
+
timestamp: 1706193843827,
|
|
777
|
+
},
|
|
778
|
+
internal_transactions: [],
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
ret: [
|
|
782
|
+
{
|
|
783
|
+
contractRet: "SUCCESS",
|
|
784
|
+
fee: 0,
|
|
785
|
+
},
|
|
786
|
+
],
|
|
787
|
+
signature: [
|
|
788
|
+
"6f9a90cc7336fd1e1e0cae01c8f394217d88cadb1f9cbc23361bc4f66acd8e2b27d5b96f2ec930bce468246add4b26e39a1e48768415baf88698a28a96ae427801",
|
|
789
|
+
],
|
|
790
|
+
txID: "ac56a2938c9eb89f6b1ab91543f54d7720b52ac35d93908ea1a21261a79cacce",
|
|
791
|
+
net_usage: 265,
|
|
792
|
+
raw_data_hex: "0a02f0c822083a517273046897ec4088f3d088d4315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541954f95e7b90e6b065abec5683ea15f8c637ab84f12154105cc125604448afeb6867eb688efb7e80411d57a180570e3a2cd88d431",
|
|
793
|
+
net_fee: 0,
|
|
794
|
+
energy_usage: 0,
|
|
795
|
+
blockNumber: 58519771,
|
|
796
|
+
block_timestamp: 1706193804000,
|
|
797
|
+
energy_fee: 0,
|
|
798
|
+
energy_usage_total: 0,
|
|
799
|
+
raw_data: {
|
|
800
|
+
contract: [
|
|
801
|
+
{
|
|
802
|
+
parameter: {
|
|
803
|
+
value: {
|
|
804
|
+
amount: 5,
|
|
805
|
+
owner_address: "41954f95e7b90e6b065abec5683ea15f8c637ab84f",
|
|
806
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
807
|
+
},
|
|
808
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
809
|
+
},
|
|
810
|
+
type: "TransferContract",
|
|
811
|
+
},
|
|
812
|
+
],
|
|
813
|
+
ref_block_bytes: "f0c8",
|
|
814
|
+
ref_block_hash: "3a517273046897ec",
|
|
815
|
+
expiration: 1706193861000,
|
|
816
|
+
timestamp: 1706193801571,
|
|
817
|
+
},
|
|
818
|
+
internal_transactions: [],
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
ret: [
|
|
822
|
+
{
|
|
823
|
+
contractRet: "SUCCESS",
|
|
824
|
+
fee: 0,
|
|
825
|
+
},
|
|
826
|
+
],
|
|
827
|
+
signature: [
|
|
828
|
+
"bcfb9cb5a746bbea742c3e7c1e02998cd0aab8d5753bcc006de3943a363c5990033906e5cf58dd79a8ff8f2032b41149d113c1a9a2903399bae0ad3113e8382301",
|
|
829
|
+
],
|
|
830
|
+
txID: "748867d3e8337d0e32e23b46c00a051911b9111e8521cc3afce6e5ff91792d5a",
|
|
831
|
+
net_usage: 267,
|
|
832
|
+
raw_data_hex: "0a02f0bd22088d876667ca1d163940e0c0f388d4315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f371880897a70f3b6cb88d431",
|
|
833
|
+
net_fee: 0,
|
|
834
|
+
energy_usage: 0,
|
|
835
|
+
blockNumber: 58519762,
|
|
836
|
+
block_timestamp: 1706193777000,
|
|
837
|
+
energy_fee: 0,
|
|
838
|
+
energy_usage_total: 0,
|
|
839
|
+
raw_data: {
|
|
840
|
+
contract: [
|
|
841
|
+
{
|
|
842
|
+
parameter: {
|
|
843
|
+
value: {
|
|
844
|
+
amount: 2000000,
|
|
845
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
846
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
847
|
+
},
|
|
848
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
849
|
+
},
|
|
850
|
+
type: "TransferContract",
|
|
851
|
+
},
|
|
852
|
+
],
|
|
853
|
+
ref_block_bytes: "f0bd",
|
|
854
|
+
ref_block_hash: "8d876667ca1d1639",
|
|
855
|
+
expiration: 1706194428000,
|
|
856
|
+
timestamp: 1706193771379,
|
|
857
|
+
},
|
|
858
|
+
internal_transactions: [],
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
ret: [
|
|
862
|
+
{
|
|
863
|
+
contractRet: "SUCCESS",
|
|
864
|
+
fee: 0,
|
|
865
|
+
},
|
|
866
|
+
],
|
|
867
|
+
signature: [
|
|
868
|
+
"2df18350fad55144c58cb2f189d699ae4ba7ffc24240dbca02c71734c1dc1c3a2caeb49523f16e84cec40c6a856acf957a13c698f7162d16699a73d8c7eea80700",
|
|
869
|
+
],
|
|
870
|
+
txID: "1348b988c9491fb0c20efdce919ada382ba62fecf6172ee6e08f6e15932c1da5",
|
|
871
|
+
net_usage: 265,
|
|
872
|
+
raw_data_hex: "0a02391e2208307eff32bbebdccb4098bbe289d2315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541cd55bd0097b594eae3acca01c824bb68b79ab7d512154105cc125604448afeb6867eb688efb7e80411d57a18037088efde89d231",
|
|
873
|
+
net_fee: 0,
|
|
874
|
+
energy_usage: 0,
|
|
875
|
+
blockNumber: 58341681,
|
|
876
|
+
block_timestamp: 1705659318000,
|
|
877
|
+
energy_fee: 0,
|
|
878
|
+
energy_usage_total: 0,
|
|
879
|
+
raw_data: {
|
|
880
|
+
contract: [
|
|
881
|
+
{
|
|
882
|
+
parameter: {
|
|
883
|
+
value: {
|
|
884
|
+
amount: 3,
|
|
885
|
+
owner_address: "41cd55bd0097b594eae3acca01c824bb68b79ab7d5",
|
|
886
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
887
|
+
},
|
|
888
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
889
|
+
},
|
|
890
|
+
type: "TransferContract",
|
|
891
|
+
},
|
|
892
|
+
],
|
|
893
|
+
ref_block_bytes: "391e",
|
|
894
|
+
ref_block_hash: "307eff32bbebdccb",
|
|
895
|
+
expiration: 1705659375000,
|
|
896
|
+
timestamp: 1705659316104,
|
|
897
|
+
},
|
|
898
|
+
internal_transactions: [],
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
ret: [
|
|
902
|
+
{
|
|
903
|
+
contractRet: "SUCCESS",
|
|
904
|
+
fee: 0,
|
|
905
|
+
},
|
|
906
|
+
],
|
|
907
|
+
signature: [
|
|
908
|
+
"3846e1ae0254bbd1c800a3ea9f33add985a2c02f2dc5473f0ac77e29e18054793c95600d4f9ec7ff15c3ad377f212afa17406b705a8c1e0237b15af9dfeae9d700",
|
|
909
|
+
],
|
|
910
|
+
txID: "96d76c33359b95bb00c9235dc2788f94e36858390983ea7613eb6dd2f6db0d83",
|
|
911
|
+
net_usage: 265,
|
|
912
|
+
raw_data_hex: "0a0239072208e241627bd35015974090a0de89d2315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541e0017498152f63c6e14492149ab9c7807ea4a11b12154105cc125604448afeb6867eb688efb7e80411d57a180570c2e4da89d231",
|
|
913
|
+
net_fee: 0,
|
|
914
|
+
energy_usage: 0,
|
|
915
|
+
blockNumber: 58341659,
|
|
916
|
+
block_timestamp: 1705659252000,
|
|
917
|
+
energy_fee: 0,
|
|
918
|
+
energy_usage_total: 0,
|
|
919
|
+
raw_data: {
|
|
920
|
+
contract: [
|
|
921
|
+
{
|
|
922
|
+
parameter: {
|
|
923
|
+
value: {
|
|
924
|
+
amount: 5,
|
|
925
|
+
owner_address: "41e0017498152f63c6e14492149ab9c7807ea4a11b",
|
|
926
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
927
|
+
},
|
|
928
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
929
|
+
},
|
|
930
|
+
type: "TransferContract",
|
|
931
|
+
},
|
|
932
|
+
],
|
|
933
|
+
ref_block_bytes: "3907",
|
|
934
|
+
ref_block_hash: "e241627bd3501597",
|
|
935
|
+
expiration: 1705659306000,
|
|
936
|
+
timestamp: 1705659249218,
|
|
937
|
+
},
|
|
938
|
+
internal_transactions: [],
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
ret: [
|
|
942
|
+
{
|
|
943
|
+
contractRet: "SUCCESS",
|
|
944
|
+
fee: 0,
|
|
945
|
+
},
|
|
946
|
+
],
|
|
947
|
+
signature: [
|
|
948
|
+
"0316c5028c3ce3b7c944d43aff347a95c8e394f5caa280688568f691502b04834259e210ac129b2c9c91ab1f0e22a3d787fca14a73b9abdae28fa86e98e87f6c00",
|
|
949
|
+
],
|
|
950
|
+
txID: "0aacae11fb791e2bd93630161b1dc6da483b8176b2410700e9b5f8f985f0281d",
|
|
951
|
+
net_usage: 267,
|
|
952
|
+
raw_data_hex: "0a0239042208f5ba70bac6450cf140a8a9828ad2315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718c0843d70979cda89d231",
|
|
953
|
+
net_fee: 0,
|
|
954
|
+
energy_usage: 0,
|
|
955
|
+
blockNumber: 58341657,
|
|
956
|
+
block_timestamp: 1705659246000,
|
|
957
|
+
energy_fee: 0,
|
|
958
|
+
energy_usage_total: 0,
|
|
959
|
+
raw_data: {
|
|
960
|
+
contract: [
|
|
961
|
+
{
|
|
962
|
+
parameter: {
|
|
963
|
+
value: {
|
|
964
|
+
amount: 1000000,
|
|
965
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
966
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
967
|
+
},
|
|
968
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
969
|
+
},
|
|
970
|
+
type: "TransferContract",
|
|
971
|
+
},
|
|
972
|
+
],
|
|
973
|
+
ref_block_bytes: "3904",
|
|
974
|
+
ref_block_hash: "f5ba70bac6450cf1",
|
|
975
|
+
expiration: 1705659897000,
|
|
976
|
+
timestamp: 1705659239959,
|
|
977
|
+
},
|
|
978
|
+
internal_transactions: [],
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
ret: [
|
|
982
|
+
{
|
|
983
|
+
contractRet: "SUCCESS",
|
|
984
|
+
fee: 251000,
|
|
985
|
+
},
|
|
986
|
+
],
|
|
987
|
+
signature: [
|
|
988
|
+
"fa8a403cf816bc21010eb8b77c5dea8bbe82f1112486deaa4a38add2619ecf4b1243b8dc35136e1e90383b074c1761f680451b4e087fd362b12218a9491b1cd300",
|
|
989
|
+
],
|
|
990
|
+
txID: "2ef48ce2ce82a4fafc6e33e666eed66da8ee19798f50cc7715c8a3126fe8f3c3",
|
|
991
|
+
net_usage: 0,
|
|
992
|
+
raw_data_hex: "0a02b4c522087380412d69286ab04090f9c0a6cd315a58083612540a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e63655632436f6e7472616374121c0a154105cc125604448afeb6867eb688efb7e80411d57a10c096b10270b0a4bda6cd31",
|
|
993
|
+
net_fee: 251000,
|
|
994
|
+
energy_usage: 0,
|
|
995
|
+
blockNumber: 57914567,
|
|
996
|
+
block_timestamp: 1704377412000,
|
|
997
|
+
energy_fee: 0,
|
|
998
|
+
energy_usage_total: 0,
|
|
999
|
+
raw_data: {
|
|
1000
|
+
contract: [
|
|
1001
|
+
{
|
|
1002
|
+
parameter: {
|
|
1003
|
+
value: {
|
|
1004
|
+
frozen_balance: 5000000,
|
|
1005
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1006
|
+
},
|
|
1007
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceV2Contract",
|
|
1008
|
+
},
|
|
1009
|
+
type: "FreezeBalanceV2Contract",
|
|
1010
|
+
},
|
|
1011
|
+
],
|
|
1012
|
+
ref_block_bytes: "b4c5",
|
|
1013
|
+
ref_block_hash: "7380412d69286ab0",
|
|
1014
|
+
expiration: 1704377466000,
|
|
1015
|
+
timestamp: 1704377406000,
|
|
1016
|
+
},
|
|
1017
|
+
internal_transactions: [],
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
ret: [
|
|
1021
|
+
{
|
|
1022
|
+
contractRet: "SUCCESS",
|
|
1023
|
+
fee: 277000,
|
|
1024
|
+
},
|
|
1025
|
+
],
|
|
1026
|
+
signature: [
|
|
1027
|
+
"86db2a02a271e2358755aec39195ad1d812943e863e2c2afff2991604d9f4b683db7ce7906f505cedb48fac2e72b099af2bf851c7112f6ef1055a2d68a50f7be01",
|
|
1028
|
+
],
|
|
1029
|
+
txID: "fedc757d4678231b7096e8793345e3c9f98ef148986b806361cd22347081473e",
|
|
1030
|
+
net_usage: 0,
|
|
1031
|
+
raw_data_hex: "0a02b4ac2208d94c2fac7ede80a54098afbca6cd315a710839126d0a35747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e44656c65676174655265736f75726365436f6e747261637412340a154105cc125604448afeb6867eb688efb7e80411d57a100118c0843d221541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3770b8dab8a6cd31",
|
|
1032
|
+
net_fee: 277000,
|
|
1033
|
+
energy_usage: 0,
|
|
1034
|
+
blockNumber: 57914542,
|
|
1035
|
+
block_timestamp: 1704377337000,
|
|
1036
|
+
energy_fee: 0,
|
|
1037
|
+
energy_usage_total: 0,
|
|
1038
|
+
raw_data: {
|
|
1039
|
+
contract: [
|
|
1040
|
+
{
|
|
1041
|
+
parameter: {
|
|
1042
|
+
value: {
|
|
1043
|
+
balance: 1000000,
|
|
1044
|
+
resource: "ENERGY",
|
|
1045
|
+
receiver_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
1046
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1047
|
+
},
|
|
1048
|
+
type_url: "type.googleapis.com/protocol.DelegateResourceContract",
|
|
1049
|
+
},
|
|
1050
|
+
type: "DelegateResourceContract",
|
|
1051
|
+
},
|
|
1052
|
+
],
|
|
1053
|
+
ref_block_bytes: "b4ac",
|
|
1054
|
+
ref_block_hash: "d94c2fac7ede80a5",
|
|
1055
|
+
expiration: 1704377391000,
|
|
1056
|
+
timestamp: 1704377331000,
|
|
1057
|
+
},
|
|
1058
|
+
internal_transactions: [],
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
ret: [
|
|
1062
|
+
{
|
|
1063
|
+
contractRet: "SUCCESS",
|
|
1064
|
+
fee: 0,
|
|
1065
|
+
},
|
|
1066
|
+
],
|
|
1067
|
+
signature: [
|
|
1068
|
+
"11b533b0e030834882fe22847ff6bbcb8dc1efefa310846b353af2f13229c5188a6d732e9919cee6231ef7993d333e3baf59ca43a54fd48ada01776ca6893b3b01",
|
|
1069
|
+
],
|
|
1070
|
+
txID: "0fbf6f20a9929ae3e63aa95a1a6cf5051484ef46851613de4a22ac349b491280",
|
|
1071
|
+
net_usage: 283,
|
|
1072
|
+
raw_data_hex: "0a02b3e222080fbd07d4acafb6a840d8d69aa6cd315a77080212730a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123d0a0731303034393737121541effa38894e57d85c0234c52a37a3357bf9d31f741a154105cc125604448afeb6867eb688efb7e80411d57a208097c68e2170f08397a6cd31",
|
|
1073
|
+
net_fee: 0,
|
|
1074
|
+
energy_usage: 0,
|
|
1075
|
+
blockNumber: 57914357,
|
|
1076
|
+
block_timestamp: 1704376782000,
|
|
1077
|
+
energy_fee: 0,
|
|
1078
|
+
energy_usage_total: 0,
|
|
1079
|
+
raw_data: {
|
|
1080
|
+
contract: [
|
|
1081
|
+
{
|
|
1082
|
+
parameter: {
|
|
1083
|
+
value: {
|
|
1084
|
+
amount: 8888880000,
|
|
1085
|
+
asset_name: "1004977",
|
|
1086
|
+
owner_address: "41effa38894e57d85c0234c52a37a3357bf9d31f74",
|
|
1087
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1088
|
+
},
|
|
1089
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
1090
|
+
},
|
|
1091
|
+
type: "TransferAssetContract",
|
|
1092
|
+
},
|
|
1093
|
+
],
|
|
1094
|
+
ref_block_bytes: "b3e2",
|
|
1095
|
+
ref_block_hash: "0fbd07d4acafb6a8",
|
|
1096
|
+
expiration: 1704376839000,
|
|
1097
|
+
timestamp: 1704376779248,
|
|
1098
|
+
},
|
|
1099
|
+
internal_transactions: [],
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
ret: [
|
|
1103
|
+
{
|
|
1104
|
+
contractRet: "SUCCESS",
|
|
1105
|
+
fee: 0,
|
|
1106
|
+
},
|
|
1107
|
+
],
|
|
1108
|
+
signature: [
|
|
1109
|
+
"2145ca5b57d76446fd88566b31b0a0b5fef734eb82852ae953415ef42b63a3f58427ebdc961a4b020813299338e6a7069502de8df58ad5304e44e324793befcf01",
|
|
1110
|
+
],
|
|
1111
|
+
txID: "5054d6c98756c6f02eed5b3d8c5adc7a67189b0f1c6cd4b3d62ebb1993f5ab78",
|
|
1112
|
+
net_usage: 283,
|
|
1113
|
+
raw_data_hex: "0a02b3e12208bc5088e38f0b5c4740a0bf9aa6cd315a77080212730a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123d0a0731303034393737121541effa38894e57d85c0234c52a37a3357bf9d31f741a154105cc125604448afeb6867eb688efb7e80411d57a208097c68e2170bdf496a6cd31",
|
|
1114
|
+
net_fee: 0,
|
|
1115
|
+
energy_usage: 0,
|
|
1116
|
+
blockNumber: 57914356,
|
|
1117
|
+
block_timestamp: 1704376779000,
|
|
1118
|
+
energy_fee: 0,
|
|
1119
|
+
energy_usage_total: 0,
|
|
1120
|
+
raw_data: {
|
|
1121
|
+
contract: [
|
|
1122
|
+
{
|
|
1123
|
+
parameter: {
|
|
1124
|
+
value: {
|
|
1125
|
+
amount: 8888880000,
|
|
1126
|
+
asset_name: "1004977",
|
|
1127
|
+
owner_address: "41effa38894e57d85c0234c52a37a3357bf9d31f74",
|
|
1128
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1129
|
+
},
|
|
1130
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
1131
|
+
},
|
|
1132
|
+
type: "TransferAssetContract",
|
|
1133
|
+
},
|
|
1134
|
+
],
|
|
1135
|
+
ref_block_bytes: "b3e1",
|
|
1136
|
+
ref_block_hash: "bc5088e38f0b5c47",
|
|
1137
|
+
expiration: 1704376836000,
|
|
1138
|
+
timestamp: 1704376777277,
|
|
1139
|
+
},
|
|
1140
|
+
internal_transactions: [],
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
ret: [
|
|
1144
|
+
{
|
|
1145
|
+
contractRet: "SUCCESS",
|
|
1146
|
+
fee: 0,
|
|
1147
|
+
},
|
|
1148
|
+
],
|
|
1149
|
+
signature: [
|
|
1150
|
+
"ef77b1624deb15bff81b61098b0eea6a69c8582ebcd4ba45cf1a5e268fe8ef0d47594e3545c8008fdfb95f0e8073476790f30cba4e43a51db9da0ccde9cf370101",
|
|
1151
|
+
],
|
|
1152
|
+
txID: "56338c9eb1b79c3740a02fdef8b377d5c85441f320b7af2293b25936a5b3b461",
|
|
1153
|
+
net_usage: 265,
|
|
1154
|
+
raw_data_hex: "0a02b3db220851ea412c7c4b048e40d0b299a6cd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541b059ce130e0fc66c3ddb0cc578c03f35d83d540612154105cc125604448afeb6867eb688efb7e80411d57a180570f8e895a6cd31",
|
|
1155
|
+
net_fee: 0,
|
|
1156
|
+
energy_usage: 0,
|
|
1157
|
+
blockNumber: 57914350,
|
|
1158
|
+
block_timestamp: 1704376761000,
|
|
1159
|
+
energy_fee: 0,
|
|
1160
|
+
energy_usage_total: 0,
|
|
1161
|
+
raw_data: {
|
|
1162
|
+
contract: [
|
|
1163
|
+
{
|
|
1164
|
+
parameter: {
|
|
1165
|
+
value: {
|
|
1166
|
+
amount: 5,
|
|
1167
|
+
owner_address: "41b059ce130e0fc66c3ddb0cc578c03f35d83d5406",
|
|
1168
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1169
|
+
},
|
|
1170
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1171
|
+
},
|
|
1172
|
+
type: "TransferContract",
|
|
1173
|
+
},
|
|
1174
|
+
],
|
|
1175
|
+
ref_block_bytes: "b3db",
|
|
1176
|
+
ref_block_hash: "51ea412c7c4b048e",
|
|
1177
|
+
expiration: 1704376818000,
|
|
1178
|
+
timestamp: 1704376759416,
|
|
1179
|
+
},
|
|
1180
|
+
internal_transactions: [],
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
ret: [
|
|
1184
|
+
{
|
|
1185
|
+
contractRet: "SUCCESS",
|
|
1186
|
+
fee: 0,
|
|
1187
|
+
},
|
|
1188
|
+
],
|
|
1189
|
+
signature: [
|
|
1190
|
+
"45510400f4ebc6582df444f3ac988886f30976da11c81a4b574586959c6336083531d4e572367692d5173cd00cbb931752bad98ae8b079aa5293eace74e7063501",
|
|
1191
|
+
],
|
|
1192
|
+
txID: "1762070707bbbd5c22b1577fc19f585c7a7d84f8c96e9d10210b938423319354",
|
|
1193
|
+
net_usage: 265,
|
|
1194
|
+
raw_data_hex: "0a02b3db220851ea412c7c4b048e40d0b299a6cd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15415138c1d6d5d60b99bbd9ffc01b67468ec406b52a12154105cc125604448afeb6867eb688efb7e80411d57a180470e4e695a6cd31",
|
|
1195
|
+
net_fee: 0,
|
|
1196
|
+
energy_usage: 0,
|
|
1197
|
+
blockNumber: 57914350,
|
|
1198
|
+
block_timestamp: 1704376761000,
|
|
1199
|
+
energy_fee: 0,
|
|
1200
|
+
energy_usage_total: 0,
|
|
1201
|
+
raw_data: {
|
|
1202
|
+
contract: [
|
|
1203
|
+
{
|
|
1204
|
+
parameter: {
|
|
1205
|
+
value: {
|
|
1206
|
+
amount: 4,
|
|
1207
|
+
owner_address: "415138c1d6d5d60b99bbd9ffc01b67468ec406b52a",
|
|
1208
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1209
|
+
},
|
|
1210
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1211
|
+
},
|
|
1212
|
+
type: "TransferContract",
|
|
1213
|
+
},
|
|
1214
|
+
],
|
|
1215
|
+
ref_block_bytes: "b3db",
|
|
1216
|
+
ref_block_hash: "51ea412c7c4b048e",
|
|
1217
|
+
expiration: 1704376818000,
|
|
1218
|
+
timestamp: 1704376759140,
|
|
1219
|
+
},
|
|
1220
|
+
internal_transactions: [],
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
ret: [
|
|
1224
|
+
{
|
|
1225
|
+
contractRet: "SUCCESS",
|
|
1226
|
+
fee: 0,
|
|
1227
|
+
},
|
|
1228
|
+
],
|
|
1229
|
+
signature: [
|
|
1230
|
+
"bd6f383fc9b2f4a5bc042612ba0c265f5d6d4f061c308facfff06810e1b63b0d13bf0674decaaaf6d1d3e2ff621d0a982ae14f38ed5e20d0580f1911a4f88f6600",
|
|
1231
|
+
],
|
|
1232
|
+
txID: "a70df8c38e0e0d283eaacfa95094f33260928101abfe9037725d013f938f4b0e",
|
|
1233
|
+
net_usage: 268,
|
|
1234
|
+
raw_data_hex: "0a02b3d7220833068e9a1719f8ac40b0a4bda6cd315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a15414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e4612154105cc125604448afeb6867eb688efb7e80411d57a1880c2d72f70e89995a6cd31",
|
|
1235
|
+
net_fee: 0,
|
|
1236
|
+
energy_usage: 0,
|
|
1237
|
+
blockNumber: 57914348,
|
|
1238
|
+
block_timestamp: 1704376755000,
|
|
1239
|
+
energy_fee: 0,
|
|
1240
|
+
energy_usage_total: 0,
|
|
1241
|
+
raw_data: {
|
|
1242
|
+
contract: [
|
|
1243
|
+
{
|
|
1244
|
+
parameter: {
|
|
1245
|
+
value: {
|
|
1246
|
+
amount: 100000000,
|
|
1247
|
+
owner_address: "414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e46",
|
|
1248
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1249
|
+
},
|
|
1250
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1251
|
+
},
|
|
1252
|
+
type: "TransferContract",
|
|
1253
|
+
},
|
|
1254
|
+
],
|
|
1255
|
+
ref_block_bytes: "b3d7",
|
|
1256
|
+
ref_block_hash: "33068e9a1719f8ac",
|
|
1257
|
+
expiration: 1704377406000,
|
|
1258
|
+
timestamp: 1704376749288,
|
|
1259
|
+
},
|
|
1260
|
+
internal_transactions: [],
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
ret: [
|
|
1264
|
+
{
|
|
1265
|
+
contractRet: "SUCCESS",
|
|
1266
|
+
fee: 299000,
|
|
1267
|
+
},
|
|
1268
|
+
],
|
|
1269
|
+
signature: [
|
|
1270
|
+
"1c298f464689bbdafbf1a4bd20a14e5a2cdca7730e1306b228264589cc95260e16a529fdd876c2df8b96023039a32b73c708d6ec66d53ad41dcb949ba2aac54d01",
|
|
1271
|
+
],
|
|
1272
|
+
txID: "43d30a73c88482b4ffa5682303e3993fe8f554a23f648a449bc9df29f81e3b45",
|
|
1273
|
+
net_usage: 0,
|
|
1274
|
+
raw_data_hex: "0a02b3c822087754e2c3c6a106b940b8cf92a6cd315a860108041281010a30747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e566f74655769746e657373436f6e7472616374124d0a154105cc125604448afeb6867eb688efb7e80411d57a12190a154162398d516b555ac64af24416e05c199c01823048100212190a154132fe6e6706591420655feb0c3b0436864aaf05e7100270d8fa8ea6cd31",
|
|
1275
|
+
net_fee: 299000,
|
|
1276
|
+
energy_usage: 0,
|
|
1277
|
+
blockNumber: 57914314,
|
|
1278
|
+
block_timestamp: 1704376653000,
|
|
1279
|
+
energy_fee: 0,
|
|
1280
|
+
energy_usage_total: 0,
|
|
1281
|
+
raw_data: {
|
|
1282
|
+
contract: [
|
|
1283
|
+
{
|
|
1284
|
+
parameter: {
|
|
1285
|
+
value: {
|
|
1286
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1287
|
+
votes: [
|
|
1288
|
+
{
|
|
1289
|
+
vote_address: "4162398d516b555ac64af24416e05c199c01823048",
|
|
1290
|
+
vote_count: 2,
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
vote_address: "4132fe6e6706591420655feb0c3b0436864aaf05e7",
|
|
1294
|
+
vote_count: 2,
|
|
1295
|
+
},
|
|
1296
|
+
],
|
|
1297
|
+
},
|
|
1298
|
+
type_url: "type.googleapis.com/protocol.VoteWitnessContract",
|
|
1299
|
+
},
|
|
1300
|
+
type: "VoteWitnessContract",
|
|
1301
|
+
},
|
|
1302
|
+
],
|
|
1303
|
+
ref_block_bytes: "b3c8",
|
|
1304
|
+
ref_block_hash: "7754e2c3c6a106b9",
|
|
1305
|
+
expiration: 1704376707000,
|
|
1306
|
+
timestamp: 1704376647000,
|
|
1307
|
+
},
|
|
1308
|
+
internal_transactions: [],
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
ret: [
|
|
1312
|
+
{
|
|
1313
|
+
contractRet: "SUCCESS",
|
|
1314
|
+
fee: 252000,
|
|
1315
|
+
},
|
|
1316
|
+
],
|
|
1317
|
+
signature: [
|
|
1318
|
+
"5a20d7c19b469d36ef2b2054a69ff79eaa7de9139bb91d2c5f8b5b364c8c9611090867eb412ac94b538a9109f8531436bfb41b46b88e76a37ba50c18c3f142ef00",
|
|
1319
|
+
],
|
|
1320
|
+
txID: "fa715ffebe56be0820818cf3205edd86091e870865e34f0b22eff2aca93972e1",
|
|
1321
|
+
net_usage: 0,
|
|
1322
|
+
raw_data_hex: "0a02b38722087bee749c2e43be3f4080dc86a6cd315a59083712550a36747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e556e667265657a6542616c616e63655632436f6e7472616374121b0a154105cc125604448afeb6867eb688efb7e80411d57a10c0843d70a08783a6cd31",
|
|
1323
|
+
net_fee: 252000,
|
|
1324
|
+
energy_usage: 0,
|
|
1325
|
+
blockNumber: 57914250,
|
|
1326
|
+
block_timestamp: 1704376461000,
|
|
1327
|
+
energy_fee: 0,
|
|
1328
|
+
energy_usage_total: 0,
|
|
1329
|
+
raw_data: {
|
|
1330
|
+
contract: [
|
|
1331
|
+
{
|
|
1332
|
+
parameter: {
|
|
1333
|
+
value: {
|
|
1334
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1335
|
+
unfreeze_balance: 1000000,
|
|
1336
|
+
},
|
|
1337
|
+
type_url: "type.googleapis.com/protocol.UnfreezeBalanceV2Contract",
|
|
1338
|
+
},
|
|
1339
|
+
type: "UnfreezeBalanceV2Contract",
|
|
1340
|
+
},
|
|
1341
|
+
],
|
|
1342
|
+
ref_block_bytes: "b387",
|
|
1343
|
+
ref_block_hash: "7bee749c2e43be3f",
|
|
1344
|
+
expiration: 1704376512000,
|
|
1345
|
+
timestamp: 1704376452000,
|
|
1346
|
+
},
|
|
1347
|
+
internal_transactions: [],
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
ret: [
|
|
1351
|
+
{
|
|
1352
|
+
contractRet: "SUCCESS",
|
|
1353
|
+
fee: 251000,
|
|
1354
|
+
},
|
|
1355
|
+
],
|
|
1356
|
+
signature: [
|
|
1357
|
+
"7041decbe524531f639584267fc0ed92a0eff3b3d4b9f40503ab3c2057d5ce0f22106faf79ebc4d53e11bc4d69c1086f9f3703fe8e401e7514dffe0011f80b6d00",
|
|
1358
|
+
],
|
|
1359
|
+
txID: "0b4923a6963730995913be3c1d27eb06206303702960055d6628ff7ed87f8192",
|
|
1360
|
+
net_usage: 0,
|
|
1361
|
+
raw_data_hex: "0a02b3762208e274a382454bf76140c8cd83a6cd315a58083612540a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e63655632436f6e7472616374121c0a154105cc125604448afeb6867eb688efb7e80411d57a10c0c3930770e8f8ffa5cd31",
|
|
1362
|
+
net_fee: 251000,
|
|
1363
|
+
energy_usage: 0,
|
|
1364
|
+
blockNumber: 57914233,
|
|
1365
|
+
block_timestamp: 1704376410000,
|
|
1366
|
+
energy_fee: 0,
|
|
1367
|
+
energy_usage_total: 0,
|
|
1368
|
+
raw_data: {
|
|
1369
|
+
contract: [
|
|
1370
|
+
{
|
|
1371
|
+
parameter: {
|
|
1372
|
+
value: {
|
|
1373
|
+
frozen_balance: 15000000,
|
|
1374
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1375
|
+
},
|
|
1376
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceV2Contract",
|
|
1377
|
+
},
|
|
1378
|
+
type: "FreezeBalanceV2Contract",
|
|
1379
|
+
},
|
|
1380
|
+
],
|
|
1381
|
+
ref_block_bytes: "b376",
|
|
1382
|
+
ref_block_hash: "e274a382454bf761",
|
|
1383
|
+
expiration: 1704376461000,
|
|
1384
|
+
timestamp: 1704376401000,
|
|
1385
|
+
},
|
|
1386
|
+
internal_transactions: [],
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
ret: [
|
|
1390
|
+
{
|
|
1391
|
+
contractRet: "SUCCESS",
|
|
1392
|
+
fee: 0,
|
|
1393
|
+
},
|
|
1394
|
+
],
|
|
1395
|
+
signature: [
|
|
1396
|
+
"b5a4e9e39652173966bd4d4fb153e4f6dd804892965ae15c83f16a669261f9730b95056d5c8062ba7ebb9b6fff94882e58ddd7b3fa836742eed25954aa90fba600",
|
|
1397
|
+
],
|
|
1398
|
+
txID: "44d43e078c4b37a465390c61e19e75550e579d78c100b8ceb9ec55eb155c5eb5",
|
|
1399
|
+
net_usage: 253,
|
|
1400
|
+
raw_data_hex: "0a02b36b22080af312874f6dba9540e0cb81a6cd315a5a083612560a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e63655632436f6e7472616374121e0a154105cc125604448afeb6867eb688efb7e80411d57a1080ade20418017080f7fda5cd31",
|
|
1401
|
+
net_fee: 0,
|
|
1402
|
+
energy_usage: 0,
|
|
1403
|
+
blockNumber: 57914221,
|
|
1404
|
+
block_timestamp: 1704376374000,
|
|
1405
|
+
energy_fee: 0,
|
|
1406
|
+
energy_usage_total: 0,
|
|
1407
|
+
raw_data: {
|
|
1408
|
+
contract: [
|
|
1409
|
+
{
|
|
1410
|
+
parameter: {
|
|
1411
|
+
value: {
|
|
1412
|
+
resource: "ENERGY",
|
|
1413
|
+
frozen_balance: 10000000,
|
|
1414
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1415
|
+
},
|
|
1416
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceV2Contract",
|
|
1417
|
+
},
|
|
1418
|
+
type: "FreezeBalanceV2Contract",
|
|
1419
|
+
},
|
|
1420
|
+
],
|
|
1421
|
+
ref_block_bytes: "b36b",
|
|
1422
|
+
ref_block_hash: "0af312874f6dba95",
|
|
1423
|
+
expiration: 1704376428000,
|
|
1424
|
+
timestamp: 1704376368000,
|
|
1425
|
+
},
|
|
1426
|
+
internal_transactions: [],
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
ret: [
|
|
1430
|
+
{
|
|
1431
|
+
contractRet: "SUCCESS",
|
|
1432
|
+
fee: 0,
|
|
1433
|
+
},
|
|
1434
|
+
],
|
|
1435
|
+
signature: [
|
|
1436
|
+
"23cd4d29fd771c80e3f6475d7a283112a6dd385112e5635686922ab9a4867bb657563320bc97a32b843bb1719443981d1b2e5a9971477dfcac236ad56d0e340700",
|
|
1437
|
+
],
|
|
1438
|
+
txID: "ae677752299131179e2ad1c72735a49203d6c8cc4b5450a0cf4a9695bc734636",
|
|
1439
|
+
net_usage: 282,
|
|
1440
|
+
raw_data_hex: "0a02b3442208d9b0d2f26a51ef9340c8dffda5cd315a76080212720a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123c0a0731303035303135121541aaab4321df14d43abadd4b43c7969ab0a15966661a154105cc125604448afeb6867eb688efb7e80411d57a20b8acb12a70fd98faa5cd31",
|
|
1441
|
+
net_fee: 0,
|
|
1442
|
+
energy_usage: 0,
|
|
1443
|
+
blockNumber: 57914199,
|
|
1444
|
+
block_timestamp: 1704376308000,
|
|
1445
|
+
energy_fee: 0,
|
|
1446
|
+
energy_usage_total: 0,
|
|
1447
|
+
raw_data: {
|
|
1448
|
+
contract: [
|
|
1449
|
+
{
|
|
1450
|
+
parameter: {
|
|
1451
|
+
value: {
|
|
1452
|
+
amount: 88888888,
|
|
1453
|
+
asset_name: "1005015",
|
|
1454
|
+
owner_address: "41aaab4321df14d43abadd4b43c7969ab0a1596666",
|
|
1455
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1456
|
+
},
|
|
1457
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
1458
|
+
},
|
|
1459
|
+
type: "TransferAssetContract",
|
|
1460
|
+
},
|
|
1461
|
+
],
|
|
1462
|
+
ref_block_bytes: "b344",
|
|
1463
|
+
ref_block_hash: "d9b0d2f26a51ef93",
|
|
1464
|
+
expiration: 1704376365000,
|
|
1465
|
+
timestamp: 1704376306813,
|
|
1466
|
+
},
|
|
1467
|
+
internal_transactions: [],
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
ret: [
|
|
1471
|
+
{
|
|
1472
|
+
contractRet: "SUCCESS",
|
|
1473
|
+
fee: 0,
|
|
1474
|
+
},
|
|
1475
|
+
],
|
|
1476
|
+
signature: [
|
|
1477
|
+
"570c5426d834af2ace578aa14f0a6f24b6ec6bbbf675da802e93dc9f9cecbd055ed16f058cdf89006e3db0f8a89d099b435c98203e4966ea7c704845c0fd3af801",
|
|
1478
|
+
],
|
|
1479
|
+
txID: "ea43fb12b2a3e6e0959660230dfd3580f1dd4d018b799c7167e39194c48a02e2",
|
|
1480
|
+
net_usage: 282,
|
|
1481
|
+
raw_data_hex: "0a02b3402208a7f2380daa28f8b140e881fda5cd315a76080212720a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123c0a0731303035303133121541c2308f342b20e3de158e63e972412c57957a10be1a154105cc125604448afeb6867eb688efb7e80411d57a20c0d0822a70d7c5f9a5cd31",
|
|
1482
|
+
net_fee: 0,
|
|
1483
|
+
energy_usage: 0,
|
|
1484
|
+
blockNumber: 57914196,
|
|
1485
|
+
block_timestamp: 1704376299000,
|
|
1486
|
+
energy_fee: 0,
|
|
1487
|
+
energy_usage_total: 0,
|
|
1488
|
+
raw_data: {
|
|
1489
|
+
contract: [
|
|
1490
|
+
{
|
|
1491
|
+
parameter: {
|
|
1492
|
+
value: {
|
|
1493
|
+
amount: 88123456,
|
|
1494
|
+
asset_name: "1005013",
|
|
1495
|
+
owner_address: "41c2308f342b20e3de158e63e972412c57957a10be",
|
|
1496
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1497
|
+
},
|
|
1498
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
1499
|
+
},
|
|
1500
|
+
type: "TransferAssetContract",
|
|
1501
|
+
},
|
|
1502
|
+
],
|
|
1503
|
+
ref_block_bytes: "b340",
|
|
1504
|
+
ref_block_hash: "a7f2380daa28f8b1",
|
|
1505
|
+
expiration: 1704376353000,
|
|
1506
|
+
timestamp: 1704376296151,
|
|
1507
|
+
},
|
|
1508
|
+
internal_transactions: [],
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
ret: [
|
|
1512
|
+
{
|
|
1513
|
+
contractRet: "SUCCESS",
|
|
1514
|
+
fee: 0,
|
|
1515
|
+
},
|
|
1516
|
+
],
|
|
1517
|
+
signature: [
|
|
1518
|
+
"14d5bb8a42e6ae474bc53ee5482d2762954810fc6f0b55bd51e4b0a009fef02745c5a0911ab9f08e15580b579048721df37d686829d05b3bdaf522b1dcb7e43801",
|
|
1519
|
+
],
|
|
1520
|
+
txID: "1d5194792e0a3093538c06c4f6ba66048d19adf7aa3d1b376dc1265740156cf7",
|
|
1521
|
+
net_usage: 251,
|
|
1522
|
+
raw_data_hex: "0a02b34e220826e2e30ba63896604088a4fca5cd315a58083612540a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e63655632436f6e7472616374121c0a154105cc125604448afeb6867eb688efb7e80411d57a10809bee0270a8cff8a5cd31",
|
|
1523
|
+
net_fee: 0,
|
|
1524
|
+
energy_usage: 0,
|
|
1525
|
+
blockNumber: 57914192,
|
|
1526
|
+
block_timestamp: 1704376287000,
|
|
1527
|
+
energy_fee: 0,
|
|
1528
|
+
energy_usage_total: 0,
|
|
1529
|
+
raw_data: {
|
|
1530
|
+
contract: [
|
|
1531
|
+
{
|
|
1532
|
+
parameter: {
|
|
1533
|
+
value: {
|
|
1534
|
+
frozen_balance: 6000000,
|
|
1535
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1536
|
+
},
|
|
1537
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceV2Contract",
|
|
1538
|
+
},
|
|
1539
|
+
type: "FreezeBalanceV2Contract",
|
|
1540
|
+
},
|
|
1541
|
+
],
|
|
1542
|
+
ref_block_bytes: "b34e",
|
|
1543
|
+
ref_block_hash: "26e2e30ba6389660",
|
|
1544
|
+
expiration: 1704376341000,
|
|
1545
|
+
timestamp: 1704376281000,
|
|
1546
|
+
},
|
|
1547
|
+
internal_transactions: [],
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
ret: [
|
|
1551
|
+
{
|
|
1552
|
+
contractRet: "SUCCESS",
|
|
1553
|
+
fee: 0,
|
|
1554
|
+
},
|
|
1555
|
+
],
|
|
1556
|
+
signature: [
|
|
1557
|
+
"66bd14d69cce1931ff0adf2b52063592bf579246bd6778bab081545359dfb6a61f94b2310ea21c803fd6173bcfe5fcd9c46a6a6ab3fbbfe6805130508819978701",
|
|
1558
|
+
],
|
|
1559
|
+
txID: "697d1574766332b6be7c04aadb434168ee4e544c11a4bffec5bc4816675f6778",
|
|
1560
|
+
net_usage: 265,
|
|
1561
|
+
raw_data_hex: "0a02b2ba22082423f3cbf76edef84098bde4a5cd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15415138c1d6d5d60b99bbd9ffc01b67468ec406b52a12154105cc125604448afeb6867eb688efb7e80411d57a18047094f8e0a5cd31",
|
|
1562
|
+
net_fee: 0,
|
|
1563
|
+
energy_usage: 0,
|
|
1564
|
+
blockNumber: 57914061,
|
|
1565
|
+
block_timestamp: 1704375894000,
|
|
1566
|
+
energy_fee: 0,
|
|
1567
|
+
energy_usage_total: 0,
|
|
1568
|
+
raw_data: {
|
|
1569
|
+
contract: [
|
|
1570
|
+
{
|
|
1571
|
+
parameter: {
|
|
1572
|
+
value: {
|
|
1573
|
+
amount: 4,
|
|
1574
|
+
owner_address: "415138c1d6d5d60b99bbd9ffc01b67468ec406b52a",
|
|
1575
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1576
|
+
},
|
|
1577
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1578
|
+
},
|
|
1579
|
+
type: "TransferContract",
|
|
1580
|
+
},
|
|
1581
|
+
],
|
|
1582
|
+
ref_block_bytes: "b2ba",
|
|
1583
|
+
ref_block_hash: "2423f3cbf76edef8",
|
|
1584
|
+
expiration: 1704375951000,
|
|
1585
|
+
timestamp: 1704375893012,
|
|
1586
|
+
},
|
|
1587
|
+
internal_transactions: [],
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
ret: [
|
|
1591
|
+
{
|
|
1592
|
+
contractRet: "SUCCESS",
|
|
1593
|
+
fee: 0,
|
|
1594
|
+
},
|
|
1595
|
+
],
|
|
1596
|
+
signature: [
|
|
1597
|
+
"43bfb6d593fd1df6351df06ece19125380482b66e444b65f6bc83719a0dbbb76341933ae894f58ba74757c1ff0867375e0a4ac1cd1ccc1949198ce6ac8d7b68701",
|
|
1598
|
+
],
|
|
1599
|
+
txID: "608ca6af7f5f882e473c3e106980e4db4c7637b39a2db7eb0bed4bdf118de93e",
|
|
1600
|
+
net_usage: 268,
|
|
1601
|
+
raw_data_hex: "0a02b2b62208c0376526e930829640f8ae88a6cd315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a15414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e4612154105cc125604448afeb6867eb688efb7e80411d57a18808bd66d708ba2e0a5cd31",
|
|
1602
|
+
net_fee: 0,
|
|
1603
|
+
energy_usage: 0,
|
|
1604
|
+
blockNumber: 57914059,
|
|
1605
|
+
block_timestamp: 1704375888000,
|
|
1606
|
+
energy_fee: 0,
|
|
1607
|
+
energy_usage_total: 0,
|
|
1608
|
+
raw_data: {
|
|
1609
|
+
contract: [
|
|
1610
|
+
{
|
|
1611
|
+
parameter: {
|
|
1612
|
+
value: {
|
|
1613
|
+
amount: 230000000,
|
|
1614
|
+
owner_address: "414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e46",
|
|
1615
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1616
|
+
},
|
|
1617
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1618
|
+
},
|
|
1619
|
+
type: "TransferContract",
|
|
1620
|
+
},
|
|
1621
|
+
],
|
|
1622
|
+
ref_block_bytes: "b2b6",
|
|
1623
|
+
ref_block_hash: "c0376526e9308296",
|
|
1624
|
+
expiration: 1704376539000,
|
|
1625
|
+
timestamp: 1704375881995,
|
|
1626
|
+
},
|
|
1627
|
+
internal_transactions: [],
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
ret: [
|
|
1631
|
+
{
|
|
1632
|
+
contractRet: "SUCCESS",
|
|
1633
|
+
fee: 0,
|
|
1634
|
+
},
|
|
1635
|
+
],
|
|
1636
|
+
signature: [
|
|
1637
|
+
"ce9e54375713c5975047a450ce4e221150ef0da9e7ee8ffc98a48b11c4bee1fa5f5dee1d350b90ca341d394ed8518ace5eeab69e832eedc884a5199021725d7201",
|
|
1638
|
+
],
|
|
1639
|
+
txID: "8e5731152738d971ef680c6db9c859960f0c0aeae55261d32828734c1bd7f4d4",
|
|
1640
|
+
net_usage: 265,
|
|
1641
|
+
raw_data_hex: "0a02b297220814e9a5e22e0d265240f088dea5cd315a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541638fe1a0251fab499bab72e6baab32ad472ed2ca12154105cc125604448afeb6867eb688efb7e80411d57a180670b4bfdaa5cd31",
|
|
1642
|
+
net_fee: 0,
|
|
1643
|
+
energy_usage: 0,
|
|
1644
|
+
blockNumber: 57914026,
|
|
1645
|
+
block_timestamp: 1704375789000,
|
|
1646
|
+
energy_fee: 0,
|
|
1647
|
+
energy_usage_total: 0,
|
|
1648
|
+
raw_data: {
|
|
1649
|
+
contract: [
|
|
1650
|
+
{
|
|
1651
|
+
parameter: {
|
|
1652
|
+
value: {
|
|
1653
|
+
amount: 6,
|
|
1654
|
+
owner_address: "41638fe1a0251fab499bab72e6baab32ad472ed2ca",
|
|
1655
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1656
|
+
},
|
|
1657
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1658
|
+
},
|
|
1659
|
+
type: "TransferContract",
|
|
1660
|
+
},
|
|
1661
|
+
],
|
|
1662
|
+
ref_block_bytes: "b297",
|
|
1663
|
+
ref_block_hash: "14e9a5e22e0d2652",
|
|
1664
|
+
expiration: 1704375846000,
|
|
1665
|
+
timestamp: 1704375787444,
|
|
1666
|
+
},
|
|
1667
|
+
internal_transactions: [],
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
ret: [
|
|
1671
|
+
{
|
|
1672
|
+
contractRet: "SUCCESS",
|
|
1673
|
+
fee: 0,
|
|
1674
|
+
},
|
|
1675
|
+
],
|
|
1676
|
+
signature: [
|
|
1677
|
+
"1c5a68323038c7021e3d70389c823e3f99a968d35354453cb60667ac1cffda4b769508c6b9ec3515d73466be96229ce85bab3639a3280e90f28d180c9ffc333900",
|
|
1678
|
+
],
|
|
1679
|
+
txID: "03d5e0604e8f91b9e48efc5febf70a24f9f40e2d5de00452783dd47e94892c88",
|
|
1680
|
+
net_usage: 268,
|
|
1681
|
+
raw_data_hex: "0a02b29422082eb0eddbd69156ac40889282a6cd315a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a15417ef4d4d0ee4ecd7e1666f2e43bbe74364c7779ee12154105cc125604448afeb6867eb688efb7e80411d57a1895f5b20c70fff1d9a5cd31",
|
|
1682
|
+
net_fee: 0,
|
|
1683
|
+
energy_usage: 0,
|
|
1684
|
+
blockNumber: 57914024,
|
|
1685
|
+
block_timestamp: 1704375783000,
|
|
1686
|
+
energy_fee: 0,
|
|
1687
|
+
energy_usage_total: 0,
|
|
1688
|
+
raw_data: {
|
|
1689
|
+
contract: [
|
|
1690
|
+
{
|
|
1691
|
+
parameter: {
|
|
1692
|
+
value: {
|
|
1693
|
+
amount: 26000021,
|
|
1694
|
+
owner_address: "417ef4d4d0ee4ecd7e1666f2e43bbe74364c7779ee",
|
|
1695
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1696
|
+
},
|
|
1697
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1698
|
+
},
|
|
1699
|
+
type: "TransferContract",
|
|
1700
|
+
},
|
|
1701
|
+
],
|
|
1702
|
+
ref_block_bytes: "b294",
|
|
1703
|
+
ref_block_hash: "2eb0eddbd69156ac",
|
|
1704
|
+
expiration: 1704376437000,
|
|
1705
|
+
timestamp: 1704375777535,
|
|
1706
|
+
},
|
|
1707
|
+
internal_transactions: [],
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
ret: [
|
|
1711
|
+
{
|
|
1712
|
+
contractRet: "SUCCESS",
|
|
1713
|
+
fee: 0,
|
|
1714
|
+
},
|
|
1715
|
+
],
|
|
1716
|
+
signature: [
|
|
1717
|
+
"c017873e0b626a7ab4154c724dddded0d725f654b1f487dd6e10b9c27ab83e641b4d14a748026582af8bfebe8b683ebbd7ab4bd54d6d1c9651c9c5a4ea6f377b01",
|
|
1718
|
+
],
|
|
1719
|
+
txID: "c77f6eaee09af68b40328c06b1b3d8f2a258b324cf31c126dad8968ed7507d92",
|
|
1720
|
+
net_usage: 266,
|
|
1721
|
+
raw_data_hex: "0a0285f3220818d64aebbd706ed140c8f18dd5ad315a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154105cc125604448afeb6867eb688efb7e80411d57a18904e70c1dfe5d4ad31",
|
|
1722
|
+
net_fee: 0,
|
|
1723
|
+
energy_usage: 0,
|
|
1724
|
+
blockNumber: 55084552,
|
|
1725
|
+
block_timestamp: 1695884610000,
|
|
1726
|
+
energy_fee: 0,
|
|
1727
|
+
energy_usage_total: 0,
|
|
1728
|
+
raw_data: {
|
|
1729
|
+
contract: [
|
|
1730
|
+
{
|
|
1731
|
+
parameter: {
|
|
1732
|
+
value: {
|
|
1733
|
+
amount: 10000,
|
|
1734
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
1735
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1736
|
+
},
|
|
1737
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1738
|
+
},
|
|
1739
|
+
type: "TransferContract",
|
|
1740
|
+
},
|
|
1741
|
+
],
|
|
1742
|
+
ref_block_bytes: "85f3",
|
|
1743
|
+
ref_block_hash: "18d64aebbd706ed1",
|
|
1744
|
+
expiration: 1695885261000,
|
|
1745
|
+
timestamp: 1695884603329,
|
|
1746
|
+
},
|
|
1747
|
+
internal_transactions: [],
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
ret: [
|
|
1751
|
+
{
|
|
1752
|
+
contractRet: "SUCCESS",
|
|
1753
|
+
fee: 0,
|
|
1754
|
+
},
|
|
1755
|
+
],
|
|
1756
|
+
signature: [
|
|
1757
|
+
"7e13d92bf1b24ff6fee6da8aa84394e96b1873107a8be115924015daf354c4634e2b8a10b68e6cf5a9bcab50994087c163cecc6eb64fce3a4566a0a819a80c5a00",
|
|
1758
|
+
],
|
|
1759
|
+
txID: "db3509a1efa9daac2b003d2fd49294e246904ff27d211db95711727e9804953c",
|
|
1760
|
+
net_usage: 267,
|
|
1761
|
+
raw_data_hex: "0a02151822086166fbfade86d1624090a9a89ba8315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154105cc125604448afeb6867eb688efb7e80411d57a18a08d0670c196809ba831",
|
|
1762
|
+
net_fee: 0,
|
|
1763
|
+
energy_usage: 0,
|
|
1764
|
+
blockNumber: 54596909,
|
|
1765
|
+
block_timestamp: 1694421231000,
|
|
1766
|
+
energy_fee: 0,
|
|
1767
|
+
energy_usage_total: 0,
|
|
1768
|
+
raw_data: {
|
|
1769
|
+
contract: [
|
|
1770
|
+
{
|
|
1771
|
+
parameter: {
|
|
1772
|
+
value: {
|
|
1773
|
+
amount: 100000,
|
|
1774
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
1775
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1776
|
+
},
|
|
1777
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1778
|
+
},
|
|
1779
|
+
type: "TransferContract",
|
|
1780
|
+
},
|
|
1781
|
+
],
|
|
1782
|
+
ref_block_bytes: "1518",
|
|
1783
|
+
ref_block_hash: "6166fbfade86d162",
|
|
1784
|
+
expiration: 1694421882000,
|
|
1785
|
+
timestamp: 1694421224257,
|
|
1786
|
+
},
|
|
1787
|
+
internal_transactions: [],
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
ret: [
|
|
1791
|
+
{
|
|
1792
|
+
contractRet: "SUCCESS",
|
|
1793
|
+
fee: 1100000,
|
|
1794
|
+
},
|
|
1795
|
+
],
|
|
1796
|
+
signature: [
|
|
1797
|
+
"f47aabb631d9cdf869c1d81659c3d4748674b8cee2172b5d9e1cf50889c011885ae92392eefcecb221c15b16bdc790af061c00f2c31464724300ba7e8d2b55bb00",
|
|
1798
|
+
],
|
|
1799
|
+
txID: "6e12360e2f181d8e0baf02584eec18580c38a3670670bbde6da1dda577924543",
|
|
1800
|
+
net_usage: 0,
|
|
1801
|
+
raw_data_hex: "0a02ee0e2208f47f32c75e6b665b40f0b590b8a4315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a1215416b90a6acca849649284011b150cac6357a40553518c09a0c709796e8b7a431",
|
|
1802
|
+
net_fee: 100000,
|
|
1803
|
+
energy_usage: 0,
|
|
1804
|
+
blockNumber: 54259235,
|
|
1805
|
+
block_timestamp: 1693407915000,
|
|
1806
|
+
energy_fee: 0,
|
|
1807
|
+
energy_usage_total: 0,
|
|
1808
|
+
raw_data: {
|
|
1809
|
+
contract: [
|
|
1810
|
+
{
|
|
1811
|
+
parameter: {
|
|
1812
|
+
value: {
|
|
1813
|
+
amount: 200000,
|
|
1814
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1815
|
+
to_address: "416b90a6acca849649284011b150cac6357a405535",
|
|
1816
|
+
},
|
|
1817
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1818
|
+
},
|
|
1819
|
+
type: "TransferContract",
|
|
1820
|
+
},
|
|
1821
|
+
],
|
|
1822
|
+
ref_block_bytes: "ee0e",
|
|
1823
|
+
ref_block_hash: "f47f32c75e6b665b",
|
|
1824
|
+
expiration: 1693408566000,
|
|
1825
|
+
timestamp: 1693407906583,
|
|
1826
|
+
},
|
|
1827
|
+
internal_transactions: [],
|
|
1828
|
+
},
|
|
1829
|
+
{
|
|
1830
|
+
ret: [
|
|
1831
|
+
{
|
|
1832
|
+
contractRet: "SUCCESS",
|
|
1833
|
+
fee: 0,
|
|
1834
|
+
},
|
|
1835
|
+
],
|
|
1836
|
+
signature: [
|
|
1837
|
+
"d2c3955955043966be66d76104ac06f61bf1a87461463af4aef9c85055f4d8dd6f4c31a9f5803a5e0508745a227c95c2734a9fd2b3bfe48ba30037a3d3022f7801",
|
|
1838
|
+
],
|
|
1839
|
+
txID: "69748d772c42963483c87814677ce1da824fb41ff1eff1e15f8cadd35a3a1474",
|
|
1840
|
+
net_usage: 267,
|
|
1841
|
+
raw_data_hex: "0a0231f522086ac85c5ff5c89e2940809dbd8a9b315a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718a0c21e70ff91958a9b31",
|
|
1842
|
+
net_fee: 0,
|
|
1843
|
+
energy_usage: 0,
|
|
1844
|
+
blockNumber: 53424650,
|
|
1845
|
+
block_timestamp: 1690896261000,
|
|
1846
|
+
energy_fee: 0,
|
|
1847
|
+
energy_usage_total: 0,
|
|
1848
|
+
raw_data: {
|
|
1849
|
+
contract: [
|
|
1850
|
+
{
|
|
1851
|
+
parameter: {
|
|
1852
|
+
value: {
|
|
1853
|
+
amount: 500000,
|
|
1854
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1855
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
1856
|
+
},
|
|
1857
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1858
|
+
},
|
|
1859
|
+
type: "TransferContract",
|
|
1860
|
+
},
|
|
1861
|
+
],
|
|
1862
|
+
ref_block_bytes: "31f5",
|
|
1863
|
+
ref_block_hash: "6ac85c5ff5c89e29",
|
|
1864
|
+
expiration: 1690896912000,
|
|
1865
|
+
timestamp: 1690896255231,
|
|
1866
|
+
},
|
|
1867
|
+
internal_transactions: [],
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
ret: [
|
|
1871
|
+
{
|
|
1872
|
+
contractRet: "SUCCESS",
|
|
1873
|
+
fee: 0,
|
|
1874
|
+
},
|
|
1875
|
+
],
|
|
1876
|
+
signature: [
|
|
1877
|
+
"7fb769d959ce828026f7817d11633aa438051bf4ba8510be73a1544f1b67cb9d6257ee7fa4c0f7484f76a892070f17e506388ee00b8c26bd62db33fa3a64c49601",
|
|
1878
|
+
],
|
|
1879
|
+
txID: "c6b6f3546bba2078446a48be96056851c8969c775b65bc0dc615e50d66c54555",
|
|
1880
|
+
net_usage: 267,
|
|
1881
|
+
raw_data_hex: "0a026b36220896595e5f4102d7d340e0a8d28ff5305a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154105cc125604448afeb6867eb688efb7e80411d57a18f88b3770e8e5ce8ff530",
|
|
1882
|
+
net_fee: 0,
|
|
1883
|
+
energy_usage: 0,
|
|
1884
|
+
blockNumber: 50031435,
|
|
1885
|
+
block_timestamp: 1680707145000,
|
|
1886
|
+
energy_fee: 0,
|
|
1887
|
+
energy_usage_total: 0,
|
|
1888
|
+
raw_data: {
|
|
1889
|
+
contract: [
|
|
1890
|
+
{
|
|
1891
|
+
parameter: {
|
|
1892
|
+
value: {
|
|
1893
|
+
amount: 902648,
|
|
1894
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
1895
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1896
|
+
},
|
|
1897
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
1898
|
+
},
|
|
1899
|
+
type: "TransferContract",
|
|
1900
|
+
},
|
|
1901
|
+
],
|
|
1902
|
+
ref_block_bytes: "6b36",
|
|
1903
|
+
ref_block_hash: "96595e5f4102d7d3",
|
|
1904
|
+
expiration: 1680707196000,
|
|
1905
|
+
timestamp: 1680707138280,
|
|
1906
|
+
},
|
|
1907
|
+
internal_transactions: [],
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
ret: [
|
|
1911
|
+
{
|
|
1912
|
+
contractRet: "SUCCESS",
|
|
1913
|
+
fee: 0,
|
|
1914
|
+
},
|
|
1915
|
+
],
|
|
1916
|
+
signature: [
|
|
1917
|
+
"0c931702e70344766d6171f1c3d3269dc6dd1fe79708155fd7b636ce62671b933b0568c0db42bde1ab0865388e095d580d1fa81e1a467fee80ce7ff9221ba21601",
|
|
1918
|
+
],
|
|
1919
|
+
txID: "a3fa98036b8651c7ca88e9d2f11b2a06b68318b5aeecf15d50b7d40f957d0d6d",
|
|
1920
|
+
net_usage: 282,
|
|
1921
|
+
raw_data_hex: "0a026b1c2208dbb777f277eb365440b0c7cd8ff5305a76080212720a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e736665724173736574436f6e7472616374123c0a07313030343932301215410e78ecd9f6f65676537dbb082f8fb1f5f4c408791a154105cc125604448afeb6867eb688efb7e80411d57a20b8f1800970edf8c98ff530",
|
|
1922
|
+
net_fee: 0,
|
|
1923
|
+
energy_usage: 0,
|
|
1924
|
+
blockNumber: 50031407,
|
|
1925
|
+
block_timestamp: 1680707061000,
|
|
1926
|
+
energy_fee: 0,
|
|
1927
|
+
energy_usage_total: 0,
|
|
1928
|
+
raw_data: {
|
|
1929
|
+
contract: [
|
|
1930
|
+
{
|
|
1931
|
+
parameter: {
|
|
1932
|
+
value: {
|
|
1933
|
+
amount: 18888888,
|
|
1934
|
+
asset_name: "1004920",
|
|
1935
|
+
owner_address: "410e78ecd9f6f65676537dbb082f8fb1f5f4c40879",
|
|
1936
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1937
|
+
},
|
|
1938
|
+
type_url: "type.googleapis.com/protocol.TransferAssetContract",
|
|
1939
|
+
},
|
|
1940
|
+
type: "TransferAssetContract",
|
|
1941
|
+
},
|
|
1942
|
+
],
|
|
1943
|
+
ref_block_bytes: "6b1c",
|
|
1944
|
+
ref_block_hash: "dbb777f277eb3654",
|
|
1945
|
+
expiration: 1680707118000,
|
|
1946
|
+
timestamp: 1680707058797,
|
|
1947
|
+
},
|
|
1948
|
+
internal_transactions: [],
|
|
1949
|
+
},
|
|
1950
|
+
{
|
|
1951
|
+
ret: [
|
|
1952
|
+
{
|
|
1953
|
+
contractRet: "SUCCESS",
|
|
1954
|
+
fee: 0,
|
|
1955
|
+
},
|
|
1956
|
+
],
|
|
1957
|
+
signature: [
|
|
1958
|
+
"7304ae28585104b8fa09adde07d8067706afb566e566205502754ad9abf08e180a51f20d0e68872cc5ff09509e39c93ad945e5f3e99b4b0b64f10625aaeb565d01",
|
|
1959
|
+
],
|
|
1960
|
+
txID: "8cd075562f0f70be0a0d3521fea55bed36b0d785dc63a101386932b41ee12dee",
|
|
1961
|
+
net_usage: 248,
|
|
1962
|
+
raw_data_hex: "0a026b17220858c21cec3223dfac4098d2cc8ff5305a55080c12510a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e556e667265657a6542616c616e6365436f6e747261637412190a154105cc125604448afeb6867eb688efb7e80411d57a500170a18bc98ff530",
|
|
1963
|
+
unfreeze_amount: 1000000,
|
|
1964
|
+
net_fee: 0,
|
|
1965
|
+
energy_usage: 0,
|
|
1966
|
+
blockNumber: 50031405,
|
|
1967
|
+
block_timestamp: 1680707055000,
|
|
1968
|
+
energy_fee: 0,
|
|
1969
|
+
energy_usage_total: 0,
|
|
1970
|
+
raw_data: {
|
|
1971
|
+
contract: [
|
|
1972
|
+
{
|
|
1973
|
+
parameter: {
|
|
1974
|
+
value: {
|
|
1975
|
+
resource: 1,
|
|
1976
|
+
resource_type: "ENERGY",
|
|
1977
|
+
resource_value: 1,
|
|
1978
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
1979
|
+
},
|
|
1980
|
+
type_url: "type.googleapis.com/protocol.UnfreezeBalanceContract",
|
|
1981
|
+
},
|
|
1982
|
+
type: "UnfreezeBalanceContract",
|
|
1983
|
+
},
|
|
1984
|
+
],
|
|
1985
|
+
ref_block_bytes: "6b17",
|
|
1986
|
+
ref_block_hash: "58c21cec3223dfac",
|
|
1987
|
+
expiration: 1680707103000,
|
|
1988
|
+
timestamp: 1680707044769,
|
|
1989
|
+
},
|
|
1990
|
+
internal_transactions: [],
|
|
1991
|
+
},
|
|
1992
|
+
{
|
|
1993
|
+
ret: [
|
|
1994
|
+
{
|
|
1995
|
+
contractRet: "SUCCESS",
|
|
1996
|
+
fee: 0,
|
|
1997
|
+
},
|
|
1998
|
+
],
|
|
1999
|
+
signature: [
|
|
2000
|
+
"32819c5cf224586bd9fd976307454166999af173bae3906c18745a5ddd584265237074c43e3418b43c0f923c348588f2a43b86705d3ff67abb6d728fc28f2f8c01",
|
|
2001
|
+
],
|
|
2002
|
+
txID: "154164dd04482ae78f930033d0ad95730b8b19fde171a33c3920d18c228426ab",
|
|
2003
|
+
net_usage: 345,
|
|
2004
|
+
raw_data_hex: "0a02ce7d220887273c4324d0757440f8c2f4a2e5305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee709a83f1a2e530900180e1eb17",
|
|
2005
|
+
net_fee: 0,
|
|
2006
|
+
energy_usage: 0,
|
|
2007
|
+
blockNumber: 48615059,
|
|
2008
|
+
block_timestamp: 1676452587000,
|
|
2009
|
+
energy_fee: 0,
|
|
2010
|
+
energy_usage_total: 28263,
|
|
2011
|
+
raw_data: {
|
|
2012
|
+
contract: [
|
|
2013
|
+
{
|
|
2014
|
+
parameter: {
|
|
2015
|
+
value: {
|
|
2016
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee",
|
|
2017
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2018
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
2019
|
+
},
|
|
2020
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
2021
|
+
},
|
|
2022
|
+
type: "TriggerSmartContract",
|
|
2023
|
+
},
|
|
2024
|
+
],
|
|
2025
|
+
ref_block_bytes: "ce7d",
|
|
2026
|
+
ref_block_hash: "87273c4324d07574",
|
|
2027
|
+
expiration: 1676452635000,
|
|
2028
|
+
fee_limit: 50000000,
|
|
2029
|
+
timestamp: 1676452577690,
|
|
2030
|
+
},
|
|
2031
|
+
internal_transactions: [],
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
ret: [
|
|
2035
|
+
{
|
|
2036
|
+
contractRet: "SUCCESS",
|
|
2037
|
+
fee: 0,
|
|
2038
|
+
},
|
|
2039
|
+
],
|
|
2040
|
+
signature: [
|
|
2041
|
+
"d2d9268368b0dd49053e048dbc7cad93c00328eb5cf19094901c02171827f259497042150e3916c183e2a7fc74045ac90d523d51edbf043cb75b62095813bbd200",
|
|
2042
|
+
],
|
|
2043
|
+
txID: "deb6829859ffe7c6ee8c4c41ae2ca7efc13ebc81da33319d7db8b442ec2ce18f",
|
|
2044
|
+
net_usage: 345,
|
|
2045
|
+
raw_data_hex: "0a02cc37220827fc3ac3451eeb2840a8fa89a2e5305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee7087b186a2e530900180e1eb17",
|
|
2046
|
+
net_fee: 0,
|
|
2047
|
+
energy_usage: 0,
|
|
2048
|
+
blockNumber: 48614476,
|
|
2049
|
+
block_timestamp: 1676450838000,
|
|
2050
|
+
energy_fee: 0,
|
|
2051
|
+
energy_usage_total: 28263,
|
|
2052
|
+
raw_data: {
|
|
2053
|
+
contract: [
|
|
2054
|
+
{
|
|
2055
|
+
parameter: {
|
|
2056
|
+
value: {
|
|
2057
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee",
|
|
2058
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2059
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
2060
|
+
},
|
|
2061
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
2062
|
+
},
|
|
2063
|
+
type: "TriggerSmartContract",
|
|
2064
|
+
},
|
|
2065
|
+
],
|
|
2066
|
+
ref_block_bytes: "cc37",
|
|
2067
|
+
ref_block_hash: "27fc3ac3451eeb28",
|
|
2068
|
+
expiration: 1676450889000,
|
|
2069
|
+
fee_limit: 50000000,
|
|
2070
|
+
timestamp: 1676450830471,
|
|
2071
|
+
},
|
|
2072
|
+
internal_transactions: [],
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
ret: [
|
|
2076
|
+
{
|
|
2077
|
+
contractRet: "SUCCESS",
|
|
2078
|
+
fee: 0,
|
|
2079
|
+
},
|
|
2080
|
+
],
|
|
2081
|
+
signature: [
|
|
2082
|
+
"414f7165d1b882fe6d6e8d914288e0d40a91213eeba268103d27b27294fc5d0820743abdb468a7a88e239e2561fc3f21cac6378eea5c292a6ec109ce97a4f1c701",
|
|
2083
|
+
],
|
|
2084
|
+
txID: "6a590029516714b55119d63921ccb7a17f50eb7847c211bea544a7ad295e3129",
|
|
2085
|
+
net_usage: 266,
|
|
2086
|
+
raw_data_hex: "0a020c162208672b530ae94f39b640d888d8dbe4305a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718d81470e1c4d4dbe430",
|
|
2087
|
+
net_fee: 0,
|
|
2088
|
+
energy_usage: 0,
|
|
2089
|
+
blockNumber: 48565292,
|
|
2090
|
+
block_timestamp: 1676303223000,
|
|
2091
|
+
energy_fee: 0,
|
|
2092
|
+
energy_usage_total: 0,
|
|
2093
|
+
raw_data: {
|
|
2094
|
+
contract: [
|
|
2095
|
+
{
|
|
2096
|
+
parameter: {
|
|
2097
|
+
value: {
|
|
2098
|
+
amount: 2648,
|
|
2099
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2100
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
2101
|
+
},
|
|
2102
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2103
|
+
},
|
|
2104
|
+
type: "TransferContract",
|
|
2105
|
+
},
|
|
2106
|
+
],
|
|
2107
|
+
ref_block_bytes: "0c16",
|
|
2108
|
+
ref_block_hash: "672b530ae94f39b6",
|
|
2109
|
+
expiration: 1676303271000,
|
|
2110
|
+
timestamp: 1676303213153,
|
|
2111
|
+
},
|
|
2112
|
+
internal_transactions: [],
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
ret: [
|
|
2116
|
+
{
|
|
2117
|
+
contractRet: "SUCCESS",
|
|
2118
|
+
fee: 0,
|
|
2119
|
+
},
|
|
2120
|
+
],
|
|
2121
|
+
signature: [
|
|
2122
|
+
"de40603f441a27b36a5e8591d1463d83449a0c3d985d0eeaf41b87f6c233ee9a57a1555482a3e4f0b42d0425441c7b7240bdb6247640102d5c3f4ed39612eeef01",
|
|
2123
|
+
],
|
|
2124
|
+
txID: "47bd809b9a8d5181d9a752f202c8421892ca719d618293f431eae0c1e318e99e",
|
|
2125
|
+
net_usage: 345,
|
|
2126
|
+
raw_data_hex: "0a0251de2208b9a9e2eba06a8dc840a0e0c5dbe2305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f3700000000000000000000000000000000000000000000000000000000000f424070b0a6c2dbe23090018087a70e",
|
|
2127
|
+
net_fee: 0,
|
|
2128
|
+
energy_usage: 0,
|
|
2129
|
+
blockNumber: 48386548,
|
|
2130
|
+
block_timestamp: 1675766052000,
|
|
2131
|
+
energy_fee: 0,
|
|
2132
|
+
energy_usage_total: 13263,
|
|
2133
|
+
raw_data: {
|
|
2134
|
+
contract: [
|
|
2135
|
+
{
|
|
2136
|
+
parameter: {
|
|
2137
|
+
value: {
|
|
2138
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f3700000000000000000000000000000000000000000000000000000000000f4240",
|
|
2139
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2140
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
2141
|
+
},
|
|
2142
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
2143
|
+
},
|
|
2144
|
+
type: "TriggerSmartContract",
|
|
2145
|
+
},
|
|
2146
|
+
],
|
|
2147
|
+
ref_block_bytes: "51de",
|
|
2148
|
+
ref_block_hash: "b9a9e2eba06a8dc8",
|
|
2149
|
+
expiration: 1675766100000,
|
|
2150
|
+
fee_limit: 30000000,
|
|
2151
|
+
timestamp: 1675766043440,
|
|
2152
|
+
},
|
|
2153
|
+
internal_transactions: [],
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
ret: [
|
|
2157
|
+
{
|
|
2158
|
+
contractRet: "SUCCESS",
|
|
2159
|
+
fee: 0,
|
|
2160
|
+
},
|
|
2161
|
+
],
|
|
2162
|
+
signature: [
|
|
2163
|
+
"aa466e603c37105afbfc5ccadabd0a54aaf2263df2ecd682fcbec7efa4c6a1ee703fa80da244f6b987452ba26f151eff117165bdf7eada68454be4983ef4f91b01",
|
|
2164
|
+
],
|
|
2165
|
+
txID: "628fb640ac7e269768037d02c6a30e32fcc7b3c31d264f603c09ebe40fbd4048",
|
|
2166
|
+
net_usage: 270,
|
|
2167
|
+
raw_data_hex: "0a02b15b2208bb3d826c02a3d60c40a8c3c192cf305a6a080412660a30747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e566f74655769746e657373436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a12190a154167e39013be3cdd3814bed152d7439fb5b6791409100170b2fcbd92cf30",
|
|
2168
|
+
net_fee: 0,
|
|
2169
|
+
energy_usage: 0,
|
|
2170
|
+
blockNumber: 46641520,
|
|
2171
|
+
block_timestamp: 1670512614000,
|
|
2172
|
+
energy_fee: 0,
|
|
2173
|
+
energy_usage_total: 0,
|
|
2174
|
+
raw_data: {
|
|
2175
|
+
contract: [
|
|
2176
|
+
{
|
|
2177
|
+
parameter: {
|
|
2178
|
+
value: {
|
|
2179
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2180
|
+
votes: [
|
|
2181
|
+
{
|
|
2182
|
+
vote_address: "4167e39013be3cdd3814bed152d7439fb5b6791409",
|
|
2183
|
+
vote_count: 1,
|
|
2184
|
+
},
|
|
2185
|
+
],
|
|
2186
|
+
},
|
|
2187
|
+
type_url: "type.googleapis.com/protocol.VoteWitnessContract",
|
|
2188
|
+
},
|
|
2189
|
+
type: "VoteWitnessContract",
|
|
2190
|
+
},
|
|
2191
|
+
],
|
|
2192
|
+
ref_block_bytes: "b15b",
|
|
2193
|
+
ref_block_hash: "bb3d826c02a3d60c",
|
|
2194
|
+
expiration: 1670512665000,
|
|
2195
|
+
timestamp: 1670512606770,
|
|
2196
|
+
},
|
|
2197
|
+
internal_transactions: [],
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
ret: [
|
|
2201
|
+
{
|
|
2202
|
+
contractRet: "SUCCESS",
|
|
2203
|
+
fee: 0,
|
|
2204
|
+
},
|
|
2205
|
+
],
|
|
2206
|
+
signature: [
|
|
2207
|
+
"998a9add90fd75d346d496dc35388b28ca265aba120f47c271bd913885ed488d6af07dec2f6754559b3bfc4e200a084a99026cdc5dce6a393cd9485025ac5bb401",
|
|
2208
|
+
],
|
|
2209
|
+
txID: "7970ef1a2454ae4252f46da5768151d05d1af8cf5aa8d323d1b7ce54b27d9b9d",
|
|
2210
|
+
net_usage: 252,
|
|
2211
|
+
raw_data_hex: "0a02b02b2208b281404eaadf0f1e40a8ee8992cf305a59080b12550a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e6365436f6e7472616374121f0a154105cc125604448afeb6867eb688efb7e80411d57a10c0843d1803500170a1ac8692cf30",
|
|
2212
|
+
net_fee: 0,
|
|
2213
|
+
energy_usage: 0,
|
|
2214
|
+
blockNumber: 46641216,
|
|
2215
|
+
block_timestamp: 1670511702000,
|
|
2216
|
+
energy_fee: 0,
|
|
2217
|
+
energy_usage_total: 0,
|
|
2218
|
+
raw_data: {
|
|
2219
|
+
contract: [
|
|
2220
|
+
{
|
|
2221
|
+
parameter: {
|
|
2222
|
+
value: {
|
|
2223
|
+
resource: 1,
|
|
2224
|
+
frozen_duration: 3,
|
|
2225
|
+
resource_type: "ENERGY",
|
|
2226
|
+
resource_value: 1,
|
|
2227
|
+
frozen_balance: 1000000,
|
|
2228
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2229
|
+
},
|
|
2230
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceContract",
|
|
2231
|
+
},
|
|
2232
|
+
type: "FreezeBalanceContract",
|
|
2233
|
+
},
|
|
2234
|
+
],
|
|
2235
|
+
ref_block_bytes: "b02b",
|
|
2236
|
+
ref_block_hash: "b281404eaadf0f1e",
|
|
2237
|
+
expiration: 1670511753000,
|
|
2238
|
+
timestamp: 1670511695393,
|
|
2239
|
+
},
|
|
2240
|
+
internal_transactions: [],
|
|
2241
|
+
},
|
|
2242
|
+
{
|
|
2243
|
+
ret: [
|
|
2244
|
+
{
|
|
2245
|
+
contractRet: "SUCCESS",
|
|
2246
|
+
fee: 0,
|
|
2247
|
+
},
|
|
2248
|
+
],
|
|
2249
|
+
signature: [
|
|
2250
|
+
"e67e62c7390d6adb46a9ede9796e46a02f28ac0cb72cc4ea2ee250d44b5913f81d580da10099af529dd86a6bd68d50ef6814b6a21f8fdfdc67664f4231e51f2300",
|
|
2251
|
+
],
|
|
2252
|
+
txID: "7cb9e8b44ee63b47e615f77ef26406e0d11c95943faa328ab67b62987f752176",
|
|
2253
|
+
net_usage: 345,
|
|
2254
|
+
raw_data_hex: "0a02ad1022084a90958a4d2e2e6340c0a5f890cf305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000007a1207080e2f490cf30900180dac409",
|
|
2255
|
+
net_fee: 0,
|
|
2256
|
+
energy_usage: 0,
|
|
2257
|
+
blockNumber: 46640422,
|
|
2258
|
+
block_timestamp: 1670509320000,
|
|
2259
|
+
energy_fee: 0,
|
|
2260
|
+
energy_usage_total: 28263,
|
|
2261
|
+
raw_data: {
|
|
2262
|
+
contract: [
|
|
2263
|
+
{
|
|
2264
|
+
parameter: {
|
|
2265
|
+
value: {
|
|
2266
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000007a120",
|
|
2267
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2268
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
2269
|
+
},
|
|
2270
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
2271
|
+
},
|
|
2272
|
+
type: "TriggerSmartContract",
|
|
2273
|
+
},
|
|
2274
|
+
],
|
|
2275
|
+
ref_block_bytes: "ad10",
|
|
2276
|
+
ref_block_hash: "4a90958a4d2e2e63",
|
|
2277
|
+
expiration: 1670509368000,
|
|
2278
|
+
fee_limit: 20000000,
|
|
2279
|
+
timestamp: 1670509310208,
|
|
2280
|
+
},
|
|
2281
|
+
internal_transactions: [],
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
ret: [
|
|
2285
|
+
{
|
|
2286
|
+
contractRet: "SUCCESS",
|
|
2287
|
+
fee: 0,
|
|
2288
|
+
},
|
|
2289
|
+
],
|
|
2290
|
+
signature: [
|
|
2291
|
+
"86f723fa9eaab5a878fc3e731a84087fc4e6bbd648f226597b67e61fc5e46a167d8c98fe1c4502629a44c0d2702678b05d177c2d551b7eb8731306014e8f691a00",
|
|
2292
|
+
],
|
|
2293
|
+
txID: "adc45283df2742b7699fdcbf3f3755ac6cf36926ef731282b9ad147036107ca5",
|
|
2294
|
+
net_usage: 370,
|
|
2295
|
+
raw_data_hex: "0a02966a2208ab5f1699860b0d9a40b8e8ac87c4305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15412cad40682f39674db2801750d1b385deff23ca2312154105cc125604448afeb6867eb688efb7e80411d57a180970f2a8a987c430",
|
|
2296
|
+
net_fee: 0,
|
|
2297
|
+
energy_usage: 0,
|
|
2298
|
+
blockNumber: 45651582,
|
|
2299
|
+
block_timestamp: 1667536413000,
|
|
2300
|
+
energy_fee: 0,
|
|
2301
|
+
energy_usage_total: 0,
|
|
2302
|
+
raw_data: {
|
|
2303
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2304
|
+
contract: [
|
|
2305
|
+
{
|
|
2306
|
+
parameter: {
|
|
2307
|
+
value: {
|
|
2308
|
+
amount: 9,
|
|
2309
|
+
owner_address: "412cad40682f39674db2801750d1b385deff23ca23",
|
|
2310
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2311
|
+
},
|
|
2312
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2313
|
+
},
|
|
2314
|
+
type: "TransferContract",
|
|
2315
|
+
},
|
|
2316
|
+
],
|
|
2317
|
+
ref_block_bytes: "966a",
|
|
2318
|
+
ref_block_hash: "ab5f1699860b0d9a",
|
|
2319
|
+
expiration: 1667536467000,
|
|
2320
|
+
timestamp: 1667536409714,
|
|
2321
|
+
},
|
|
2322
|
+
internal_transactions: [],
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
ret: [
|
|
2326
|
+
{
|
|
2327
|
+
contractRet: "SUCCESS",
|
|
2328
|
+
fee: 0,
|
|
2329
|
+
},
|
|
2330
|
+
],
|
|
2331
|
+
signature: [
|
|
2332
|
+
"c2c0448e05063c4f4f3cb4ed60cbd22de1d8cdfa60a882350151b1fa669254b12ac21b36ba208dbdf6289920cb305815bcaea347f5d92bb0aa9fdf490a0692b400",
|
|
2333
|
+
],
|
|
2334
|
+
txID: "c9b63a42abac3a1c2a2fe72a6deee1cd194e9a7cd87888e6f3ba00b5068f184a",
|
|
2335
|
+
net_usage: 370,
|
|
2336
|
+
raw_data_hex: "0a023f1c22081b64d9af6b2efc554098ecade7c3305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15413d80422fa3c321f2f0d90aa17513a4bf8c0c55f112154105cc125604448afeb6867eb688efb7e80411d57a180970caafaae7c330",
|
|
2337
|
+
net_fee: 0,
|
|
2338
|
+
energy_usage: 0,
|
|
2339
|
+
blockNumber: 45629232,
|
|
2340
|
+
block_timestamp: 1667469321000,
|
|
2341
|
+
energy_fee: 0,
|
|
2342
|
+
energy_usage_total: 0,
|
|
2343
|
+
raw_data: {
|
|
2344
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2345
|
+
contract: [
|
|
2346
|
+
{
|
|
2347
|
+
parameter: {
|
|
2348
|
+
value: {
|
|
2349
|
+
amount: 9,
|
|
2350
|
+
owner_address: "413d80422fa3c321f2f0d90aa17513a4bf8c0c55f1",
|
|
2351
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2352
|
+
},
|
|
2353
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2354
|
+
},
|
|
2355
|
+
type: "TransferContract",
|
|
2356
|
+
},
|
|
2357
|
+
],
|
|
2358
|
+
ref_block_bytes: "3f1c",
|
|
2359
|
+
ref_block_hash: "1b64d9af6b2efc55",
|
|
2360
|
+
expiration: 1667469375000,
|
|
2361
|
+
timestamp: 1667469318090,
|
|
2362
|
+
},
|
|
2363
|
+
internal_transactions: [],
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
ret: [
|
|
2367
|
+
{
|
|
2368
|
+
contractRet: "SUCCESS",
|
|
2369
|
+
fee: 0,
|
|
2370
|
+
},
|
|
2371
|
+
],
|
|
2372
|
+
signature: [
|
|
2373
|
+
"6aa17b5e53e9592d01df70e4acdaa0583cb36f529b93a184d28383d800e235bb1e0e1411e83d307534ba0c52782b7e8a1e3b141b5fc12aaca3e7d6aa878605a901",
|
|
2374
|
+
],
|
|
2375
|
+
txID: "a36d43ab4f914e59512450ff3e49f95fbe35da152c76e5aff40c3ead88cb9a34",
|
|
2376
|
+
net_usage: 370,
|
|
2377
|
+
raw_data_hex: "0a02e7ee22084f089c48d54480c940f8ddb4c7c3305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541b9ad35fc5d161f301aa263582213d74cb07c4f8b12154105cc125604448afeb6867eb688efb7e80411d57a1809709794b1c7c330",
|
|
2378
|
+
net_fee: 0,
|
|
2379
|
+
energy_usage: 0,
|
|
2380
|
+
blockNumber: 45606913,
|
|
2381
|
+
block_timestamp: 1667402322000,
|
|
2382
|
+
energy_fee: 0,
|
|
2383
|
+
energy_usage_total: 0,
|
|
2384
|
+
raw_data: {
|
|
2385
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2386
|
+
contract: [
|
|
2387
|
+
{
|
|
2388
|
+
parameter: {
|
|
2389
|
+
value: {
|
|
2390
|
+
amount: 9,
|
|
2391
|
+
owner_address: "41b9ad35fc5d161f301aa263582213d74cb07c4f8b",
|
|
2392
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2393
|
+
},
|
|
2394
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2395
|
+
},
|
|
2396
|
+
type: "TransferContract",
|
|
2397
|
+
},
|
|
2398
|
+
],
|
|
2399
|
+
ref_block_bytes: "e7ee",
|
|
2400
|
+
ref_block_hash: "4f089c48d54480c9",
|
|
2401
|
+
expiration: 1667402379000,
|
|
2402
|
+
timestamp: 1667402320407,
|
|
2403
|
+
},
|
|
2404
|
+
internal_transactions: [],
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
ret: [
|
|
2408
|
+
{
|
|
2409
|
+
contractRet: "SUCCESS",
|
|
2410
|
+
fee: 0,
|
|
2411
|
+
},
|
|
2412
|
+
],
|
|
2413
|
+
signature: [
|
|
2414
|
+
"09cf928663f49d5a27a0b266db46968f13d5ccb9fe113e2c390a2b395e47267932a62f870d9cb7942577571beaf0a01b58b72b98c3c14ef674b80a8ae3e7b37800",
|
|
2415
|
+
],
|
|
2416
|
+
txID: "0fe518d3d8375be3c8756eeea1bd73592a50afc4b0408cf4c72766202cc478ca",
|
|
2417
|
+
net_usage: 370,
|
|
2418
|
+
raw_data_hex: "0a0290d222087db79becc8aa2aee40f0bbbfa7c3305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541c82f4e7741970c9bd85023db5e0f8ff354a733a212154105cc125604448afeb6867eb688efb7e80411d57a180970a2eebba7c330",
|
|
2419
|
+
net_fee: 0,
|
|
2420
|
+
energy_usage: 0,
|
|
2421
|
+
blockNumber: 45584613,
|
|
2422
|
+
block_timestamp: 1667335389000,
|
|
2423
|
+
energy_fee: 0,
|
|
2424
|
+
energy_usage_total: 0,
|
|
2425
|
+
raw_data: {
|
|
2426
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2427
|
+
contract: [
|
|
2428
|
+
{
|
|
2429
|
+
parameter: {
|
|
2430
|
+
value: {
|
|
2431
|
+
amount: 9,
|
|
2432
|
+
owner_address: "41c82f4e7741970c9bd85023db5e0f8ff354a733a2",
|
|
2433
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2434
|
+
},
|
|
2435
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2436
|
+
},
|
|
2437
|
+
type: "TransferContract",
|
|
2438
|
+
},
|
|
2439
|
+
],
|
|
2440
|
+
ref_block_bytes: "90d2",
|
|
2441
|
+
ref_block_hash: "7db79becc8aa2aee",
|
|
2442
|
+
expiration: 1667335446000,
|
|
2443
|
+
timestamp: 1667335386914,
|
|
2444
|
+
},
|
|
2445
|
+
internal_transactions: [],
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
ret: [
|
|
2449
|
+
{
|
|
2450
|
+
contractRet: "SUCCESS",
|
|
2451
|
+
fee: 0,
|
|
2452
|
+
},
|
|
2453
|
+
],
|
|
2454
|
+
signature: [
|
|
2455
|
+
"9c6afa10c0c90b93985b8058f05185939bd8c7f46d7dc0e3c066c46c095a8f5331e6e837953445ee18bfb0f9cde0c8af96328854108ba61d19b7c492d99e9acf01",
|
|
2456
|
+
],
|
|
2457
|
+
txID: "ae372cd3b59ccf420d428aab32d15eab3276d8fb30b6ccfdb0bdef7304fede7d",
|
|
2458
|
+
net_usage: 343,
|
|
2459
|
+
raw_data_hex: "0a023a2322085094153a21cfa21740c094de87c330524ce6b3a2e59cbae58aa9e6898befbc9ae689b9e9878fe8bdace8b4a6efbc8ce5bc95e6b581e68ea8e5b9bfefbc8ce8bdafe4bbb6e5ae9ae588b668747470733a2f2f74726f6e68656c702e696f5a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15419bda84c1548f4a19b4b867f8c466d1cb750c1f9812154105cc125604448afeb6867eb688efb7e80411d57a180170f1cfda87c330",
|
|
2460
|
+
net_fee: 0,
|
|
2461
|
+
energy_usage: 0,
|
|
2462
|
+
blockNumber: 45562423,
|
|
2463
|
+
block_timestamp: 1667268786000,
|
|
2464
|
+
energy_fee: 0,
|
|
2465
|
+
energy_usage_total: 0,
|
|
2466
|
+
raw_data: {
|
|
2467
|
+
data: "e6b3a2e59cbae58aa9e6898befbc9ae689b9e9878fe8bdace8b4a6efbc8ce5bc95e6b581e68ea8e5b9bfefbc8ce8bdafe4bbb6e5ae9ae588b668747470733a2f2f74726f6e68656c702e696f",
|
|
2468
|
+
contract: [
|
|
2469
|
+
{
|
|
2470
|
+
parameter: {
|
|
2471
|
+
value: {
|
|
2472
|
+
amount: 1,
|
|
2473
|
+
owner_address: "419bda84c1548f4a19b4b867f8c466d1cb750c1f98",
|
|
2474
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2475
|
+
},
|
|
2476
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2477
|
+
},
|
|
2478
|
+
type: "TransferContract",
|
|
2479
|
+
},
|
|
2480
|
+
],
|
|
2481
|
+
ref_block_bytes: "3a23",
|
|
2482
|
+
ref_block_hash: "5094153a21cfa217",
|
|
2483
|
+
expiration: 1667268840000,
|
|
2484
|
+
timestamp: 1667268782065,
|
|
2485
|
+
},
|
|
2486
|
+
internal_transactions: [],
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
ret: [
|
|
2490
|
+
{
|
|
2491
|
+
contractRet: "SUCCESS",
|
|
2492
|
+
fee: 0,
|
|
2493
|
+
},
|
|
2494
|
+
],
|
|
2495
|
+
signature: [
|
|
2496
|
+
"0049702b5add82499fc9b752fcc76984b81338c223bed2eacaeeedf7f33240d020a25a515d6bfd2006bac0d1643bf41107c0cd8a8b7a687683c04c9e9a91116c01",
|
|
2497
|
+
],
|
|
2498
|
+
txID: "0d9a765d9dc180690a032d6ba3150bf84c04a1cf293fcc2d2dfe9115bb3d4dce",
|
|
2499
|
+
net_usage: 265,
|
|
2500
|
+
raw_data_hex: "0a023a2322085094153a21cfa21740c094de87c3305a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154147327238a64ebb0faf110fb086f9fc03ec52714712154105cc125604448afeb6867eb688efb7e80411d57a180170efc5da87c330",
|
|
2501
|
+
net_fee: 0,
|
|
2502
|
+
energy_usage: 0,
|
|
2503
|
+
blockNumber: 45562422,
|
|
2504
|
+
block_timestamp: 1667268783000,
|
|
2505
|
+
energy_fee: 0,
|
|
2506
|
+
energy_usage_total: 0,
|
|
2507
|
+
raw_data: {
|
|
2508
|
+
contract: [
|
|
2509
|
+
{
|
|
2510
|
+
parameter: {
|
|
2511
|
+
value: {
|
|
2512
|
+
amount: 1,
|
|
2513
|
+
owner_address: "4147327238a64ebb0faf110fb086f9fc03ec527147",
|
|
2514
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2515
|
+
},
|
|
2516
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2517
|
+
},
|
|
2518
|
+
type: "TransferContract",
|
|
2519
|
+
},
|
|
2520
|
+
],
|
|
2521
|
+
ref_block_bytes: "3a23",
|
|
2522
|
+
ref_block_hash: "5094153a21cfa217",
|
|
2523
|
+
expiration: 1667268840000,
|
|
2524
|
+
timestamp: 1667268780783,
|
|
2525
|
+
},
|
|
2526
|
+
internal_transactions: [],
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
ret: [
|
|
2530
|
+
{
|
|
2531
|
+
contractRet: "SUCCESS",
|
|
2532
|
+
fee: 0,
|
|
2533
|
+
},
|
|
2534
|
+
],
|
|
2535
|
+
signature: [
|
|
2536
|
+
"26e42d2b0cf8162d0fbb049297b40ccc0f0f2782b6969db8ba7a932ee03d9686443d374203379f5096d74ca45654fd02a9c65f8ff64783a5111971d25133d1e700",
|
|
2537
|
+
],
|
|
2538
|
+
txID: "4a240ac60cbc4fda3416dbc8df2af78367b1c03c5999097c747c6f4edc80992d",
|
|
2539
|
+
net_usage: 265,
|
|
2540
|
+
raw_data_hex: "0a023a2322085094153a21cfa21740c094de87c3305a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541eb690aa3375cf087a7352021d8c98a7bd083e50c12154105cc125604448afeb6867eb688efb7e80411d57a180170e1c5da87c330",
|
|
2541
|
+
net_fee: 0,
|
|
2542
|
+
energy_usage: 0,
|
|
2543
|
+
blockNumber: 45562422,
|
|
2544
|
+
block_timestamp: 1667268783000,
|
|
2545
|
+
energy_fee: 0,
|
|
2546
|
+
energy_usage_total: 0,
|
|
2547
|
+
raw_data: {
|
|
2548
|
+
contract: [
|
|
2549
|
+
{
|
|
2550
|
+
parameter: {
|
|
2551
|
+
value: {
|
|
2552
|
+
amount: 1,
|
|
2553
|
+
owner_address: "41eb690aa3375cf087a7352021d8c98a7bd083e50c",
|
|
2554
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2555
|
+
},
|
|
2556
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2557
|
+
},
|
|
2558
|
+
type: "TransferContract",
|
|
2559
|
+
},
|
|
2560
|
+
],
|
|
2561
|
+
ref_block_bytes: "3a23",
|
|
2562
|
+
ref_block_hash: "5094153a21cfa217",
|
|
2563
|
+
expiration: 1667268840000,
|
|
2564
|
+
timestamp: 1667268780769,
|
|
2565
|
+
},
|
|
2566
|
+
internal_transactions: [],
|
|
2567
|
+
},
|
|
2568
|
+
{
|
|
2569
|
+
ret: [
|
|
2570
|
+
{
|
|
2571
|
+
contractRet: "SUCCESS",
|
|
2572
|
+
fee: 0,
|
|
2573
|
+
},
|
|
2574
|
+
],
|
|
2575
|
+
signature: [
|
|
2576
|
+
"286d7c2896ff86f651c254311e08dd3af6d3990d1296e3799366978eab583b8a2a473f5f336ed7aeb1f3abf0deee5fd4d61fdd1a8be5cc9843503c58038cd39200",
|
|
2577
|
+
],
|
|
2578
|
+
txID: "35ed9879177ce2f54f5634f33106e495cab5b2cb46448a4aadb76dc2be9186fd",
|
|
2579
|
+
net_usage: 370,
|
|
2580
|
+
raw_data_hex: "0a023a2022084ee0ee5c831993934098cedd87c3305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154195e33fd76d073a3349960757395dc2c8d9fd58a512154105cc125604448afeb6867eb688efb7e80411d57a180970b38cda87c330",
|
|
2581
|
+
net_fee: 0,
|
|
2582
|
+
energy_usage: 0,
|
|
2583
|
+
blockNumber: 45562419,
|
|
2584
|
+
block_timestamp: 1667268774000,
|
|
2585
|
+
energy_fee: 0,
|
|
2586
|
+
energy_usage_total: 0,
|
|
2587
|
+
raw_data: {
|
|
2588
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2589
|
+
contract: [
|
|
2590
|
+
{
|
|
2591
|
+
parameter: {
|
|
2592
|
+
value: {
|
|
2593
|
+
amount: 9,
|
|
2594
|
+
owner_address: "4195e33fd76d073a3349960757395dc2c8d9fd58a5",
|
|
2595
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2596
|
+
},
|
|
2597
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2598
|
+
},
|
|
2599
|
+
type: "TransferContract",
|
|
2600
|
+
},
|
|
2601
|
+
],
|
|
2602
|
+
ref_block_bytes: "3a20",
|
|
2603
|
+
ref_block_hash: "4ee0ee5c83199393",
|
|
2604
|
+
expiration: 1667268831000,
|
|
2605
|
+
timestamp: 1667268773427,
|
|
2606
|
+
},
|
|
2607
|
+
internal_transactions: [],
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
ret: [
|
|
2611
|
+
{
|
|
2612
|
+
contractRet: "SUCCESS",
|
|
2613
|
+
fee: 0,
|
|
2614
|
+
},
|
|
2615
|
+
],
|
|
2616
|
+
signature: [
|
|
2617
|
+
"c44693ef718a96174fee360fa3e8c4777a2d27e6be34898c47173b2f488c6f32110a3fa2f5ac7ae526dfae91e5d3831b2e5df1e500b45dc8c2f90c3fc440119101",
|
|
2618
|
+
],
|
|
2619
|
+
txID: "17cc6f301642d0a2d1c9db72a76c7192db80b962dc4a550c2b9ed10e365f10eb",
|
|
2620
|
+
net_usage: 370,
|
|
2621
|
+
raw_data_hex: "0a02e49d220839744068d9b7255140a8c0b2e8c2305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154122d4698d2b8112233472be6a673fe823e4616e1512154105cc125604448afeb6867eb688efb7e80411d57a180970f0f4aee8c230",
|
|
2622
|
+
net_fee: 0,
|
|
2623
|
+
energy_usage: 0,
|
|
2624
|
+
blockNumber: 45540528,
|
|
2625
|
+
block_timestamp: 1667203056000,
|
|
2626
|
+
energy_fee: 0,
|
|
2627
|
+
energy_usage_total: 0,
|
|
2628
|
+
raw_data: {
|
|
2629
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2630
|
+
contract: [
|
|
2631
|
+
{
|
|
2632
|
+
parameter: {
|
|
2633
|
+
value: {
|
|
2634
|
+
amount: 9,
|
|
2635
|
+
owner_address: "4122d4698d2b8112233472be6a673fe823e4616e15",
|
|
2636
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2637
|
+
},
|
|
2638
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2639
|
+
},
|
|
2640
|
+
type: "TransferContract",
|
|
2641
|
+
},
|
|
2642
|
+
],
|
|
2643
|
+
ref_block_bytes: "e49d",
|
|
2644
|
+
ref_block_hash: "39744068d9b72551",
|
|
2645
|
+
expiration: 1667203113000,
|
|
2646
|
+
timestamp: 1667203054192,
|
|
2647
|
+
},
|
|
2648
|
+
internal_transactions: [],
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
ret: [
|
|
2652
|
+
{
|
|
2653
|
+
contractRet: "SUCCESS",
|
|
2654
|
+
fee: 0,
|
|
2655
|
+
},
|
|
2656
|
+
],
|
|
2657
|
+
signature: [
|
|
2658
|
+
"81aca305e2486bc7613c956026f7200b898a998aa2b4bf3a38329620f46a2ee8088e9ddea21e6836cc3f0df37048cffd0aa1b0e81bb0855717628a091a9518f101",
|
|
2659
|
+
],
|
|
2660
|
+
txID: "830d237af847fafc52cc62e6daa4edc76ea5f635d885333a9e218cf03ce8dd0d",
|
|
2661
|
+
net_usage: 370,
|
|
2662
|
+
raw_data_hex: "0a0290282208fe8a715d452253e840e0dfb9c9c2305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15410531fb1c75bab689926e92a582fd2619f0f5cdbf12154105cc125604448afeb6867eb688efb7e80411d57a180970f28db6c9c230",
|
|
2663
|
+
net_fee: 0,
|
|
2664
|
+
energy_usage: 0,
|
|
2665
|
+
blockNumber: 45518907,
|
|
2666
|
+
block_timestamp: 1667138163000,
|
|
2667
|
+
energy_fee: 0,
|
|
2668
|
+
energy_usage_total: 0,
|
|
2669
|
+
raw_data: {
|
|
2670
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2671
|
+
contract: [
|
|
2672
|
+
{
|
|
2673
|
+
parameter: {
|
|
2674
|
+
value: {
|
|
2675
|
+
amount: 9,
|
|
2676
|
+
owner_address: "410531fb1c75bab689926e92a582fd2619f0f5cdbf",
|
|
2677
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2678
|
+
},
|
|
2679
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2680
|
+
},
|
|
2681
|
+
type: "TransferContract",
|
|
2682
|
+
},
|
|
2683
|
+
],
|
|
2684
|
+
ref_block_bytes: "9028",
|
|
2685
|
+
ref_block_hash: "fe8a715d452253e8",
|
|
2686
|
+
expiration: 1667138220000,
|
|
2687
|
+
timestamp: 1667138160370,
|
|
2688
|
+
},
|
|
2689
|
+
internal_transactions: [],
|
|
2690
|
+
},
|
|
2691
|
+
{
|
|
2692
|
+
ret: [
|
|
2693
|
+
{
|
|
2694
|
+
contractRet: "SUCCESS",
|
|
2695
|
+
fee: 0,
|
|
2696
|
+
},
|
|
2697
|
+
],
|
|
2698
|
+
signature: [
|
|
2699
|
+
"33e68d8f74fdb7fb02e65b8916191101ad5cb24c7549474a9ec84b0ce0a6ef672c1e59267bea9c8ac4cdfc244898376584898e9b2c07c79b3736079adc919ff700",
|
|
2700
|
+
],
|
|
2701
|
+
txID: "3e239e92c1c5e7d1839c31a7f4d06a9015e8aaa7332a9f9f3518808e39382606",
|
|
2702
|
+
net_usage: 370,
|
|
2703
|
+
raw_data_hex: "0a023cb52208cadfa5bd4f98628840e0d7efaac2305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541ff41b61c5c273b10d06a1c3e623c857c18a7293512154105cc125604448afeb6867eb688efb7e80411d57a180970e693ecaac230",
|
|
2704
|
+
net_fee: 0,
|
|
2705
|
+
energy_usage: 0,
|
|
2706
|
+
blockNumber: 45497544,
|
|
2707
|
+
block_timestamp: 1667074035000,
|
|
2708
|
+
energy_fee: 0,
|
|
2709
|
+
energy_usage_total: 0,
|
|
2710
|
+
raw_data: {
|
|
2711
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2712
|
+
contract: [
|
|
2713
|
+
{
|
|
2714
|
+
parameter: {
|
|
2715
|
+
value: {
|
|
2716
|
+
amount: 9,
|
|
2717
|
+
owner_address: "41ff41b61c5c273b10d06a1c3e623c857c18a72935",
|
|
2718
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2719
|
+
},
|
|
2720
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2721
|
+
},
|
|
2722
|
+
type: "TransferContract",
|
|
2723
|
+
},
|
|
2724
|
+
],
|
|
2725
|
+
ref_block_bytes: "3cb5",
|
|
2726
|
+
ref_block_hash: "cadfa5bd4f986288",
|
|
2727
|
+
expiration: 1667074092000,
|
|
2728
|
+
timestamp: 1667074034150,
|
|
2729
|
+
},
|
|
2730
|
+
internal_transactions: [],
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
ret: [
|
|
2734
|
+
{
|
|
2735
|
+
contractRet: "SUCCESS",
|
|
2736
|
+
fee: 0,
|
|
2737
|
+
},
|
|
2738
|
+
],
|
|
2739
|
+
signature: [
|
|
2740
|
+
"5a891da25eb509f8752be1d56d5b9c0c6068899e2ed2ba0f61abc5690e17ef54532c8143c7e137281a45e782c193b7b089d8e155f7c4c7e22bccaceefe37824f00",
|
|
2741
|
+
],
|
|
2742
|
+
txID: "9e7a7f1880d3416e0e5a92b3d80438122854a1d8bbec23af8187d38620545f23",
|
|
2743
|
+
net_usage: 370,
|
|
2744
|
+
raw_data_hex: "0a02e9cb2208ec7e6d50535d509140d8dabe8cc2305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a15416fc122a390a5c9edaa25aef4b2b65c5643517c1612154105cc125604448afeb6867eb688efb7e80411d57a1809708e9dbb8cc230",
|
|
2745
|
+
net_fee: 0,
|
|
2746
|
+
energy_usage: 0,
|
|
2747
|
+
blockNumber: 45476319,
|
|
2748
|
+
block_timestamp: 1667010321000,
|
|
2749
|
+
energy_fee: 0,
|
|
2750
|
+
energy_usage_total: 0,
|
|
2751
|
+
raw_data: {
|
|
2752
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2753
|
+
contract: [
|
|
2754
|
+
{
|
|
2755
|
+
parameter: {
|
|
2756
|
+
value: {
|
|
2757
|
+
amount: 9,
|
|
2758
|
+
owner_address: "416fc122a390a5c9edaa25aef4b2b65c5643517c16",
|
|
2759
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2760
|
+
},
|
|
2761
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2762
|
+
},
|
|
2763
|
+
type: "TransferContract",
|
|
2764
|
+
},
|
|
2765
|
+
],
|
|
2766
|
+
ref_block_bytes: "e9cb",
|
|
2767
|
+
ref_block_hash: "ec7e6d50535d5091",
|
|
2768
|
+
expiration: 1667010375000,
|
|
2769
|
+
timestamp: 1667010317966,
|
|
2770
|
+
},
|
|
2771
|
+
internal_transactions: [],
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
ret: [
|
|
2775
|
+
{
|
|
2776
|
+
contractRet: "SUCCESS",
|
|
2777
|
+
fee: 0,
|
|
2778
|
+
},
|
|
2779
|
+
],
|
|
2780
|
+
signature: [
|
|
2781
|
+
"a23aead073716475885c7039adee7623abd2f74a2c758fd9bdb7151bd51d67f308d520af2149dd7cae0ae33bd36a6d0ea0d4df8bc1bc70f2dd3ead499e2916ee00",
|
|
2782
|
+
],
|
|
2783
|
+
txID: "c2c2e051299c62cb4ba7cbbf362fc84f856927a9827a6530657ef276972518d2",
|
|
2784
|
+
net_usage: 370,
|
|
2785
|
+
raw_data_hex: "0a0292fa22088dc8b88f11fd560640b896d7ecc1305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a1541d89f2a74406b4d521ef5af7bf84e58332936c54b12154105cc125604448afeb6867eb688efb7e80411d57a18097081dbd3ecc130",
|
|
2786
|
+
net_fee: 0,
|
|
2787
|
+
energy_usage: 0,
|
|
2788
|
+
blockNumber: 45454094,
|
|
2789
|
+
block_timestamp: 1666943613000,
|
|
2790
|
+
energy_fee: 0,
|
|
2791
|
+
energy_usage_total: 0,
|
|
2792
|
+
raw_data: {
|
|
2793
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2794
|
+
contract: [
|
|
2795
|
+
{
|
|
2796
|
+
parameter: {
|
|
2797
|
+
value: {
|
|
2798
|
+
amount: 9,
|
|
2799
|
+
owner_address: "41d89f2a74406b4d521ef5af7bf84e58332936c54b",
|
|
2800
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2801
|
+
},
|
|
2802
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2803
|
+
},
|
|
2804
|
+
type: "TransferContract",
|
|
2805
|
+
},
|
|
2806
|
+
],
|
|
2807
|
+
ref_block_bytes: "92fa",
|
|
2808
|
+
ref_block_hash: "8dc8b88f11fd5606",
|
|
2809
|
+
expiration: 1666943667000,
|
|
2810
|
+
timestamp: 1666943610241,
|
|
2811
|
+
},
|
|
2812
|
+
internal_transactions: [],
|
|
2813
|
+
},
|
|
2814
|
+
{
|
|
2815
|
+
ret: [
|
|
2816
|
+
{
|
|
2817
|
+
contractRet: "SUCCESS",
|
|
2818
|
+
fee: 0,
|
|
2819
|
+
},
|
|
2820
|
+
],
|
|
2821
|
+
signature: [
|
|
2822
|
+
"9f947c44b094e30b17b5378693672e89cb8c6a5b2b7046920f0a05d32d77c0606ad55327c4fb6cd4466d24db15f379f441e0e689e17a531517c8eb4bea1187b100",
|
|
2823
|
+
],
|
|
2824
|
+
txID: "cabb67e0fb1151fc07747d13b2a59a5f94666eb9ca90744adbf7674a78b354ed",
|
|
2825
|
+
net_usage: 370,
|
|
2826
|
+
raw_data_hex: "0a0241182208e51322b2c20231fa408096d6cec1305267e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154108667c843f54345537c0a2a094ae6537cc6da0d212154105cc125604448afeb6867eb688efb7e80411d57a180970c1ddd2cec130",
|
|
2827
|
+
net_fee: 0,
|
|
2828
|
+
energy_usage: 0,
|
|
2829
|
+
blockNumber: 45433132,
|
|
2830
|
+
block_timestamp: 1666880682000,
|
|
2831
|
+
energy_fee: 0,
|
|
2832
|
+
energy_usage_total: 0,
|
|
2833
|
+
raw_data: {
|
|
2834
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b02e20456e65726779206d61726b65742c206d696e696d756d20333573756e2e2874726f6e2d676173e2978f636f6d29",
|
|
2835
|
+
contract: [
|
|
2836
|
+
{
|
|
2837
|
+
parameter: {
|
|
2838
|
+
value: {
|
|
2839
|
+
amount: 9,
|
|
2840
|
+
owner_address: "4108667c843f54345537c0a2a094ae6537cc6da0d2",
|
|
2841
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2842
|
+
},
|
|
2843
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2844
|
+
},
|
|
2845
|
+
type: "TransferContract",
|
|
2846
|
+
},
|
|
2847
|
+
],
|
|
2848
|
+
ref_block_bytes: "4118",
|
|
2849
|
+
ref_block_hash: "e51322b2c20231fa",
|
|
2850
|
+
expiration: 1666880736000,
|
|
2851
|
+
timestamp: 1666880679617,
|
|
2852
|
+
},
|
|
2853
|
+
internal_transactions: [],
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
ret: [
|
|
2857
|
+
{
|
|
2858
|
+
contractRet: "SUCCESS",
|
|
2859
|
+
fee: 0,
|
|
2860
|
+
},
|
|
2861
|
+
],
|
|
2862
|
+
signature: [
|
|
2863
|
+
"98f745bcfb9f8b10968e8becc53647c70faf26de40726222385d8946278c60b12d3ed4704b255a4839f0ca8824a6786c16e93ef368dfe3b8cc06351745f2626301",
|
|
2864
|
+
],
|
|
2865
|
+
txID: "ebbed5507fdf8eff1f041d27f54f33f94e0bd91c9b8893ef5b5b8a3ea8b72888",
|
|
2866
|
+
net_usage: 246,
|
|
2867
|
+
raw_data_hex: "0a022227220874b26443f600390a40a09fabc3c1305a53080c124f0a34747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e556e667265657a6542616c616e6365436f6e747261637412170a154105cc125604448afeb6867eb688efb7e80411d57a70d8dfa7c3c130",
|
|
2868
|
+
unfreeze_amount: 1000000,
|
|
2869
|
+
net_fee: 0,
|
|
2870
|
+
energy_usage: 0,
|
|
2871
|
+
blockNumber: 45425219,
|
|
2872
|
+
block_timestamp: 1666856934000,
|
|
2873
|
+
energy_fee: 0,
|
|
2874
|
+
energy_usage_total: 0,
|
|
2875
|
+
raw_data: {
|
|
2876
|
+
contract: [
|
|
2877
|
+
{
|
|
2878
|
+
parameter: {
|
|
2879
|
+
value: {
|
|
2880
|
+
resource: 0,
|
|
2881
|
+
resource_type: "BANDWIDTH",
|
|
2882
|
+
resource_value: 0,
|
|
2883
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2884
|
+
},
|
|
2885
|
+
type_url: "type.googleapis.com/protocol.UnfreezeBalanceContract",
|
|
2886
|
+
},
|
|
2887
|
+
type: "UnfreezeBalanceContract",
|
|
2888
|
+
},
|
|
2889
|
+
],
|
|
2890
|
+
ref_block_bytes: "2227",
|
|
2891
|
+
ref_block_hash: "74b26443f600390a",
|
|
2892
|
+
expiration: 1666856964000,
|
|
2893
|
+
timestamp: 1666856906712,
|
|
2894
|
+
},
|
|
2895
|
+
internal_transactions: [],
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
ret: [
|
|
2899
|
+
{
|
|
2900
|
+
contractRet: "SUCCESS",
|
|
2901
|
+
fee: 0,
|
|
2902
|
+
},
|
|
2903
|
+
],
|
|
2904
|
+
signature: [
|
|
2905
|
+
"d9b7055ff3c13745afafde1d8bc3e2817b6092445ac0666a02ea60b9680e82d813f41c648d7a29dc9f6a7b9f5dc1d27eb376373c033e5d7c94a76fb0443c96ad01",
|
|
2906
|
+
],
|
|
2907
|
+
txID: "ffc56eaf8b07cc1d7bfaba1a52bb4951e7a822a4f9f32b545a2bd36d41070845",
|
|
2908
|
+
net_usage: 394,
|
|
2909
|
+
raw_data_hex: "0a024edf22081d40266af46c61ac40d891f1a0bd30527fe883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b0e8b4a62e20456e657267792073656c662d736572766963652072656e74616c2c20746865206c6f776573742070726963653a20333573756e2e283f3f3f3f2d3f3f3f2e3f3f3f295a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154103656facfbe1af884250406edef3568a2300585d12154105cc125604448afeb6867eb688efb7e80411d57a18087097d5eda0bd30",
|
|
2910
|
+
net_fee: 0,
|
|
2911
|
+
energy_usage: 0,
|
|
2912
|
+
blockNumber: 45043443,
|
|
2913
|
+
block_timestamp: 1665710913000,
|
|
2914
|
+
energy_fee: 0,
|
|
2915
|
+
energy_usage_total: 0,
|
|
2916
|
+
raw_data: {
|
|
2917
|
+
data: "e883bde9878fe4baa4e69893e5b9b3e58fb0efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7333573756eefbc8ce883bde9878fe7a792e588b0e8b4a62e20456e657267792073656c662d736572766963652072656e74616c2c20746865206c6f776573742070726963653a20333573756e2e283f3f3f3f2d3f3f3f2e3f3f3f29",
|
|
2918
|
+
contract: [
|
|
2919
|
+
{
|
|
2920
|
+
parameter: {
|
|
2921
|
+
value: {
|
|
2922
|
+
amount: 8,
|
|
2923
|
+
owner_address: "4103656facfbe1af884250406edef3568a2300585d",
|
|
2924
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2925
|
+
},
|
|
2926
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2927
|
+
},
|
|
2928
|
+
type: "TransferContract",
|
|
2929
|
+
},
|
|
2930
|
+
],
|
|
2931
|
+
ref_block_bytes: "4edf",
|
|
2932
|
+
ref_block_hash: "1d40266af46c61ac",
|
|
2933
|
+
expiration: 1665710967000,
|
|
2934
|
+
timestamp: 1665710910103,
|
|
2935
|
+
},
|
|
2936
|
+
internal_transactions: [],
|
|
2937
|
+
},
|
|
2938
|
+
{
|
|
2939
|
+
ret: [
|
|
2940
|
+
{
|
|
2941
|
+
contractRet: "SUCCESS",
|
|
2942
|
+
fee: 0,
|
|
2943
|
+
},
|
|
2944
|
+
],
|
|
2945
|
+
signature: [
|
|
2946
|
+
"abff8829091bd3805c1cf03df9f27567406131bae78dee037cfe13970ed5164501e93d70193f667f58f03130c06f91402b2749f125d24866976b5c11b0a0c85500",
|
|
2947
|
+
],
|
|
2948
|
+
txID: "da1ad47fc6869e8769bc0ab6a0b1877cbccdbc12bac86bb99a645987f6434662",
|
|
2949
|
+
net_usage: 414,
|
|
2950
|
+
raw_data_hex: "0a023d182208d759e611e4a5cb3440b8e0abc5b930529201e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7efbc9a333573756e2fe5a4a92e20456e657267792073656c662d736572766963652072656e74616c2c20746865206c6f7765737420707269636520696e207468652077686f6c65206e6574776f726b3a20333573756e2f6461792e202874726f6e2d676173e2978f636f6defbc895a65080112610a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412300a154131f5f6d40978fc9b741748c092792b5849bceef612154105cc125604448afeb6867eb688efb7e80411d57a181270cb9ea8c5b930",
|
|
2951
|
+
net_fee: 0,
|
|
2952
|
+
energy_usage: 0,
|
|
2953
|
+
blockNumber: 44711211,
|
|
2954
|
+
block_timestamp: 1664713626000,
|
|
2955
|
+
energy_fee: 0,
|
|
2956
|
+
energy_usage_total: 0,
|
|
2957
|
+
raw_data: {
|
|
2958
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce585a8e7bd91e69c80e4bd8ee4bbb7efbc9a333573756e2fe5a4a92e20456e657267792073656c662d736572766963652072656e74616c2c20746865206c6f7765737420707269636520696e207468652077686f6c65206e6574776f726b3a20333573756e2f6461792e202874726f6e2d676173e2978f636f6defbc89",
|
|
2959
|
+
contract: [
|
|
2960
|
+
{
|
|
2961
|
+
parameter: {
|
|
2962
|
+
value: {
|
|
2963
|
+
amount: 18,
|
|
2964
|
+
owner_address: "4131f5f6d40978fc9b741748c092792b5849bceef6",
|
|
2965
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
2966
|
+
},
|
|
2967
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
2968
|
+
},
|
|
2969
|
+
type: "TransferContract",
|
|
2970
|
+
},
|
|
2971
|
+
],
|
|
2972
|
+
ref_block_bytes: "3d18",
|
|
2973
|
+
ref_block_hash: "d759e611e4a5cb34",
|
|
2974
|
+
expiration: 1664713683000,
|
|
2975
|
+
timestamp: 1664713625419,
|
|
2976
|
+
},
|
|
2977
|
+
internal_transactions: [],
|
|
2978
|
+
},
|
|
2979
|
+
{
|
|
2980
|
+
ret: [
|
|
2981
|
+
{
|
|
2982
|
+
contractRet: "SUCCESS",
|
|
2983
|
+
fee: 0,
|
|
2984
|
+
},
|
|
2985
|
+
],
|
|
2986
|
+
signature: [
|
|
2987
|
+
"373ab791bddb5b4c82c4b02648eed3757d51bfb3f3f17e325ffd4d1e5888df5e70704553e0caaaadaa6efbcf4849f3e2d4d78f2e0db4397dd25f60ba620d3a2801",
|
|
2988
|
+
],
|
|
2989
|
+
txID: "b27b2a01fcc6a72aa6aa937ac07a9d326b4b87560dc852d165be60a58b987438",
|
|
2990
|
+
net_usage: 383,
|
|
2991
|
+
raw_data_hex: "0a0262ad2208f15528560e7193c340a0e5c297b8305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541024e4240ff5e80d4ed857a11426c4f806facb78a12154105cc125604448afeb6867eb688efb7e80411d57a18a80170dfa2bf97b830",
|
|
2992
|
+
net_fee: 0,
|
|
2993
|
+
energy_usage: 0,
|
|
2994
|
+
blockNumber: 44589760,
|
|
2995
|
+
block_timestamp: 1664349099000,
|
|
2996
|
+
energy_fee: 0,
|
|
2997
|
+
energy_usage_total: 0,
|
|
2998
|
+
raw_data: {
|
|
2999
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3000
|
+
contract: [
|
|
3001
|
+
{
|
|
3002
|
+
parameter: {
|
|
3003
|
+
value: {
|
|
3004
|
+
amount: 168,
|
|
3005
|
+
owner_address: "41024e4240ff5e80d4ed857a11426c4f806facb78a",
|
|
3006
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3007
|
+
},
|
|
3008
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3009
|
+
},
|
|
3010
|
+
type: "TransferContract",
|
|
3011
|
+
},
|
|
3012
|
+
],
|
|
3013
|
+
ref_block_bytes: "62ad",
|
|
3014
|
+
ref_block_hash: "f15528560e7193c3",
|
|
3015
|
+
expiration: 1664349156000,
|
|
3016
|
+
timestamp: 1664349098335,
|
|
3017
|
+
},
|
|
3018
|
+
internal_transactions: [],
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
ret: [
|
|
3022
|
+
{
|
|
3023
|
+
contractRet: "SUCCESS",
|
|
3024
|
+
fee: 0,
|
|
3025
|
+
},
|
|
3026
|
+
],
|
|
3027
|
+
signature: [
|
|
3028
|
+
"de16a99ef610ef0bc6857f5eaad4e75e9913aaa2bae1bf867b4b0567977766f4753bccce8d1f5ee46612469da69f673d654983e269970719433eabcb94d04b3b00",
|
|
3029
|
+
],
|
|
3030
|
+
txID: "cd4b86b9b210c3f577ed750fe60423b0d07ddca80a56bee5fcda7dc9f2a26629",
|
|
3031
|
+
net_usage: 383,
|
|
3032
|
+
raw_data_hex: "0a022dfd2208a0a4515a3b8f335440e0cc9b84b8305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541c68c084f90f5b9bca67a0edaa3acca746537a46312154105cc125604448afeb6867eb688efb7e80411d57a18a80170d3819884b830",
|
|
3033
|
+
net_fee: 0,
|
|
3034
|
+
energy_usage: 0,
|
|
3035
|
+
blockNumber: 44576272,
|
|
3036
|
+
block_timestamp: 1664308611000,
|
|
3037
|
+
energy_fee: 0,
|
|
3038
|
+
energy_usage_total: 0,
|
|
3039
|
+
raw_data: {
|
|
3040
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3041
|
+
contract: [
|
|
3042
|
+
{
|
|
3043
|
+
parameter: {
|
|
3044
|
+
value: {
|
|
3045
|
+
amount: 168,
|
|
3046
|
+
owner_address: "41c68c084f90f5b9bca67a0edaa3acca746537a463",
|
|
3047
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3048
|
+
},
|
|
3049
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3050
|
+
},
|
|
3051
|
+
type: "TransferContract",
|
|
3052
|
+
},
|
|
3053
|
+
],
|
|
3054
|
+
ref_block_bytes: "2dfd",
|
|
3055
|
+
ref_block_hash: "a0a4515a3b8f3354",
|
|
3056
|
+
expiration: 1664308668000,
|
|
3057
|
+
timestamp: 1664308609235,
|
|
3058
|
+
},
|
|
3059
|
+
internal_transactions: [],
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
ret: [
|
|
3063
|
+
{
|
|
3064
|
+
contractRet: "SUCCESS",
|
|
3065
|
+
fee: 0,
|
|
3066
|
+
},
|
|
3067
|
+
],
|
|
3068
|
+
signature: [
|
|
3069
|
+
"f77852d8d49c00dbf81144ef0181ca591f15d88c30d7a7da6d44995b2b00ebec4dbce50be5dee1434f562358727854f030c2b480c540750fc0ec3d59784ce07e00",
|
|
3070
|
+
],
|
|
3071
|
+
txID: "a2155730e0f28894ad569495ae0d66d305b1da5d571c843ac67350cc48869556",
|
|
3072
|
+
net_usage: 383,
|
|
3073
|
+
raw_data_hex: "0a02dd7b22085a3d28c4dbcdf1684088e4dbe6b7305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541b9e0a58cbb31702223a12ffcffc7d492b4aa43df12154105cc125604448afeb6867eb688efb7e80411d57a18a8017096a6d8e6b730",
|
|
3074
|
+
net_fee: 0,
|
|
3075
|
+
energy_usage: 0,
|
|
3076
|
+
blockNumber: 44555663,
|
|
3077
|
+
block_timestamp: 1664246751000,
|
|
3078
|
+
energy_fee: 0,
|
|
3079
|
+
energy_usage_total: 0,
|
|
3080
|
+
raw_data: {
|
|
3081
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3082
|
+
contract: [
|
|
3083
|
+
{
|
|
3084
|
+
parameter: {
|
|
3085
|
+
value: {
|
|
3086
|
+
amount: 168,
|
|
3087
|
+
owner_address: "41b9e0a58cbb31702223a12ffcffc7d492b4aa43df",
|
|
3088
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3089
|
+
},
|
|
3090
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3091
|
+
},
|
|
3092
|
+
type: "TransferContract",
|
|
3093
|
+
},
|
|
3094
|
+
],
|
|
3095
|
+
ref_block_bytes: "dd7b",
|
|
3096
|
+
ref_block_hash: "5a3d28c4dbcdf168",
|
|
3097
|
+
expiration: 1664246805000,
|
|
3098
|
+
timestamp: 1664246747926,
|
|
3099
|
+
},
|
|
3100
|
+
internal_transactions: [],
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
ret: [
|
|
3104
|
+
{
|
|
3105
|
+
contractRet: "SUCCESS",
|
|
3106
|
+
fee: 0,
|
|
3107
|
+
},
|
|
3108
|
+
],
|
|
3109
|
+
signature: [
|
|
3110
|
+
"656145b8837e91e14256471b7f25bedc57127f705accb3c40f343306d50539107322bbda5574015be22b31df89944213c5bc078a010234b97ee62f1d6cb8de1501",
|
|
3111
|
+
],
|
|
3112
|
+
txID: "01b7a11ec93147540f4930f2202d24c3a7e63748fbfc327fc313c9416683f189",
|
|
3113
|
+
net_usage: 383,
|
|
3114
|
+
raw_data_hex: "0a028dd12208b0ee38cfda8804b640b8aac3c9b7305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a154125c0fa938a6154ab7dbc1920ff1ae05df7aea63e12154105cc125604448afeb6867eb688efb7e80411d57a18a801708adfbfc9b730",
|
|
3115
|
+
net_fee: 0,
|
|
3116
|
+
energy_usage: 0,
|
|
3117
|
+
blockNumber: 44535268,
|
|
3118
|
+
block_timestamp: 1664185530000,
|
|
3119
|
+
energy_fee: 0,
|
|
3120
|
+
energy_usage_total: 0,
|
|
3121
|
+
raw_data: {
|
|
3122
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3123
|
+
contract: [
|
|
3124
|
+
{
|
|
3125
|
+
parameter: {
|
|
3126
|
+
value: {
|
|
3127
|
+
amount: 168,
|
|
3128
|
+
owner_address: "4125c0fa938a6154ab7dbc1920ff1ae05df7aea63e",
|
|
3129
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3130
|
+
},
|
|
3131
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3132
|
+
},
|
|
3133
|
+
type: "TransferContract",
|
|
3134
|
+
},
|
|
3135
|
+
],
|
|
3136
|
+
ref_block_bytes: "8dd1",
|
|
3137
|
+
ref_block_hash: "b0ee38cfda8804b6",
|
|
3138
|
+
expiration: 1664185587000,
|
|
3139
|
+
timestamp: 1664185528202,
|
|
3140
|
+
},
|
|
3141
|
+
internal_transactions: [],
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
ret: [
|
|
3145
|
+
{
|
|
3146
|
+
contractRet: "SUCCESS",
|
|
3147
|
+
fee: 0,
|
|
3148
|
+
},
|
|
3149
|
+
],
|
|
3150
|
+
signature: [
|
|
3151
|
+
"c0a07b888d10aed1dff7d6088a6887760245cabd6027e9ae4b8717093754978117bb09b71b81d79c38fd2d69a6904e998b561a5ae75e3522475d6a3c854cc9a400",
|
|
3152
|
+
],
|
|
3153
|
+
txID: "cc6696fb26d26ae6bddd13dbcc0f33aae09b17ca5ce81a08aa6f8fbcf42923ed",
|
|
3154
|
+
net_usage: 383,
|
|
3155
|
+
raw_data_hex: "0a025ad322083794425b67ea98a940d8fcebb6b7305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541a81b9908659ebbdfbe670119d59f6cd9dee8023a12154105cc125604448afeb6867eb688efb7e80411d57a18a80170fabbe8b6b730",
|
|
3156
|
+
net_fee: 0,
|
|
3157
|
+
energy_usage: 0,
|
|
3158
|
+
blockNumber: 44522214,
|
|
3159
|
+
block_timestamp: 1664146350000,
|
|
3160
|
+
energy_fee: 0,
|
|
3161
|
+
energy_usage_total: 0,
|
|
3162
|
+
raw_data: {
|
|
3163
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3164
|
+
contract: [
|
|
3165
|
+
{
|
|
3166
|
+
parameter: {
|
|
3167
|
+
value: {
|
|
3168
|
+
amount: 168,
|
|
3169
|
+
owner_address: "41a81b9908659ebbdfbe670119d59f6cd9dee8023a",
|
|
3170
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3171
|
+
},
|
|
3172
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3173
|
+
},
|
|
3174
|
+
type: "TransferContract",
|
|
3175
|
+
},
|
|
3176
|
+
],
|
|
3177
|
+
ref_block_bytes: "5ad3",
|
|
3178
|
+
ref_block_hash: "3794425b67ea98a9",
|
|
3179
|
+
expiration: 1664146407000,
|
|
3180
|
+
timestamp: 1664146349562,
|
|
3181
|
+
},
|
|
3182
|
+
internal_transactions: [],
|
|
3183
|
+
},
|
|
3184
|
+
{
|
|
3185
|
+
ret: [
|
|
3186
|
+
{
|
|
3187
|
+
contractRet: "SUCCESS",
|
|
3188
|
+
fee: 0,
|
|
3189
|
+
},
|
|
3190
|
+
],
|
|
3191
|
+
signature: [
|
|
3192
|
+
"d6fa8c67d244ca2fc3851abc75e0de0956b85c672161805bf8b86bd19a7fd43e7e50fe1e76ca771665e0f5a72e093391b109cd36995b360dc44b52d75928758401",
|
|
3193
|
+
],
|
|
3194
|
+
txID: "b4cf0dd24117243b3fd4b5acfb3ac5cccbc28ee0c191a54c25b308deb5aad9df",
|
|
3195
|
+
net_usage: 383,
|
|
3196
|
+
raw_data_hex: "0a020cf922081c77cd6ac67801a740f8eca89ab7305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a15410b5ffdc071dc883d43aa5660e555a71b93cb8af612154105cc125604448afeb6867eb688efb7e80411d57a18a801708da2a59ab730",
|
|
3197
|
+
net_fee: 0,
|
|
3198
|
+
energy_usage: 0,
|
|
3199
|
+
blockNumber: 44502284,
|
|
3200
|
+
block_timestamp: 1664086530000,
|
|
3201
|
+
energy_fee: 0,
|
|
3202
|
+
energy_usage_total: 0,
|
|
3203
|
+
raw_data: {
|
|
3204
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3205
|
+
contract: [
|
|
3206
|
+
{
|
|
3207
|
+
parameter: {
|
|
3208
|
+
value: {
|
|
3209
|
+
amount: 168,
|
|
3210
|
+
owner_address: "410b5ffdc071dc883d43aa5660e555a71b93cb8af6",
|
|
3211
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3212
|
+
},
|
|
3213
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3214
|
+
},
|
|
3215
|
+
type: "TransferContract",
|
|
3216
|
+
},
|
|
3217
|
+
],
|
|
3218
|
+
ref_block_bytes: "0cf9",
|
|
3219
|
+
ref_block_hash: "1c77cd6ac67801a7",
|
|
3220
|
+
expiration: 1664086587000,
|
|
3221
|
+
timestamp: 1664086528269,
|
|
3222
|
+
},
|
|
3223
|
+
internal_transactions: [],
|
|
3224
|
+
},
|
|
3225
|
+
{
|
|
3226
|
+
ret: [
|
|
3227
|
+
{
|
|
3228
|
+
contractRet: "SUCCESS",
|
|
3229
|
+
fee: 0,
|
|
3230
|
+
},
|
|
3231
|
+
],
|
|
3232
|
+
signature: [
|
|
3233
|
+
"2a6ebdd458d11b017239f23c14e86e60120b357150f43e0a3684fbbf9db6e21509fca995466f1986636d50296266bec8ba3c9e542c7423b1cbad4da2508f3d3f00",
|
|
3234
|
+
],
|
|
3235
|
+
txID: "18ae5504dfae7afb74a6dfb869fc055c4d3a9767f9e658d5f15d74f41b85f983",
|
|
3236
|
+
net_usage: 383,
|
|
3237
|
+
raw_data_hex: "0a02dadf22080e50f4ddaa16121140e8cdfb87b7305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541bb66c74bdab753393bdb296ea42e4642dbd27f0b12154105cc125604448afeb6867eb688efb7e80411d57a18a80170fcfdf787b730",
|
|
3238
|
+
net_fee: 0,
|
|
3239
|
+
energy_usage: 0,
|
|
3240
|
+
blockNumber: 44489458,
|
|
3241
|
+
block_timestamp: 1664048040000,
|
|
3242
|
+
energy_fee: 0,
|
|
3243
|
+
energy_usage_total: 0,
|
|
3244
|
+
raw_data: {
|
|
3245
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3246
|
+
contract: [
|
|
3247
|
+
{
|
|
3248
|
+
parameter: {
|
|
3249
|
+
value: {
|
|
3250
|
+
amount: 168,
|
|
3251
|
+
owner_address: "41bb66c74bdab753393bdb296ea42e4642dbd27f0b",
|
|
3252
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3253
|
+
},
|
|
3254
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3255
|
+
},
|
|
3256
|
+
type: "TransferContract",
|
|
3257
|
+
},
|
|
3258
|
+
],
|
|
3259
|
+
ref_block_bytes: "dadf",
|
|
3260
|
+
ref_block_hash: "0e50f4ddaa161211",
|
|
3261
|
+
expiration: 1664048097000,
|
|
3262
|
+
timestamp: 1664048037628,
|
|
3263
|
+
},
|
|
3264
|
+
internal_transactions: [],
|
|
3265
|
+
},
|
|
3266
|
+
{
|
|
3267
|
+
ret: [
|
|
3268
|
+
{
|
|
3269
|
+
contractRet: "SUCCESS",
|
|
3270
|
+
fee: 0,
|
|
3271
|
+
},
|
|
3272
|
+
],
|
|
3273
|
+
signature: [
|
|
3274
|
+
"9a83b282049eec4604172ab42a39ba18eead9f9893062282d4560e7422741ddb6d79a40b55effc967bfd1cd1e619c681aade495ca74493cb20addde46f59337501",
|
|
3275
|
+
],
|
|
3276
|
+
txID: "15dce098c16d3c3bbb469383dd56c04bdbd9307549e012289b5f86af66433ee8",
|
|
3277
|
+
net_usage: 383,
|
|
3278
|
+
raw_data_hex: "0a028d7d22083dda036b3eb2f42040c8baceebb6305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541b3530826f11f61cbd37afff14c85deabf3c60d5812154105cc125604448afeb6867eb688efb7e80411d57a18a80170e1f4caebb630",
|
|
3279
|
+
net_fee: 0,
|
|
3280
|
+
energy_usage: 0,
|
|
3281
|
+
blockNumber: 44469648,
|
|
3282
|
+
block_timestamp: 1663988580000,
|
|
3283
|
+
energy_fee: 0,
|
|
3284
|
+
energy_usage_total: 0,
|
|
3285
|
+
raw_data: {
|
|
3286
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3287
|
+
contract: [
|
|
3288
|
+
{
|
|
3289
|
+
parameter: {
|
|
3290
|
+
value: {
|
|
3291
|
+
amount: 168,
|
|
3292
|
+
owner_address: "41b3530826f11f61cbd37afff14c85deabf3c60d58",
|
|
3293
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3294
|
+
},
|
|
3295
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3296
|
+
},
|
|
3297
|
+
type: "TransferContract",
|
|
3298
|
+
},
|
|
3299
|
+
],
|
|
3300
|
+
ref_block_bytes: "8d7d",
|
|
3301
|
+
ref_block_hash: "3dda036b3eb2f420",
|
|
3302
|
+
expiration: 1663988637000,
|
|
3303
|
+
timestamp: 1663988578913,
|
|
3304
|
+
},
|
|
3305
|
+
internal_transactions: [],
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
ret: [
|
|
3309
|
+
{
|
|
3310
|
+
contractRet: "SUCCESS",
|
|
3311
|
+
fee: 0,
|
|
3312
|
+
},
|
|
3313
|
+
],
|
|
3314
|
+
signature: [
|
|
3315
|
+
"0ef0baa21cc348b4e461ba34fe942a08dc6b741c1f0d2ece117c733dae2bb611440c345d42f3cd32e6eeb0609a3edd4da6ad3788acc35a5278d898b7a320537000",
|
|
3316
|
+
],
|
|
3317
|
+
txID: "1e51aa4c487b8f8350a25c89802ca2c7f143896ff9db4b273d8f949ebd9b2762",
|
|
3318
|
+
net_usage: 383,
|
|
3319
|
+
raw_data_hex: "0a025c592208e1d151afa298534540e0dacdd9b6305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a15418486aa0ac4b8ff20dfb6b855d356b9f9a96f745a12154105cc125604448afeb6867eb688efb7e80411d57a18a80170df91cad9b630",
|
|
3320
|
+
net_fee: 0,
|
|
3321
|
+
energy_usage: 0,
|
|
3322
|
+
blockNumber: 44457068,
|
|
3323
|
+
block_timestamp: 1663950819000,
|
|
3324
|
+
energy_fee: 0,
|
|
3325
|
+
energy_usage_total: 0,
|
|
3326
|
+
raw_data: {
|
|
3327
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3328
|
+
contract: [
|
|
3329
|
+
{
|
|
3330
|
+
parameter: {
|
|
3331
|
+
value: {
|
|
3332
|
+
amount: 168,
|
|
3333
|
+
owner_address: "418486aa0ac4b8ff20dfb6b855d356b9f9a96f745a",
|
|
3334
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3335
|
+
},
|
|
3336
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3337
|
+
},
|
|
3338
|
+
type: "TransferContract",
|
|
3339
|
+
},
|
|
3340
|
+
],
|
|
3341
|
+
ref_block_bytes: "5c59",
|
|
3342
|
+
ref_block_hash: "e1d151afa2985345",
|
|
3343
|
+
expiration: 1663950876000,
|
|
3344
|
+
timestamp: 1663950817503,
|
|
3345
|
+
},
|
|
3346
|
+
internal_transactions: [],
|
|
3347
|
+
},
|
|
3348
|
+
{
|
|
3349
|
+
ret: [
|
|
3350
|
+
{
|
|
3351
|
+
contractRet: "SUCCESS",
|
|
3352
|
+
fee: 0,
|
|
3353
|
+
},
|
|
3354
|
+
],
|
|
3355
|
+
signature: [
|
|
3356
|
+
"86a28a6dfd5a96645f263a7f0d49e804747805fcb75288a3ebc197276d3ca95b119f965703791e6a1afad1c618411bc6e609acf97c28fc4dbd297c70dbe1916b01",
|
|
3357
|
+
],
|
|
3358
|
+
txID: "a0fa31b4a4466614227201aab75095b4159df673d37859296887b000dccbcc13",
|
|
3359
|
+
net_usage: 383,
|
|
3360
|
+
raw_data_hex: "0a02133122087e1cf7bb6dd0bada40a8eee6beb6305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a15418a0d8f5e362bc1aeed7b630ade00c420753da77312154105cc125604448afeb6867eb688efb7e80411d57a18a80170b8b0e3beb630",
|
|
3361
|
+
net_fee: 0,
|
|
3362
|
+
energy_usage: 0,
|
|
3363
|
+
blockNumber: 44438340,
|
|
3364
|
+
block_timestamp: 1663894608000,
|
|
3365
|
+
energy_fee: 0,
|
|
3366
|
+
energy_usage_total: 0,
|
|
3367
|
+
raw_data: {
|
|
3368
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3369
|
+
contract: [
|
|
3370
|
+
{
|
|
3371
|
+
parameter: {
|
|
3372
|
+
value: {
|
|
3373
|
+
amount: 168,
|
|
3374
|
+
owner_address: "418a0d8f5e362bc1aeed7b630ade00c420753da773",
|
|
3375
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3376
|
+
},
|
|
3377
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3378
|
+
},
|
|
3379
|
+
type: "TransferContract",
|
|
3380
|
+
},
|
|
3381
|
+
],
|
|
3382
|
+
ref_block_bytes: "1331",
|
|
3383
|
+
ref_block_hash: "7e1cf7bb6dd0bada",
|
|
3384
|
+
expiration: 1663894665000,
|
|
3385
|
+
timestamp: 1663894607928,
|
|
3386
|
+
},
|
|
3387
|
+
internal_transactions: [],
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
ret: [
|
|
3391
|
+
{
|
|
3392
|
+
contractRet: "SUCCESS",
|
|
3393
|
+
fee: 0,
|
|
3394
|
+
},
|
|
3395
|
+
],
|
|
3396
|
+
signature: [
|
|
3397
|
+
"4675c1082c63c1f5a06e6c83af461f421c899c93d8ce81ff011c7a8afe6f06077b50b0d8c89b7b1148e767adc7f14695a2ea7fc3fd8315ff9aadd9db792183cc01",
|
|
3398
|
+
],
|
|
3399
|
+
txID: "7af26140176c928b9ddc9daa581cee7299d634f7f590c2e9905e2b370222fd85",
|
|
3400
|
+
net_usage: 383,
|
|
3401
|
+
raw_data_hex: "0a02bce52208e1a818cda91060a040a0d7979fb6305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a154170917044631effd3412a8b479b338ff6b84c890112154105cc125604448afeb6867eb688efb7e80411d57a18a80170b096949fb630",
|
|
3402
|
+
net_fee: 0,
|
|
3403
|
+
energy_usage: 0,
|
|
3404
|
+
blockNumber: 44416249,
|
|
3405
|
+
block_timestamp: 1663828302000,
|
|
3406
|
+
energy_fee: 0,
|
|
3407
|
+
energy_usage_total: 0,
|
|
3408
|
+
raw_data: {
|
|
3409
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3410
|
+
contract: [
|
|
3411
|
+
{
|
|
3412
|
+
parameter: {
|
|
3413
|
+
value: {
|
|
3414
|
+
amount: 168,
|
|
3415
|
+
owner_address: "4170917044631effd3412a8b479b338ff6b84c8901",
|
|
3416
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3417
|
+
},
|
|
3418
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3419
|
+
},
|
|
3420
|
+
type: "TransferContract",
|
|
3421
|
+
},
|
|
3422
|
+
],
|
|
3423
|
+
ref_block_bytes: "bce5",
|
|
3424
|
+
ref_block_hash: "e1a818cda91060a0",
|
|
3425
|
+
expiration: 1663828356000,
|
|
3426
|
+
timestamp: 1663828298544,
|
|
3427
|
+
},
|
|
3428
|
+
internal_transactions: [],
|
|
3429
|
+
},
|
|
3430
|
+
{
|
|
3431
|
+
ret: [
|
|
3432
|
+
{
|
|
3433
|
+
contractRet: "SUCCESS",
|
|
3434
|
+
fee: 0,
|
|
3435
|
+
},
|
|
3436
|
+
],
|
|
3437
|
+
signature: [
|
|
3438
|
+
"41a9f1bfa20ea03415d6aacff1e570fcdcc20937fa2bb0fe9dbef9f80dd242a85f5bd737b6203a9ebc8d8e72742938076a7d13a2383e32a49a0b5fbac027d8df00",
|
|
3439
|
+
],
|
|
3440
|
+
txID: "ecaf42d47dccb05d103e289c55e28e45758c516d3893f4f519f607cfca6541ca",
|
|
3441
|
+
net_usage: 383,
|
|
3442
|
+
raw_data_hex: "0a028d8f2208883949ed995e9c5b40b8f2eb8db6305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a154144c469cf10e30841064e2bb7738a886ddef88cd512154105cc125604448afeb6867eb688efb7e80411d57a18a80170b1b0e88db630",
|
|
3443
|
+
net_fee: 0,
|
|
3444
|
+
energy_usage: 0,
|
|
3445
|
+
blockNumber: 44404130,
|
|
3446
|
+
block_timestamp: 1663791930000,
|
|
3447
|
+
energy_fee: 0,
|
|
3448
|
+
energy_usage_total: 0,
|
|
3449
|
+
raw_data: {
|
|
3450
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3451
|
+
contract: [
|
|
3452
|
+
{
|
|
3453
|
+
parameter: {
|
|
3454
|
+
value: {
|
|
3455
|
+
amount: 168,
|
|
3456
|
+
owner_address: "4144c469cf10e30841064e2bb7738a886ddef88cd5",
|
|
3457
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3458
|
+
},
|
|
3459
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3460
|
+
},
|
|
3461
|
+
type: "TransferContract",
|
|
3462
|
+
},
|
|
3463
|
+
],
|
|
3464
|
+
ref_block_bytes: "8d8f",
|
|
3465
|
+
ref_block_hash: "883949ed995e9c5b",
|
|
3466
|
+
expiration: 1663791987000,
|
|
3467
|
+
timestamp: 1663791929393,
|
|
3468
|
+
},
|
|
3469
|
+
internal_transactions: [],
|
|
3470
|
+
},
|
|
3471
|
+
{
|
|
3472
|
+
ret: [
|
|
3473
|
+
{
|
|
3474
|
+
contractRet: "SUCCESS",
|
|
3475
|
+
fee: 0,
|
|
3476
|
+
},
|
|
3477
|
+
],
|
|
3478
|
+
signature: [
|
|
3479
|
+
"1482bc559e56b31ed3d180094beb0f25ab637d082004425b4e9691b990f2f34f2f67d4cd0dd904aaafbafae502bd4577e4a831d4e74f577b95e97f7ab06ceb4200",
|
|
3480
|
+
],
|
|
3481
|
+
txID: "bb10ceb4394bcfb765674511a97342c0473ac29d01a0c0876e1d3ebe95804b39",
|
|
3482
|
+
net_usage: 383,
|
|
3483
|
+
raw_data_hex: "0a024c5e2208f78d169a2df08bf840c0cafaf5b5305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a154114c1568eb89746c5cd4659aed0841c3e3facdf6612154105cc125604448afeb6867eb688efb7e80411d57a18a80170b48af7f5b530",
|
|
3484
|
+
net_fee: 0,
|
|
3485
|
+
energy_usage: 0,
|
|
3486
|
+
blockNumber: 44387441,
|
|
3487
|
+
block_timestamp: 1663741839000,
|
|
3488
|
+
energy_fee: 0,
|
|
3489
|
+
energy_usage_total: 0,
|
|
3490
|
+
raw_data: {
|
|
3491
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3492
|
+
contract: [
|
|
3493
|
+
{
|
|
3494
|
+
parameter: {
|
|
3495
|
+
value: {
|
|
3496
|
+
amount: 168,
|
|
3497
|
+
owner_address: "4114c1568eb89746c5cd4659aed0841c3e3facdf66",
|
|
3498
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3499
|
+
},
|
|
3500
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3501
|
+
},
|
|
3502
|
+
type: "TransferContract",
|
|
3503
|
+
},
|
|
3504
|
+
],
|
|
3505
|
+
ref_block_bytes: "4c5e",
|
|
3506
|
+
ref_block_hash: "f78d169a2df08bf8",
|
|
3507
|
+
expiration: 1663741896000,
|
|
3508
|
+
timestamp: 1663741838644,
|
|
3509
|
+
},
|
|
3510
|
+
internal_transactions: [],
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
ret: [
|
|
3514
|
+
{
|
|
3515
|
+
contractRet: "SUCCESS",
|
|
3516
|
+
fee: 0,
|
|
3517
|
+
},
|
|
3518
|
+
],
|
|
3519
|
+
signature: [
|
|
3520
|
+
"86c0bf86829ac1192e20cc942b87f1570c10269502f274692518ff0867f4d6252f8a23094d7498c6c6ddf3f82ac9a979298694d7d6a438cbf6ed680da5bd92a001",
|
|
3521
|
+
],
|
|
3522
|
+
txID: "5ff8920250ace198c358c980cef67e60357f1c6025c3f6d9276bd8f7b67b9365",
|
|
3523
|
+
net_usage: 383,
|
|
3524
|
+
raw_data_hex: "0a021df422089a2a0a7d6e519db740d0baf9e4b5305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a1541d133c387e985f7fb8ad54ec1397fb9b3c69ecc6d12154105cc125604448afeb6867eb688efb7e80411d57a18a80170c5faf5e4b530",
|
|
3525
|
+
net_fee: 0,
|
|
3526
|
+
energy_usage: 0,
|
|
3527
|
+
blockNumber: 44375560,
|
|
3528
|
+
block_timestamp: 1663706172000,
|
|
3529
|
+
energy_fee: 0,
|
|
3530
|
+
energy_usage_total: 0,
|
|
3531
|
+
raw_data: {
|
|
3532
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3533
|
+
contract: [
|
|
3534
|
+
{
|
|
3535
|
+
parameter: {
|
|
3536
|
+
value: {
|
|
3537
|
+
amount: 168,
|
|
3538
|
+
owner_address: "41d133c387e985f7fb8ad54ec1397fb9b3c69ecc6d",
|
|
3539
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3540
|
+
},
|
|
3541
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3542
|
+
},
|
|
3543
|
+
type: "TransferContract",
|
|
3544
|
+
},
|
|
3545
|
+
],
|
|
3546
|
+
ref_block_bytes: "1df4",
|
|
3547
|
+
ref_block_hash: "9a2a0a7d6e519db7",
|
|
3548
|
+
expiration: 1663706226000,
|
|
3549
|
+
timestamp: 1663706168645,
|
|
3550
|
+
},
|
|
3551
|
+
internal_transactions: [],
|
|
3552
|
+
},
|
|
3553
|
+
{
|
|
3554
|
+
ret: [
|
|
3555
|
+
{
|
|
3556
|
+
contractRet: "SUCCESS",
|
|
3557
|
+
fee: 0,
|
|
3558
|
+
},
|
|
3559
|
+
],
|
|
3560
|
+
signature: [
|
|
3561
|
+
"c2388b89e62412f51d4d3b593044d44bcb6422d8f3bcb71d5b1184fc3e6f310b66dc79b951e92cc7b15a0c2f318dafd2a42bb53247fdba710407419ca83edc6000",
|
|
3562
|
+
],
|
|
3563
|
+
txID: "bf2f6b8753b439b6ab3528c9ed3f33b62efca25dc7140d48a8d6352b79d479e5",
|
|
3564
|
+
net_usage: 383,
|
|
3565
|
+
raw_data_hex: "0a02efac220837195615100f4dec40a881fed3b5305273e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d5a66080112620a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412310a15419b22a8e88766de241353ef52c4f76741a2caca4412154105cc125604448afeb6867eb688efb7e80411d57a18a80170e6b0fad3b530",
|
|
3566
|
+
net_fee: 0,
|
|
3567
|
+
energy_usage: 0,
|
|
3568
|
+
blockNumber: 44363711,
|
|
3569
|
+
block_timestamp: 1663670592000,
|
|
3570
|
+
energy_fee: 0,
|
|
3571
|
+
energy_usage_total: 0,
|
|
3572
|
+
raw_data: {
|
|
3573
|
+
data: "e883bde9878fe887aae58aa9e7a79fe8b581efbc8ce4bd8ee887b335e68a98efbc8ce5bc80e694be4150492e2053656c662d7365727669636520656e6572677920626f72726f77696e672c20757020746f20353025206f66662c206f70656e204150492e2074726f6e2d676173e2978f636f6d",
|
|
3574
|
+
contract: [
|
|
3575
|
+
{
|
|
3576
|
+
parameter: {
|
|
3577
|
+
value: {
|
|
3578
|
+
amount: 168,
|
|
3579
|
+
owner_address: "419b22a8e88766de241353ef52c4f76741a2caca44",
|
|
3580
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3581
|
+
},
|
|
3582
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3583
|
+
},
|
|
3584
|
+
type: "TransferContract",
|
|
3585
|
+
},
|
|
3586
|
+
],
|
|
3587
|
+
ref_block_bytes: "efac",
|
|
3588
|
+
ref_block_hash: "37195615100f4dec",
|
|
3589
|
+
expiration: 1663670649000,
|
|
3590
|
+
timestamp: 1663670589542,
|
|
3591
|
+
},
|
|
3592
|
+
internal_transactions: [],
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
ret: [
|
|
3596
|
+
{
|
|
3597
|
+
contractRet: "SUCCESS",
|
|
3598
|
+
fee: 0,
|
|
3599
|
+
},
|
|
3600
|
+
],
|
|
3601
|
+
signature: [
|
|
3602
|
+
"5d25fd36ed00a9a240804d9879c405c490eb1f6839a384e56d80f07e7dc28a0001c5bb0db5afd5f8b663fd9334bdd081e39343590073a6ab7e70166613a55fff00",
|
|
3603
|
+
],
|
|
3604
|
+
txID: "27a22a4423032a4aba00fc06e885c60bf2cc9bc03f71b1c56ca45fbffcab23dc",
|
|
3605
|
+
net_usage: 267,
|
|
3606
|
+
raw_data_hex: "0a02282122081766468cc0f4c6394088f88d83ad305a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f371880b51870cead8a83ad30",
|
|
3607
|
+
net_fee: 0,
|
|
3608
|
+
energy_usage: 0,
|
|
3609
|
+
blockNumber: 43591734,
|
|
3610
|
+
block_timestamp: 1661353506000,
|
|
3611
|
+
energy_fee: 0,
|
|
3612
|
+
energy_usage_total: 0,
|
|
3613
|
+
raw_data: {
|
|
3614
|
+
contract: [
|
|
3615
|
+
{
|
|
3616
|
+
parameter: {
|
|
3617
|
+
value: {
|
|
3618
|
+
amount: 400000,
|
|
3619
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3620
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
3621
|
+
},
|
|
3622
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3623
|
+
},
|
|
3624
|
+
type: "TransferContract",
|
|
3625
|
+
},
|
|
3626
|
+
],
|
|
3627
|
+
ref_block_bytes: "2821",
|
|
3628
|
+
ref_block_hash: "1766468cc0f4c639",
|
|
3629
|
+
expiration: 1661353557000,
|
|
3630
|
+
timestamp: 1661353498318,
|
|
3631
|
+
},
|
|
3632
|
+
internal_transactions: [],
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
ret: [
|
|
3636
|
+
{
|
|
3637
|
+
contractRet: "SUCCESS",
|
|
3638
|
+
fee: 0,
|
|
3639
|
+
},
|
|
3640
|
+
],
|
|
3641
|
+
signature: [
|
|
3642
|
+
"1dbcd353510aecb0af963f4a2db33d7c3e47447dd2e2ad68369528cfe9b0aa045450cec30c402d1bfd2a2d995b22ec1a1e716b55d37b882f13771f0f6ca0df3c00",
|
|
3643
|
+
],
|
|
3644
|
+
txID: "e09b6baf517efb49b599ae45b1caaad4e618c06d91bce54ff1c700b87f44bdc7",
|
|
3645
|
+
net_usage: 270,
|
|
3646
|
+
raw_data_hex: "0a02d6462208adf9d05a6eda024540f0c6bda9ab305a6a080412660a30747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e566f74655769746e657373436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a12190a15416758a9b1ed67eeaf14534ce6b770b83e4d7e7528100170aefcb9a9ab30",
|
|
3647
|
+
net_fee: 0,
|
|
3648
|
+
energy_usage: 0,
|
|
3649
|
+
blockNumber: 43439706,
|
|
3650
|
+
block_timestamp: 1660897104000,
|
|
3651
|
+
energy_fee: 0,
|
|
3652
|
+
energy_usage_total: 0,
|
|
3653
|
+
raw_data: {
|
|
3654
|
+
contract: [
|
|
3655
|
+
{
|
|
3656
|
+
parameter: {
|
|
3657
|
+
value: {
|
|
3658
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3659
|
+
votes: [
|
|
3660
|
+
{
|
|
3661
|
+
vote_address: "416758a9b1ed67eeaf14534ce6b770b83e4d7e7528",
|
|
3662
|
+
vote_count: 1,
|
|
3663
|
+
},
|
|
3664
|
+
],
|
|
3665
|
+
},
|
|
3666
|
+
type_url: "type.googleapis.com/protocol.VoteWitnessContract",
|
|
3667
|
+
},
|
|
3668
|
+
type: "VoteWitnessContract",
|
|
3669
|
+
},
|
|
3670
|
+
],
|
|
3671
|
+
ref_block_bytes: "d646",
|
|
3672
|
+
ref_block_hash: "adf9d05a6eda0245",
|
|
3673
|
+
expiration: 1660897158000,
|
|
3674
|
+
timestamp: 1660897099310,
|
|
3675
|
+
},
|
|
3676
|
+
internal_transactions: [],
|
|
3677
|
+
},
|
|
3678
|
+
{
|
|
3679
|
+
ret: [
|
|
3680
|
+
{
|
|
3681
|
+
contractRet: "SUCCESS",
|
|
3682
|
+
fee: 0,
|
|
3683
|
+
},
|
|
3684
|
+
],
|
|
3685
|
+
signature: [
|
|
3686
|
+
"d8734ad74fb90b6838bf2e2a36d4362b213c8cfd8c91892bfb983db630feea0742b6658e0b3e2b3275f70fa1e1596104fd2678061e2936c9f20d51995ad0436000",
|
|
3687
|
+
],
|
|
3688
|
+
txID: "619deacf58e4ab0db2feafb96a408f619b7fb43580470b7b6a90c9b68f948dd2",
|
|
3689
|
+
net_usage: 250,
|
|
3690
|
+
raw_data_hex: "0a02d634220829e4146a9343ca814080a1baa9ab305a57080b12530a32747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e467265657a6542616c616e6365436f6e7472616374121d0a154105cc125604448afeb6867eb688efb7e80411d57a10c0843d180370fbe6b6a9ab30",
|
|
3691
|
+
net_fee: 0,
|
|
3692
|
+
energy_usage: 0,
|
|
3693
|
+
blockNumber: 43439690,
|
|
3694
|
+
block_timestamp: 1660897056000,
|
|
3695
|
+
energy_fee: 0,
|
|
3696
|
+
energy_usage_total: 0,
|
|
3697
|
+
raw_data: {
|
|
3698
|
+
contract: [
|
|
3699
|
+
{
|
|
3700
|
+
parameter: {
|
|
3701
|
+
value: {
|
|
3702
|
+
resource: 0,
|
|
3703
|
+
frozen_duration: 3,
|
|
3704
|
+
resource_type: "BANDWIDTH",
|
|
3705
|
+
resource_value: 0,
|
|
3706
|
+
frozen_balance: 1000000,
|
|
3707
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3708
|
+
},
|
|
3709
|
+
type_url: "type.googleapis.com/protocol.FreezeBalanceContract",
|
|
3710
|
+
},
|
|
3711
|
+
type: "FreezeBalanceContract",
|
|
3712
|
+
},
|
|
3713
|
+
],
|
|
3714
|
+
ref_block_bytes: "d634",
|
|
3715
|
+
ref_block_hash: "29e4146a9343ca81",
|
|
3716
|
+
expiration: 1660897104000,
|
|
3717
|
+
timestamp: 1660897047419,
|
|
3718
|
+
},
|
|
3719
|
+
internal_transactions: [],
|
|
3720
|
+
},
|
|
3721
|
+
{
|
|
3722
|
+
ret: [
|
|
3723
|
+
{
|
|
3724
|
+
contractRet: "SUCCESS",
|
|
3725
|
+
fee: 0,
|
|
3726
|
+
},
|
|
3727
|
+
],
|
|
3728
|
+
signature: [
|
|
3729
|
+
"06f5bf1bf197816c9b036e81f92a1071749db832af44eea2f586509910c27d763007a3bc5236137728ef1daaf065e258831471efff15bc040d754d11821f73e400",
|
|
3730
|
+
],
|
|
3731
|
+
txID: "ffcd04dc7ea55e3806c46c283058511b9718f6c0310911799506d3821da1d0ef",
|
|
3732
|
+
net_usage: 267,
|
|
3733
|
+
raw_data_hex: "0a02d62e2208fa711ba30607a7f840b094b9a9ab305a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718a0c21e70c6d5b5a9ab30",
|
|
3734
|
+
net_fee: 0,
|
|
3735
|
+
energy_usage: 0,
|
|
3736
|
+
blockNumber: 43439683,
|
|
3737
|
+
block_timestamp: 1660897035000,
|
|
3738
|
+
energy_fee: 0,
|
|
3739
|
+
energy_usage_total: 0,
|
|
3740
|
+
raw_data: {
|
|
3741
|
+
contract: [
|
|
3742
|
+
{
|
|
3743
|
+
parameter: {
|
|
3744
|
+
value: {
|
|
3745
|
+
amount: 500000,
|
|
3746
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3747
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
3748
|
+
},
|
|
3749
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3750
|
+
},
|
|
3751
|
+
type: "TransferContract",
|
|
3752
|
+
},
|
|
3753
|
+
],
|
|
3754
|
+
ref_block_bytes: "d62e",
|
|
3755
|
+
ref_block_hash: "fa711ba30607a7f8",
|
|
3756
|
+
expiration: 1660897086000,
|
|
3757
|
+
timestamp: 1660897028806,
|
|
3758
|
+
},
|
|
3759
|
+
internal_transactions: [],
|
|
3760
|
+
},
|
|
3761
|
+
{
|
|
3762
|
+
ret: [
|
|
3763
|
+
{
|
|
3764
|
+
contractRet: "SUCCESS",
|
|
3765
|
+
fee: 0,
|
|
3766
|
+
},
|
|
3767
|
+
],
|
|
3768
|
+
signature: [
|
|
3769
|
+
"71faeccb465942710bc75916b53f33cfe9387cbd27488fbe60d74a3bbf097cb5243198770bcf0fdfb64bdb81d75f946fd37b830314ff485af35102364df1495701",
|
|
3770
|
+
],
|
|
3771
|
+
txID: "9a8132f9491cd9506170f85281f4feec6ca858996bd8313ba90ef72c51415f1e",
|
|
3772
|
+
net_usage: 267,
|
|
3773
|
+
raw_data_hex: "0a02d611220859574a120437db7040d8ecb3a9ab305a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154105cc125604448afeb6867eb688efb7e80411d57a18a08d06708ea0b0a9ab30",
|
|
3774
|
+
net_fee: 0,
|
|
3775
|
+
energy_usage: 0,
|
|
3776
|
+
blockNumber: 43439654,
|
|
3777
|
+
block_timestamp: 1660896948000,
|
|
3778
|
+
energy_fee: 0,
|
|
3779
|
+
energy_usage_total: 0,
|
|
3780
|
+
raw_data: {
|
|
3781
|
+
contract: [
|
|
3782
|
+
{
|
|
3783
|
+
parameter: {
|
|
3784
|
+
value: {
|
|
3785
|
+
amount: 100000,
|
|
3786
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
3787
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3788
|
+
},
|
|
3789
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3790
|
+
},
|
|
3791
|
+
type: "TransferContract",
|
|
3792
|
+
},
|
|
3793
|
+
],
|
|
3794
|
+
ref_block_bytes: "d611",
|
|
3795
|
+
ref_block_hash: "59574a120437db70",
|
|
3796
|
+
expiration: 1660896999000,
|
|
3797
|
+
timestamp: 1660896940046,
|
|
3798
|
+
},
|
|
3799
|
+
internal_transactions: [],
|
|
3800
|
+
},
|
|
3801
|
+
{
|
|
3802
|
+
ret: [
|
|
3803
|
+
{
|
|
3804
|
+
contractRet: "SUCCESS",
|
|
3805
|
+
fee: 1100000,
|
|
3806
|
+
},
|
|
3807
|
+
],
|
|
3808
|
+
signature: [
|
|
3809
|
+
"dd124fae80eb5c22edef3518fe17966c8b97a4079171a5fd16135088b5cdbdb26d4399b428a4aed60bf5e31dc918b88163dd044c5dcad671681764c2304171e700",
|
|
3810
|
+
],
|
|
3811
|
+
txID: "e1dc9dac82f9567a308b619c5386997e11abae4ff0534e714271ec6a35882dc5",
|
|
3812
|
+
net_usage: 0,
|
|
3813
|
+
raw_data_hex: "0a02aac72208be4bbb663b228fc340f0b180c39c305a67080112630a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412320a154105cc125604448afeb6867eb688efb7e80411d57a121541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3718a08d0670a5f7fcc29c30",
|
|
3814
|
+
net_fee: 100000,
|
|
3815
|
+
energy_usage: 0,
|
|
3816
|
+
blockNumber: 42117852,
|
|
3817
|
+
block_timestamp: 1656924099000,
|
|
3818
|
+
energy_fee: 0,
|
|
3819
|
+
energy_usage_total: 0,
|
|
3820
|
+
raw_data: {
|
|
3821
|
+
contract: [
|
|
3822
|
+
{
|
|
3823
|
+
parameter: {
|
|
3824
|
+
value: {
|
|
3825
|
+
amount: 100000,
|
|
3826
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3827
|
+
to_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
3828
|
+
},
|
|
3829
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3830
|
+
},
|
|
3831
|
+
type: "TransferContract",
|
|
3832
|
+
},
|
|
3833
|
+
],
|
|
3834
|
+
ref_block_bytes: "aac7",
|
|
3835
|
+
ref_block_hash: "be4bbb663b228fc3",
|
|
3836
|
+
expiration: 1656924150000,
|
|
3837
|
+
timestamp: 1656924093349,
|
|
3838
|
+
},
|
|
3839
|
+
internal_transactions: [],
|
|
3840
|
+
},
|
|
3841
|
+
{
|
|
3842
|
+
ret: [
|
|
3843
|
+
{
|
|
3844
|
+
contractRet: "SUCCESS",
|
|
3845
|
+
fee: 1100000,
|
|
3846
|
+
},
|
|
3847
|
+
],
|
|
3848
|
+
signature: [
|
|
3849
|
+
"71dd827b5cd4752726bf590ad1f2ef83dd986fd7f9614b20ca00d65362c82568376ad0131f66f8a3d3c436cd90530713473c4b43954ee3f0f6b2f06f5325504301",
|
|
3850
|
+
],
|
|
3851
|
+
txID: "5ca58f18d5f502592ed636986fedf56efe1690c74028b58c0af01ba1f7e4c1c2",
|
|
3852
|
+
net_usage: 0,
|
|
3853
|
+
raw_data_hex: "0a022104220845a13535c6377a6e40a0fdcca488305a68080112640a2d747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e5472616e73666572436f6e747261637412330a15414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e4612154105cc125604448afeb6867eb688efb7e80411d57a18c08db70170cbdfc9a48830",
|
|
3854
|
+
net_fee: 100000,
|
|
3855
|
+
energy_usage: 0,
|
|
3856
|
+
blockNumber: 40313116,
|
|
3857
|
+
block_timestamp: 1651491642000,
|
|
3858
|
+
energy_fee: 0,
|
|
3859
|
+
energy_usage_total: 0,
|
|
3860
|
+
raw_data: {
|
|
3861
|
+
contract: [
|
|
3862
|
+
{
|
|
3863
|
+
parameter: {
|
|
3864
|
+
value: {
|
|
3865
|
+
amount: 3000000,
|
|
3866
|
+
owner_address: "414dc5728aca3bfc9fd2dcfc4cbd585b645f3e7e46",
|
|
3867
|
+
to_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3868
|
+
},
|
|
3869
|
+
type_url: "type.googleapis.com/protocol.TransferContract",
|
|
3870
|
+
},
|
|
3871
|
+
type: "TransferContract",
|
|
3872
|
+
},
|
|
3873
|
+
],
|
|
3874
|
+
ref_block_bytes: "2104",
|
|
3875
|
+
ref_block_hash: "45a13535c6377a6e",
|
|
3876
|
+
expiration: 1651491684000,
|
|
3877
|
+
timestamp: 1651491631051,
|
|
3878
|
+
},
|
|
3879
|
+
internal_transactions: [],
|
|
3880
|
+
},
|
|
3881
|
+
],
|
|
3882
|
+
success: true,
|
|
3883
|
+
meta: {
|
|
3884
|
+
at: 1718032139934,
|
|
3885
|
+
page_size: 95,
|
|
3886
|
+
},
|
|
3887
|
+
};
|
|
3888
|
+
exports.TRC20_FIXTURE = {
|
|
3889
|
+
data: [
|
|
3890
|
+
{
|
|
3891
|
+
transaction_id: "1237889e91c0ebbe389436c341865df09921f8f0c029d9286102372cbaadc585",
|
|
3892
|
+
token_info: {
|
|
3893
|
+
symbol: "WIN",
|
|
3894
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
3895
|
+
decimals: 6,
|
|
3896
|
+
name: "WINkLink",
|
|
3897
|
+
},
|
|
3898
|
+
block_timestamp: 1690896219000,
|
|
3899
|
+
from: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
3900
|
+
to: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
3901
|
+
detail: {
|
|
3902
|
+
ret: [
|
|
3903
|
+
{
|
|
3904
|
+
contractRet: "SUCCESS",
|
|
3905
|
+
fee: 0,
|
|
3906
|
+
},
|
|
3907
|
+
],
|
|
3908
|
+
signature: [
|
|
3909
|
+
"8e353cdac72bca51f3510001d53febdca9555c8440fa35cd6fc0c0153a2b10661a03db68f156213dcb92f34cfac76a6ef90ecd3db06c5c77863896a5d76c8ea901",
|
|
3910
|
+
],
|
|
3911
|
+
txID: "1237889e91c0ebbe389436c341865df09921f8f0c029d9286102372cbaadc585",
|
|
3912
|
+
net_usage: 345,
|
|
3913
|
+
raw_data_hex: "0a0231e822083d8710a83f49c56240e89c968a9b315aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee70cecc928a9b31900180e1eb17",
|
|
3914
|
+
net_fee: 0,
|
|
3915
|
+
energy_usage: 0,
|
|
3916
|
+
blockNumber: 53424636,
|
|
3917
|
+
block_timestamp: 1690896219000,
|
|
3918
|
+
energy_fee: 0,
|
|
3919
|
+
energy_usage_total: 28263,
|
|
3920
|
+
raw_data: {
|
|
3921
|
+
contract: [
|
|
3922
|
+
{
|
|
3923
|
+
parameter: {
|
|
3924
|
+
value: {
|
|
3925
|
+
data: "a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee",
|
|
3926
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
3927
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
3928
|
+
},
|
|
3929
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
3930
|
+
},
|
|
3931
|
+
type: "TriggerSmartContract",
|
|
3932
|
+
},
|
|
3933
|
+
],
|
|
3934
|
+
ref_block_bytes: "31e8",
|
|
3935
|
+
ref_block_hash: "3d8710a83f49c562",
|
|
3936
|
+
expiration: 1690896273000,
|
|
3937
|
+
fee_limit: 50000000,
|
|
3938
|
+
timestamp: 1690896213582,
|
|
3939
|
+
},
|
|
3940
|
+
internal_transactions: [],
|
|
3941
|
+
},
|
|
3942
|
+
type: "Transfer",
|
|
3943
|
+
value: "1506542",
|
|
3944
|
+
},
|
|
3945
|
+
{
|
|
3946
|
+
transaction_id: "154164dd04482ae78f930033d0ad95730b8b19fde171a33c3920d18c228426ab",
|
|
3947
|
+
token_info: {
|
|
3948
|
+
symbol: "WIN",
|
|
3949
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
3950
|
+
decimals: 6,
|
|
3951
|
+
name: "WINkLink",
|
|
3952
|
+
},
|
|
3953
|
+
block_timestamp: 1676452587000,
|
|
3954
|
+
from: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
3955
|
+
to: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
3956
|
+
detail: {
|
|
3957
|
+
ret: [
|
|
3958
|
+
{
|
|
3959
|
+
contractRet: "SUCCESS",
|
|
3960
|
+
fee: 0,
|
|
3961
|
+
},
|
|
3962
|
+
],
|
|
3963
|
+
signature: [
|
|
3964
|
+
"32819c5cf224586bd9fd976307454166999af173bae3906c18745a5ddd584265237074c43e3418b43c0f923c348588f2a43b86705d3ff67abb6d728fc28f2f8c01",
|
|
3965
|
+
],
|
|
3966
|
+
txID: "154164dd04482ae78f930033d0ad95730b8b19fde171a33c3920d18c228426ab",
|
|
3967
|
+
net_usage: 345,
|
|
3968
|
+
raw_data_hex: "0a02ce7d220887273c4324d0757440f8c2f4a2e5305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee709a83f1a2e530900180e1eb17",
|
|
3969
|
+
net_fee: 0,
|
|
3970
|
+
energy_usage: 0,
|
|
3971
|
+
blockNumber: 48615059,
|
|
3972
|
+
block_timestamp: 1676452587000,
|
|
3973
|
+
energy_fee: 0,
|
|
3974
|
+
energy_usage_total: 28263,
|
|
3975
|
+
raw_data: {
|
|
3976
|
+
contract: [
|
|
3977
|
+
{
|
|
3978
|
+
parameter: {
|
|
3979
|
+
value: {
|
|
3980
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee",
|
|
3981
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
3982
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
3983
|
+
},
|
|
3984
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
3985
|
+
},
|
|
3986
|
+
type: "TriggerSmartContract",
|
|
3987
|
+
},
|
|
3988
|
+
],
|
|
3989
|
+
ref_block_bytes: "ce7d",
|
|
3990
|
+
ref_block_hash: "87273c4324d07574",
|
|
3991
|
+
expiration: 1676452635000,
|
|
3992
|
+
fee_limit: 50000000,
|
|
3993
|
+
timestamp: 1676452577690,
|
|
3994
|
+
},
|
|
3995
|
+
internal_transactions: [],
|
|
3996
|
+
},
|
|
3997
|
+
type: "Transfer",
|
|
3998
|
+
value: "1506542",
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
transaction_id: "14988c5f97977ad627c3ceec55b13d78cccd8455a72c08cb248b4ea89cc8a1fc",
|
|
4002
|
+
token_info: {
|
|
4003
|
+
symbol: "WIN",
|
|
4004
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4005
|
+
decimals: 6,
|
|
4006
|
+
name: "WINkLink",
|
|
4007
|
+
},
|
|
4008
|
+
block_timestamp: 1676451558000,
|
|
4009
|
+
from: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
4010
|
+
to: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4011
|
+
detail: {
|
|
4012
|
+
ret: [
|
|
4013
|
+
{
|
|
4014
|
+
contractRet: "SUCCESS",
|
|
4015
|
+
fee: 0,
|
|
4016
|
+
},
|
|
4017
|
+
],
|
|
4018
|
+
signature: [
|
|
4019
|
+
"4edc94186666bc4cbe98fab52d53f6a7d774f96e179ef785cbe5f42d3e39c33866200b68c2d661ab00cc1e30977229e53bc08f4a7d93fce35e7e31de9106c56901",
|
|
4020
|
+
],
|
|
4021
|
+
txID: "14988c5f97977ad627c3ceec55b13d78cccd8455a72c08cb248b4ea89cc8a1fc",
|
|
4022
|
+
net_usage: 345,
|
|
4023
|
+
raw_data_hex: "0a02cd202208f02fcc47f58b942a40a0cfb4a2e5305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee70dbffb0a2e530900180e1eb17",
|
|
4024
|
+
net_fee: 0,
|
|
4025
|
+
energy_usage: 0,
|
|
4026
|
+
blockNumber: 48614716,
|
|
4027
|
+
block_timestamp: 1676451558000,
|
|
4028
|
+
energy_fee: 0,
|
|
4029
|
+
energy_usage_total: 28263,
|
|
4030
|
+
raw_data: {
|
|
4031
|
+
contract: [
|
|
4032
|
+
{
|
|
4033
|
+
parameter: {
|
|
4034
|
+
value: {
|
|
4035
|
+
data: "a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee",
|
|
4036
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
4037
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4038
|
+
},
|
|
4039
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4040
|
+
},
|
|
4041
|
+
type: "TriggerSmartContract",
|
|
4042
|
+
},
|
|
4043
|
+
],
|
|
4044
|
+
ref_block_bytes: "cd20",
|
|
4045
|
+
ref_block_hash: "f02fcc47f58b942a",
|
|
4046
|
+
expiration: 1676451588000,
|
|
4047
|
+
fee_limit: 50000000,
|
|
4048
|
+
timestamp: 1676451528667,
|
|
4049
|
+
},
|
|
4050
|
+
internal_transactions: [],
|
|
4051
|
+
},
|
|
4052
|
+
type: "Transfer",
|
|
4053
|
+
value: "1506542",
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
transaction_id: "deb6829859ffe7c6ee8c4c41ae2ca7efc13ebc81da33319d7db8b442ec2ce18f",
|
|
4057
|
+
token_info: {
|
|
4058
|
+
symbol: "WIN",
|
|
4059
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4060
|
+
decimals: 6,
|
|
4061
|
+
name: "WINkLink",
|
|
4062
|
+
},
|
|
4063
|
+
block_timestamp: 1676450838000,
|
|
4064
|
+
from: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4065
|
+
to: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
4066
|
+
detail: {
|
|
4067
|
+
ret: [
|
|
4068
|
+
{
|
|
4069
|
+
contractRet: "SUCCESS",
|
|
4070
|
+
fee: 0,
|
|
4071
|
+
},
|
|
4072
|
+
],
|
|
4073
|
+
signature: [
|
|
4074
|
+
"d2d9268368b0dd49053e048dbc7cad93c00328eb5cf19094901c02171827f259497042150e3916c183e2a7fc74045ac90d523d51edbf043cb75b62095813bbd200",
|
|
4075
|
+
],
|
|
4076
|
+
txID: "deb6829859ffe7c6ee8c4c41ae2ca7efc13ebc81da33319d7db8b442ec2ce18f",
|
|
4077
|
+
net_usage: 345,
|
|
4078
|
+
raw_data_hex: "0a02cc37220827fc3ac3451eeb2840a8fa89a2e5305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee7087b186a2e530900180e1eb17",
|
|
4079
|
+
net_fee: 0,
|
|
4080
|
+
energy_usage: 0,
|
|
4081
|
+
blockNumber: 48614476,
|
|
4082
|
+
block_timestamp: 1676450838000,
|
|
4083
|
+
energy_fee: 0,
|
|
4084
|
+
energy_usage_total: 28263,
|
|
4085
|
+
raw_data: {
|
|
4086
|
+
contract: [
|
|
4087
|
+
{
|
|
4088
|
+
parameter: {
|
|
4089
|
+
value: {
|
|
4090
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000016fcee",
|
|
4091
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
4092
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4093
|
+
},
|
|
4094
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4095
|
+
},
|
|
4096
|
+
type: "TriggerSmartContract",
|
|
4097
|
+
},
|
|
4098
|
+
],
|
|
4099
|
+
ref_block_bytes: "cc37",
|
|
4100
|
+
ref_block_hash: "27fc3ac3451eeb28",
|
|
4101
|
+
expiration: 1676450889000,
|
|
4102
|
+
fee_limit: 50000000,
|
|
4103
|
+
timestamp: 1676450830471,
|
|
4104
|
+
},
|
|
4105
|
+
internal_transactions: [],
|
|
4106
|
+
},
|
|
4107
|
+
type: "Transfer",
|
|
4108
|
+
value: "1506542",
|
|
4109
|
+
},
|
|
4110
|
+
{
|
|
4111
|
+
transaction_id: "b990dcf791f50c66d07066021a76380eaf56a32e7703df0e210221cccc7524cb",
|
|
4112
|
+
token_info: {
|
|
4113
|
+
symbol: "WIN",
|
|
4114
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4115
|
+
decimals: 6,
|
|
4116
|
+
name: "WINkLink",
|
|
4117
|
+
},
|
|
4118
|
+
block_timestamp: 1676306403000,
|
|
4119
|
+
from: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
4120
|
+
to: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4121
|
+
detail: {
|
|
4122
|
+
ret: [
|
|
4123
|
+
{
|
|
4124
|
+
contractRet: "SUCCESS",
|
|
4125
|
+
fee: 0,
|
|
4126
|
+
},
|
|
4127
|
+
],
|
|
4128
|
+
signature: [
|
|
4129
|
+
"4bb37c4d6dd3ec59f45a4affe9cc20519c3515e54c4853f38bf49063bddb40a7612f4012191e637ccc3f860fc0c162fd9a38cdc19a25b44a272cd9a75689c5f201",
|
|
4130
|
+
],
|
|
4131
|
+
txID: "b990dcf791f50c66d07066021a76380eaf56a32e7703df0e210221cccc7524cb",
|
|
4132
|
+
net_usage: 345,
|
|
4133
|
+
raw_data_hex: "0a02103b22089734a52b9604567d40f0ab9adde4305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a1541a2ff80f95ce3740235dc46a4dffe00d9f9b91f3712154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016e36070cde396dde430900180e1eb17",
|
|
4134
|
+
net_fee: 0,
|
|
4135
|
+
energy_usage: 0,
|
|
4136
|
+
blockNumber: 48566352,
|
|
4137
|
+
block_timestamp: 1676306403000,
|
|
4138
|
+
energy_fee: 0,
|
|
4139
|
+
energy_usage_total: 13263,
|
|
4140
|
+
raw_data: {
|
|
4141
|
+
contract: [
|
|
4142
|
+
{
|
|
4143
|
+
parameter: {
|
|
4144
|
+
value: {
|
|
4145
|
+
data: "a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016e360",
|
|
4146
|
+
owner_address: "41a2ff80f95ce3740235dc46a4dffe00d9f9b91f37",
|
|
4147
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4148
|
+
},
|
|
4149
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4150
|
+
},
|
|
4151
|
+
type: "TriggerSmartContract",
|
|
4152
|
+
},
|
|
4153
|
+
],
|
|
4154
|
+
ref_block_bytes: "103b",
|
|
4155
|
+
ref_block_hash: "9734a52b9604567d",
|
|
4156
|
+
expiration: 1676306454000,
|
|
4157
|
+
fee_limit: 50000000,
|
|
4158
|
+
timestamp: 1676306395597,
|
|
4159
|
+
},
|
|
4160
|
+
internal_transactions: [],
|
|
4161
|
+
},
|
|
4162
|
+
type: "Transfer",
|
|
4163
|
+
value: "1500000",
|
|
4164
|
+
},
|
|
4165
|
+
{
|
|
4166
|
+
transaction_id: "47bd809b9a8d5181d9a752f202c8421892ca719d618293f431eae0c1e318e99e",
|
|
4167
|
+
token_info: {
|
|
4168
|
+
symbol: "WIN",
|
|
4169
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4170
|
+
decimals: 6,
|
|
4171
|
+
name: "WINkLink",
|
|
4172
|
+
},
|
|
4173
|
+
block_timestamp: 1675766052000,
|
|
4174
|
+
from: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4175
|
+
to: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
4176
|
+
detail: {
|
|
4177
|
+
ret: [
|
|
4178
|
+
{
|
|
4179
|
+
contractRet: "SUCCESS",
|
|
4180
|
+
fee: 0,
|
|
4181
|
+
},
|
|
4182
|
+
],
|
|
4183
|
+
signature: [
|
|
4184
|
+
"de40603f441a27b36a5e8591d1463d83449a0c3d985d0eeaf41b87f6c233ee9a57a1555482a3e4f0b42d0425441c7b7240bdb6247640102d5c3f4ed39612eeef01",
|
|
4185
|
+
],
|
|
4186
|
+
txID: "47bd809b9a8d5181d9a752f202c8421892ca719d618293f431eae0c1e318e99e",
|
|
4187
|
+
net_usage: 345,
|
|
4188
|
+
raw_data_hex: "0a0251de2208b9a9e2eba06a8dc840a0e0c5dbe2305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f3700000000000000000000000000000000000000000000000000000000000f424070b0a6c2dbe23090018087a70e",
|
|
4189
|
+
net_fee: 0,
|
|
4190
|
+
energy_usage: 0,
|
|
4191
|
+
blockNumber: 48386548,
|
|
4192
|
+
block_timestamp: 1675766052000,
|
|
4193
|
+
energy_fee: 0,
|
|
4194
|
+
energy_usage_total: 13263,
|
|
4195
|
+
raw_data: {
|
|
4196
|
+
contract: [
|
|
4197
|
+
{
|
|
4198
|
+
parameter: {
|
|
4199
|
+
value: {
|
|
4200
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f3700000000000000000000000000000000000000000000000000000000000f4240",
|
|
4201
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
4202
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4203
|
+
},
|
|
4204
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4205
|
+
},
|
|
4206
|
+
type: "TriggerSmartContract",
|
|
4207
|
+
},
|
|
4208
|
+
],
|
|
4209
|
+
ref_block_bytes: "51de",
|
|
4210
|
+
ref_block_hash: "b9a9e2eba06a8dc8",
|
|
4211
|
+
expiration: 1675766100000,
|
|
4212
|
+
fee_limit: 30000000,
|
|
4213
|
+
timestamp: 1675766043440,
|
|
4214
|
+
},
|
|
4215
|
+
internal_transactions: [],
|
|
4216
|
+
},
|
|
4217
|
+
type: "Transfer",
|
|
4218
|
+
value: "1000000",
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
transaction_id: "7cb9e8b44ee63b47e615f77ef26406e0d11c95943faa328ab67b62987f752176",
|
|
4222
|
+
token_info: {
|
|
4223
|
+
symbol: "WIN",
|
|
4224
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4225
|
+
decimals: 6,
|
|
4226
|
+
name: "WINkLink",
|
|
4227
|
+
},
|
|
4228
|
+
block_timestamp: 1670509320000,
|
|
4229
|
+
from: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4230
|
+
to: "TQq4YrKRywkd9vLYw2nZKiFfMpbQiL8gKK",
|
|
4231
|
+
detail: {
|
|
4232
|
+
ret: [
|
|
4233
|
+
{
|
|
4234
|
+
contractRet: "SUCCESS",
|
|
4235
|
+
fee: 0,
|
|
4236
|
+
},
|
|
4237
|
+
],
|
|
4238
|
+
signature: [
|
|
4239
|
+
"e67e62c7390d6adb46a9ede9796e46a02f28ac0cb72cc4ea2ee250d44b5913f81d580da10099af529dd86a6bd68d50ef6814b6a21f8fdfdc67664f4231e51f2300",
|
|
4240
|
+
],
|
|
4241
|
+
txID: "7cb9e8b44ee63b47e615f77ef26406e0d11c95943faa328ab67b62987f752176",
|
|
4242
|
+
net_usage: 345,
|
|
4243
|
+
raw_data_hex: "0a02ad1022084a90958a4d2e2e6340c0a5f890cf305aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a154105cc125604448afeb6867eb688efb7e80411d57a12154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000007a1207080e2f490cf30900180dac409",
|
|
4244
|
+
net_fee: 0,
|
|
4245
|
+
energy_usage: 0,
|
|
4246
|
+
blockNumber: 46640422,
|
|
4247
|
+
block_timestamp: 1670509320000,
|
|
4248
|
+
energy_fee: 0,
|
|
4249
|
+
energy_usage_total: 28263,
|
|
4250
|
+
raw_data: {
|
|
4251
|
+
contract: [
|
|
4252
|
+
{
|
|
4253
|
+
parameter: {
|
|
4254
|
+
value: {
|
|
4255
|
+
data: "a9059cbb000000000000000000000041a2ff80f95ce3740235dc46a4dffe00d9f9b91f37000000000000000000000000000000000000000000000000000000000007a120",
|
|
4256
|
+
owner_address: "4105cc125604448afeb6867eb688efb7e80411d57a",
|
|
4257
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4258
|
+
},
|
|
4259
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4260
|
+
},
|
|
4261
|
+
type: "TriggerSmartContract",
|
|
4262
|
+
},
|
|
4263
|
+
],
|
|
4264
|
+
ref_block_bytes: "ad10",
|
|
4265
|
+
ref_block_hash: "4a90958a4d2e2e63",
|
|
4266
|
+
expiration: 1670509368000,
|
|
4267
|
+
fee_limit: 20000000,
|
|
4268
|
+
timestamp: 1670509310208,
|
|
4269
|
+
},
|
|
4270
|
+
internal_transactions: [],
|
|
4271
|
+
},
|
|
4272
|
+
type: "Transfer",
|
|
4273
|
+
value: "500000",
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
transaction_id: "387099712c6c16f153220591e4428047888dd551e87bde17866f6c088d7560ce",
|
|
4277
|
+
token_info: {
|
|
4278
|
+
symbol: "WIN",
|
|
4279
|
+
address: "TLa2f6VPqDgRE67v1736s7bJ8Ray5wYjU7",
|
|
4280
|
+
decimals: 6,
|
|
4281
|
+
name: "WINkLink",
|
|
4282
|
+
},
|
|
4283
|
+
block_timestamp: 1645192425000,
|
|
4284
|
+
from: "TM7YNtW7feriKvfHiDmAdVeZ4LNnJrbuxg",
|
|
4285
|
+
to: "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj",
|
|
4286
|
+
detail: {
|
|
4287
|
+
ret: [
|
|
4288
|
+
{
|
|
4289
|
+
contractRet: "SUCCESS",
|
|
4290
|
+
fee: 0,
|
|
4291
|
+
},
|
|
4292
|
+
],
|
|
4293
|
+
signature: [
|
|
4294
|
+
"78ea2a6d0498a712096f316aaf0f7a70e7e5069c0dec9276267713573fd56e317460896175b34e9269da38e78780fca318055c6ea470370500c5d4f00c6c1cdb01",
|
|
4295
|
+
],
|
|
4296
|
+
txID: "387099712c6c16f153220591e4428047888dd551e87bde17866f6c088d7560ce",
|
|
4297
|
+
net_usage: 345,
|
|
4298
|
+
raw_data_hex: "0a021fc22208c8fe7fe8dcefc24240e0eaf3e8f02f5aae01081f12a9010a31747970652e676f6f676c65617069732e636f6d2f70726f746f636f6c2e54726967676572536d617274436f6e747261637412740a15417a3ce2ca51988d3d6a8401cf7d41ae111a464c5012154174472e7d35395a6b5add427eecb7f4b62ad2b0712244a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee70cc9ef0e8f02f900180ade204",
|
|
4299
|
+
net_fee: 0,
|
|
4300
|
+
energy_usage: 0,
|
|
4301
|
+
blockNumber: 38215639,
|
|
4302
|
+
block_timestamp: 1645192425000,
|
|
4303
|
+
energy_fee: 0,
|
|
4304
|
+
energy_usage_total: 28248,
|
|
4305
|
+
raw_data: {
|
|
4306
|
+
contract: [
|
|
4307
|
+
{
|
|
4308
|
+
parameter: {
|
|
4309
|
+
value: {
|
|
4310
|
+
data: "a9059cbb00000000000000000000004105cc125604448afeb6867eb688efb7e80411d57a000000000000000000000000000000000000000000000000000000000016fcee",
|
|
4311
|
+
owner_address: "417a3ce2ca51988d3d6a8401cf7d41ae111a464c50",
|
|
4312
|
+
contract_address: "4174472e7d35395a6b5add427eecb7f4b62ad2b071",
|
|
4313
|
+
},
|
|
4314
|
+
type_url: "type.googleapis.com/protocol.TriggerSmartContract",
|
|
4315
|
+
},
|
|
4316
|
+
type: "TriggerSmartContract",
|
|
4317
|
+
},
|
|
4318
|
+
],
|
|
4319
|
+
ref_block_bytes: "1fc2",
|
|
4320
|
+
ref_block_hash: "c8fe7fe8dcefc242",
|
|
4321
|
+
expiration: 1645192476000,
|
|
4322
|
+
fee_limit: 10000000,
|
|
4323
|
+
timestamp: 1645192417100,
|
|
4324
|
+
},
|
|
4325
|
+
internal_transactions: [],
|
|
4326
|
+
},
|
|
4327
|
+
type: "Transfer",
|
|
4328
|
+
value: "1506542",
|
|
4329
|
+
},
|
|
4330
|
+
],
|
|
4331
|
+
success: true,
|
|
4332
|
+
meta: {
|
|
4333
|
+
at: 1718032314555,
|
|
4334
|
+
page_size: 8,
|
|
4335
|
+
},
|
|
4336
|
+
};
|
|
4337
|
+
const TRANSACTION_DETAIL_FIXTURE = (id) => ({
|
|
4338
|
+
id,
|
|
4339
|
+
fee: 1000000,
|
|
4340
|
+
blockNumber: 61341972,
|
|
4341
|
+
blockTimeStamp: 1714668672000,
|
|
4342
|
+
contractResult: [""],
|
|
4343
|
+
receipt: {
|
|
4344
|
+
net_usage: 268,
|
|
4345
|
+
},
|
|
4346
|
+
});
|
|
4347
|
+
exports.TRANSACTION_DETAIL_FIXTURE = TRANSACTION_DETAIL_FIXTURE;
|
|
4348
|
+
exports.TRC20_DETAIL_FIXTURE = {
|
|
4349
|
+
id: "4b845fb536e8022e804506855eaeb8cd7cbb698bf1bfb9e7bbac361bf5541ab9",
|
|
4350
|
+
fee: 27250860,
|
|
4351
|
+
blockNumber: 59325846,
|
|
4352
|
+
blockTimeStamp: 1708612761000,
|
|
4353
|
+
contractResult: ["0000000000000000000000000000000000000000000000000000000000000000"],
|
|
4354
|
+
contract_address: "41a614f803b6fd780986a42c78ec9c7f77e6ded13c",
|
|
4355
|
+
receipt: {
|
|
4356
|
+
energy_usage: 12,
|
|
4357
|
+
energy_fee: 27250860,
|
|
4358
|
+
energy_usage_total: 64895,
|
|
4359
|
+
net_usage: 345,
|
|
4360
|
+
result: "SUCCESS",
|
|
4361
|
+
energy_penalty_total: 35245,
|
|
4362
|
+
},
|
|
4363
|
+
log: [
|
|
4364
|
+
{
|
|
4365
|
+
address: "a614f803b6fd780986a42c78ec9c7f77e6ded13c",
|
|
4366
|
+
topics: [
|
|
4367
|
+
"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
|
|
4368
|
+
"0000000000000000000000006e3b44b96104b26f84057974a1f0c9880f7c9b13",
|
|
4369
|
+
"000000000000000000000000960dc13bfae0506d2e44fb76e32e89dc7188f004",
|
|
4370
|
+
],
|
|
4371
|
+
data: "00000000000000000000000000000000000000000000000000000000000186a0",
|
|
4372
|
+
},
|
|
4373
|
+
],
|
|
4374
|
+
};
|
|
4375
|
+
//# sourceMappingURL=types.fixture.js.map
|