Skip to content

Commit 185e7cc

Browse files
authored
Update README.md
1 parent 67332de commit 185e7cc

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
pyevmasm is an assembler and disassembler library for the Ethereum Virtual Machine (EVM).
44

5-
This library is currently new and under development.
6-
7-
New issues, feature requests, and contributions are welcome. Join us in #ethereum channel on the [Empire Hacking Slack](https://empireslacking.herokuapp.com) to discuss Ethereum security tool development.
8-
9-
10-
Examples;
5+
## Examples
116
```
127
>>> from pyevmasm import instruction_table, disassemble_hex, disassemble_all, assemble_hex
138
>>> instruction_table[20]
@@ -29,8 +24,8 @@ MSTORE
2924
'0x604052'
3025
```
3126

32-
# evmasm
33-
evmasm is a commandline utility that uses pyevmasm to assemble or disassemble EVM.
27+
## evmasm
28+
`evmasm` is a commandline utility that uses pyevmasm to assemble or disassemble EVM.
3429

3530
```
3631
usage: evmasm [-h] (-a | -d | -t) [-bi] [-bo] [-i [INPUT]] [-o [OUTPUT]]
@@ -66,11 +61,11 @@ $ echo -n "608060405260043610603f57600035" | evmasm -d
6661
0000000c: PUSH1 0x0
6762
0000000e: CALLDATALOAD
6863
```
69-
### Requirements
70-
Python >=2.7 or Python >=3.3
7164

7265
# Installation
7366

67+
Python >=2.7 or Python >=3.3 is required.
68+
7469
Install the latest stable version using pip:
7570
```
7671
pip install pyevmasm
@@ -83,5 +78,7 @@ cd pyevmasm
8378
python setup.py install
8479
```
8580

86-
# Documentation
81+
## Documentation
8782
[insert RTD link here]()
83+
84+
New issues, feature requests, and contributions are welcome. Join us in #ethereum channel on the [Empire Hacking Slack](https://empireslacking.herokuapp.com) to discuss Ethereum security tool development.

0 commit comments

Comments
 (0)