Skip to content

Commit

Permalink
README revamp
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmichalis committed Feb 14, 2024
1 parent cb8b33d commit 5a3f792
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,31 @@

`DynamicTokenURI` is a Manifold extension that enables dynamic token URIs
for a Manifold creator contract. Specifically, when a token is transferred
between wallets, the URI changes.
between wallets, the URI changes. [Foundry](https://book.getfoundry.sh/) is
used to build, test, and deploy the contract.

## Manifold extensions

Learn more about Manifold extensions:
* [developing](https://docs.manifold.xyz/v/manifold-for-developers/smart-contracts/manifold-creator/contracts/extensions)
* [deploying](https://docs.manifold.xyz/v/manifold-for-developers/smart-contracts/manifold-creator/contracts/extensions/extensions-deployment-guide)

## Contribute
## Build

### Build

```shell
```console
$ forge install
$ forge build
$ forge test
$ forge fmt
```

### Test
## Deploy

```shell
$ forge test
```console
$ forge create --rpc-url <rpc_url> \
--private-key <private_key> \
--constructor-args <creator_contract>,<base_uri> \
--etherscan-api-key <etherscan_api_key> \
-- verify \
DynamicTokenURI24
```

### Format
## Manifold extensions

```shell
$ forge fmt
```
Learn more about Manifold extensions:
* [developing](https://docs.manifold.xyz/v/manifold-for-developers/smart-contracts/manifold-creator/contracts/extensions)
* [deploying](https://docs.manifold.xyz/v/manifold-for-developers/smart-contracts/manifold-creator/contracts/extensions/extensions-deployment-guide)

0 comments on commit 5a3f792

Please sign in to comment.