From 460e85e007f36f5de253a4be48f62f41723641e5 Mon Sep 17 00:00:00 2001 From: Jake Hartnell Date: Mon, 13 Dec 2021 12:36:44 -0800 Subject: [PATCH] Fix typo, closes #19 --- contracts/cw721-base/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/contracts/cw721-base/README.md b/contracts/cw721-base/README.md index 34aa9a509..b245c9223 100644 --- a/contracts/cw721-base/README.md +++ b/contracts/cw721-base/README.md @@ -43,9 +43,9 @@ Once you are happy with the content, you can compile it to wasm via: ``` RUSTFLAGS='-C link-arg=-s' cargo wasm -cp ../../target/wasm32-unknown-unknown/release/cw20_base.wasm . -ls -l cw20_base.wasm -sha256sum cw20_base.wasm +cp ../../target/wasm32-unknown-unknown/release/cw721_base.wasm . +ls -l cw721_base.wasm +sha256sum cw721_base.wasm ``` Or for a production-ready (optimized) build, run a build command in the @@ -66,6 +66,6 @@ likely want to write a custom, domain-specific `instantiate`. **TODO: add example when written** -For now, you can look at [`cw20-staking`](../cw20-staking/README.md) -for an example of how to "inherit" cw20 functionality and combine it with custom logic. +For now, you can look at [`cw721-staking`](../cw721-staking/README.md) +for an example of how to "inherit" cw721 functionality and combine it with custom logic. The process is similar for cw721.