Skip to content

Commit

Permalink
common: add EIP-2718, EIP-2930
Browse files Browse the repository at this point in the history
  • Loading branch information
jochem-brouwer committed Jan 15, 2021
1 parent 816e0bc commit d12ad24
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/common/src/eips/2718.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "EIP-2718",
"comment": "Typed Transaction Envelope",
"url": "https://eips.ethereum.org/EIPS/eip-2718",
"status": "Draft",
"minimumHardfork": "chainstart",
"gasConfig": {},
"gasPrices": {},
"vm": {},
"pow": {}
}

21 changes: 21 additions & 0 deletions packages/common/src/eips/2930.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "EIP-2929",
"comment": "Optional access lists",
"url": "https://eips.ethereum.org/EIPS/eip-2930",
"status": "Draft",
"minimumHardfork": "berlin",
"gasConfig": {},
"gasPrices": {
"accessListStorageKeyCost": {
"v": 1900,
"d": "Gas cost per storage key in an Access List transaction"
},
"accessListAddressCost": {
"v": 2400,
"d": "Gas cost per storage key in an Access List transaction"
}
},
"vm": {},
"pow": {}
}

2 changes: 2 additions & 0 deletions packages/common/src/eips/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ export const EIPs: eipsType = {
2315: require('./2315.json'),
2537: require('./2537.json'),
2565: require('./2565.json'),
2718: require('./2718.json'),
2929: require('./2929.json'),
2930: require('./2930.json'),
}

0 comments on commit d12ad24

Please sign in to comment.