Last active
November 8, 2021 13:38
-
-
Save glassonion1/3dd7a72a1b51ae049da77589fd246f50 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Block { | |
hash | |
parentHash | |
number | |
nonce | |
miner | |
difficulty | |
gasLimit | |
gasUsed | |
timestamp | |
} | |
class Transaction { | |
hash | |
blockHash | |
blockNumber | |
transactionIndex | |
nonce | |
from | |
to | |
data | |
gasPrice | |
gasLimit | |
timestamp | |
} | |
Block ->"0..1" Block | |
Transaction "*"-r>"1" Block |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment