File size: 5,951 Bytes
64cd647
 
 
0f04ad8
64cd647
 
81b4b35
0f04ad8
81b4b35
 
 
64cd647
 
 
 
 
 
 
 
 
 
 
 
 
81b4b35
9c1e0c8
0f04ad8
64cd647
 
 
 
 
 
0f04ad8
64cd647
81b4b35
 
0f04ad8
 
 
 
 
 
 
 
 
 
 
 
64cd647
 
81b4b35
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64cd647
 
 
 
 
 
 
 
 
 
 
 
 
 
81b4b35
64cd647
81b4b35
64cd647
 
 
 
 
 
 
 
 
 
81b4b35
64cd647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81b4b35
64cd647
81b4b35
64cd647
 
81b4b35
 
 
 
 
 
 
 
 
 
 
64cd647
 
81b4b35
64cd647
 
81b4b35
64cd647
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
license: agpl-3.0
configs:
- config_name: hex-ethereum
  data_files:
  - split: train
    path: "hex/ethereum/train/*.parquet"
- config_name: bin-ethereum
  data_files:
  - split: train
    path: "bin/ethereum/train/*.parquet"
---

# EVM Contracts

## Description

EVMC (Ethereum Virtual Machine Contracts) is a collection of smart contracts from the ETH blockchain.

In particular, each sample holds the creation and runtime bytecodes.
When available, the sources are also included.

## Metadata

- homepage: [https://github.com/apehex/feedblocks][github-feedblocks]
- version: 0.1.9
- completion: 58%

The transaction data is available for all records, in particular creation and runtime bytecodes are filled.

But the source code cannot be collected via standard RPC nodes, they have to be obtained through the APIs of block explorers.
These have a small rate limit and it takes a long time.

So the source code data has only been scraped for a portion of the records, as listed in the tables below.

This data was collected by the [scripts of a dedicated package, feedblocks][github-feedblocks].

### HEX Dataset

| Config            | Split     | Size      | Samples   | Blocks                    | Scraped sources                   |
| ----------------- | --------- | --------- | --------- | ------------------------- | --------------------------------- |
| 'hex-ethereum'    | 'train'   | 2.1 GB    | 1,294,247 | 19,493,000 - 20,292,000   | 19,493,000 - 19,959,999 (58%)     |

### BIN Dataset

| Config            | Split     | Size      | Samples   | Blocks                    | Scraped sources                   |
| ----------------- | --------- | --------- | --------- | ------------------------- | --------------------------------- |
| 'bin-ethereum'    | 'train'   | 1.7 GB    | 1,294,247 | 19,493,000 - 20,292,000   | 19,493,000 - 19,959,999 (58%)     |

## Features

The data comes in two flavors: binary and hexadecimal encodings.
The fields have the same names in both and the underlying data is also identical.

In binary form, the raw bytes are stored in most fields:

```python
datasets.Features({
    "chain_id": datasets.features.Value(dtype='uint64'),
    "block_number": datasets.features.Value(dtype='uint32'),
    'block_hash': datasets.features.Value(dtype='large_binary'),
    'transaction_hash': datasets.features.Value(dtype='large_binary'),
    'deployer_address': datasets.features.Value(dtype='large_binary'),
    'factory_address': datasets.features.Value(dtype='large_binary'),
    'contract_address': datasets.features.Value(dtype='large_binary'),
    'creation_bytecode': datasets.features.Value(dtype='large_binary'),
    'runtime_bytecode': datasets.features.Value(dtype='large_binary'),
    'creation_sourcecode': datasets.features.Value(dtype='large_binary'),})
```

While in hexadecimal format, the data is encoded into HEX strings:

```python
datasets.Features({
    "chain_id": datasets.features.Value(dtype='uint64'),
    "block_number": datasets.features.Value(dtype='uint64'),
    'block_hash': datasets.features.Value(dtype='string'),
    'transaction_hash': datasets.features.Value(dtype='string'),
    'deployer_address': datasets.features.Value(dtype='string'),
    'factory_address': datasets.features.Value(dtype='string'),
    'contract_address': datasets.features.Value(dtype='string'),
    'creation_bytecode': datasets.features.Value(dtype='string'),
    'runtime_bytecode': datasets.features.Value(dtype='string'),
    'creation_sourcecode': datasets.features.Value(dtype='string'),})
```

### Chain And Block Numbers

Both ids are stored as unsigned integers.

### Solidity Sources

The sources all have open source licenses.
They were collected from block explorer APIs like [Etherscan][etherscan-api].

The sources are formatted as [standard JSON input][solidity-docs-json] for the solidity compiler.

The resulting JSON is then encoded using UTF-8 into a single string.

### HEX Dataset

All the other features are HEX encoded into strings, **without** the `0x` prefix.

For example:

```python
{
    'chain_id': 1,
    'block_number': 20155815,
    'block_hash': 'fcddf33b1b5a728a40588eda60262639201ac0d3f611f08286a9e2ef65576111',
    'transaction_hash': 'ec3723ffb8a3bbb8b83b25481f61cbfc46383fc88ff8eb364186b53aa226e4bf'
    'deployer_address': 'ba57abe375903838b5c19709e96dae12191fa37e',
    'factory_address': '0000000000b3f879cb30fe243b4dfee438691c04',
    'contract_address': 'eff10e7d4feef60ed9b9e9bb9fee12c2504bd0ba',
    'creation_bytecode': '756eb3f879cb30fe243b4dfee438691c043318585733ff6000526016600af3',
    'runtime_bytecode': '6eb3f879cb30fe243b4dfee438691c043318585733ff',
    'solidity_sourcecode': '',}
```

## BIN Dataset

All the other features are stored in binary format:

```python
{
    'chain_id': 1,
    'block_number': 20155815,
    'block_hash': b'\xfc\xdd\xf3;\x1bZr\x8a@X\x8e\xda`&&9 \x1a\xc0\xd3\xf6\x11\xf0\x82\x86\xa9\xe2\xefeWa\x11',
    'transaction_hash': b'\xec7#\xff\xb8\xa3\xbb\xb8\xb8;%H\x1fa\xcb\xfcF8?\xc8\x8f\xf8\xeb6A\x86\xb5:\xa2&\xe4\xbf',
    'deployer_address': b'\xbaW\xab\xe3u\x9088\xb5\xc1\x97\t\xe9m\xae\x12\x19\x1f\xa3~',
    'factory_address': b'\x00\x00\x00\x00\x00\xb3\xf8y\xcb0\xfe$;M\xfe\xe48i\x1c\x04',
    'contract_address': b'\xc7%\xbc1\xcb\xa2LS\xe5\xc0\xc2\xe2\x06]K@\xf5#Fx',
    'creation_bytecode': b'un\xb3\xf8y\xcb0\xfe$;M\xfe\xe48i\x1c\x043\x18XW3\xff`\x00R`\x16`\n\xf3',
    'runtime_bytecode': b'n\xb3\xf8y\xcb0\xfe$;M\xfe\xe48i\x1c\x043\x18XW3\xff',
    'creation_sourcecode': b''}
```

This saves disk space and may actually be more practical for further processing.

[etherscan-api]: https://docs.etherscan.io/api-endpoints/contracts
[github-feedblocks]: https://github.com/apehex/feedblocks/
[github-tfds]: https://github.com/apehex/feedblocks/tree/main/feedblocks/datasets/evmc
[solidity-docs-json]: https://docs.soliditylang.org/en/v0.8.26/using-the-compiler.html#compiler-input-and-output-json-description