Skip to content

Commit

Permalink
Add metadata section
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Oct 19, 2023
1 parent aea228c commit dd7e05f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- [Config](./cairo/config.md)
- [Events](./cairo/events.md)
- [Authorization](./cairo/authorization.md)
- [Metadata](.cairo/metadata.md)
- [Migration](./cairo/migration.md)
- [0.2.0 -> 0.3.0](./cairo/migration/0.3.0.md)
- [ECS in 15 minutes](./cairo/hello-dojo.md)
Expand Down
28 changes: 28 additions & 0 deletions src/cairo/metadata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## Metadata

Dojo supports associating offchain metadata with the world contract and other deployed contracts. This can provide additional context about the world, such as it's name, description, social links and other media. Enabling external services to easily index and distribute worlds and experiences built on them.


### World Metadata

During migration, `sozo` will automatically manage the worlds metadata for you, uploading it to ipfs and setting it in the world contract. It does so by parsing the metadata defined in the projects `Scarb.toml`.

To set a worlds metadata, create the following section in your `Scarb.toml`:

```toml
[tool.dojo.world]
name = "example"
description = "example world"
icon_uri = "file://assets/icon.png"
cover_uri = "file://assets/cover.png"
website = "https://dojoengine.org"
socials.x = "https://twitter.com/dojostarknet"
```

The toolchain supports the `name`, `description`, `icon_uri`, `cover_uri`, `website` and `socials` attributes by default. `_uri` attributes can point to a asset in the repo using the `file://` schema or to remote resouces using either `ipfs://` or `https://`. Arbitrary social links can be set by setting a key value on the `socials` attribute. For example, we could add a `socials.github = "..."`.

During migration, `sozo` will upload any local assets to ipfs, replace the corresponding uris, upload the metadata json to ipfs, and set the `metadata_uri` for the world (resource `0`).

### Contract Metadata

It is possible for contract owners to set a `metadata_uri` for any contract. However, this specification has not yet been defined and it is not supported by the toolchain at this time.

0 comments on commit dd7e05f

Please sign in to comment.