Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #295

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update README.md
Nits
  • Loading branch information
Vectorized committed Sep 28, 2023
commit 91b7a9eadd6e568b356018f106dd2ac32c18897c
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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"
Expand All @@ -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"
```

Expand Down
Loading