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

docs: fix broken links on README.md #2173

Merged
merged 2 commits into from
Jul 11, 2024
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
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,11 @@ You can see some examples of contracts under the `contracts` directory, which
you can look at. They are simple and self-contained, primarily meant for testing
purposes, but that also makes them easier to understand.

You can also look at [cosmwasm-plus](https://github.com/CosmWasm/cosmwasm-plus)
for examples and inspiration on more production-like contracts and also how we
call one contract from another. If you are working on DeFi or Tokens, please
look at the `cw20`, `cw721` and/or `cw1155` packages that define standard
interfaces as analogues to some popular ERC designs. (`cw20` is also inspired by
`erc777`).
You can also look at [cw-plus](https://github.com/CosmWasm/cw-plus) for examples
and inspiration on more production-like contracts and also how we call one
contract from another. If you are working on DeFi or Tokens, please look at the
`cw20`, `cw721` and/or `cw1155` packages that define standard interfaces as
analogues to some popular ERC designs. (`cw20` is also inspired by `erc777`).

If you want to get started building you own contract, the simplest way is to go
to the [cosmwasm-template](https://github.com/CosmWasm/cosmwasm-template)
Expand All @@ -128,11 +127,11 @@ along with tests, and a properly configured build environment. From there you
can edit the code to add your desired logic and publish it as an independent
repo.

We also recommend you review our [documentation site](https://docs.cosmwasm.com)
which contains a few tutorials to guide you in building your first contracts. We
also do public workshops on various topics about once a month. You can find
[past recordings under the "Videos" section](https://cosmwasm.com/resources), or
[join our Discord server](https://docs.cosmwasm.com/chat) to ask for help.
We also recommend you review our [documentation site](https://book.cosmwasm.com)
which contains a few tutorials to guide you in building your first contracts.
You can find past recordings of hackathon / conference workshops and
presentations on our [YouTube channel](https://www.youtube.com/@CosmWasm), or
[join our Discord server](https://chat.cosmwasm.com) to ask for help.

## Minimum Supported Rust Version (MSRV)

Expand Down