From 91b7a9eadd6e568b356018f106dd2ac32c18897c Mon Sep 17 00:00:00 2001 From: Vectorized Date: Fri, 29 Sep 2023 02:15:14 +0800 Subject: [PATCH] Update README.md Nits --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 18bbd173..9802278e 100644 --- a/README.md +++ b/README.md @@ -20,11 +20,11 @@ The following contracts have been deployed on Mainnet, Optimism, Goerli, Optimis | Contract | Address | |---|---| -| `SoundEditionV2` | 0x0000000000c78FEE168002D89D141517b8E6E0FE -| `SoundCreatorV2` | 0x0000000000aec84F5BFc2af15EAfb943bf4e3522 -| `SuperMinter` | 0x0000000000CF4558c36229ac0026ee16D3aE35Cd -| `SoundOnChainMetadata` | 0x0000000000724868d80283B098Ffa809B2181692 -| `SoundMetadata` | 0x0000000000f5A96Dc85959cAeb0Cfe680f108FB5 +| `SoundEditionV2` | `0x0000000000c78FEE168002D89D141517b8E6E0FE` +| `SoundCreatorV2` | `0x0000000000aec84F5BFc2af15EAfb943bf4e3522` +| `SuperMinter` | `0x0000000000CF4558c36229ac0026ee16D3aE35Cd` +| `SoundOnChainMetadata` | `0x0000000000724868d80283B098Ffa809B2181692` +| `SoundMetadata` | `0x0000000000f5A96Dc85959cAeb0Cfe680f108FB5` ## Architecture @@ -60,10 +60,12 @@ The latest Sound Protocol comprises of several components: The smart contracts are stored under the `contracts` directory. -These are the contracts currently used. The actual directories may contain some older contracts not on the list, as they are left there for backwards compatibility. +These are the contracts currently used. + +The actual directories may contain some older contracts not on the list ─ they are left there for backwards compatibility. ```ml -contracts/ +contracts ├── core │  ├── SoundCreatorV2.sol ─ "Factory" │  ├── SoundEditionV2.sol ─ "NFT implementation" @@ -83,7 +85,7 @@ contracts/ │ ├── ISoundMetadata.sol │ └── ISoundOnChainMetadata.sol   └── utils - ├── DelegateCashLib.sol ─ "Library for querying with DelegateCash" + ├── DelegateCashLib.sol ─ "Library for querying DelegateCash"   └── SoundOnChainMetadataLib.sol ─ "Library for SoundOnChainMetadata" ```