Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Sep 24, 2024
1 parent c8c66b9 commit d3fc4fb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ console.log('signed tx', signedTx, signedTx.toHex());
console.log('fee', signedTx.fee);
```

We support legacy, EIP2930, EIP1559 and EIP4844 (Dencun / Cancun) transactions.
We support legacy, EIP2930, EIP1559, EIP4844 and EIP7702 transactions.

### Addresses: create, checksum

Expand Down Expand Up @@ -353,7 +353,9 @@ RLP.decode(RLP.encode('dog'));
#### SSZ parsing

Simple serialize (SSZ) is the serialization method used on the Beacon Chain.
We implement RLP in just 900 lines of code, powered by [packed](https://github.com/paulmillr/micro-packed):
We support EIP-7495 stable containers.

The implementation is very small, around 1500 lines of code, and is powered by [packed](https://github.com/paulmillr/micro-packed):

```ts
import * as ssz from 'micro-eth-signer/ssz';
Expand Down

0 comments on commit d3fc4fb

Please sign in to comment.