From ddccd45401364c3cafde6f56f04c06fea6433f12 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Fri, 11 Oct 2024 10:58:55 +0000 Subject: [PATCH] readme --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 792dff4..d8b4420 100644 --- a/README.md +++ b/README.md @@ -344,7 +344,8 @@ Check out [`src/net/ens.ts`](./src/net/ens.ts) for type-safe contract execution #### RLP parsing We implement RLP (Recursive Length Prefix) in 100 lines of code, using [packed](https://github.com/paulmillr/micro-packed). -Check out [rlp.test.js](https://github.com/paulmillr/micro-eth-signer/blob/main/test/rlp.test.js) for examples. + +Check out [rlp.test.js](https://github.com/paulmillr/micro-eth-signer/blob/main/test/rlp.test.js) for example usage. ```ts import { RLP } from 'micro-eth-signer/rlp'; @@ -354,8 +355,9 @@ RLP.decode(RLP.encode('dog')); #### SSZ parsing We implement SSZ (simple serialize) in 1500 lines of code, using [packed](https://github.com/paulmillr/micro-packed). -[EIP-7495](https://eips.ethereum.org/EIPS/eip-7495) stable containers are supported. -Check out [ssz.test.js](https://github.com/paulmillr/micro-eth-signer/blob/main/test/ssz.test.js) for examples. +Stable containers from [EIP-7495](https://eips.ethereum.org/EIPS/eip-7495) are supported. + +Check out [ssz.test.js](https://github.com/paulmillr/micro-eth-signer/blob/main/test/ssz.test.js) for example usage. ```ts import * as ssz from 'micro-eth-signer/ssz';