You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deploy the token contract
Build the crowdfund contract
cargo fmt --all
cargo build --target wasm32-unknown-unknown --release
---
Finished release [optimized] target(s) in 34.23s
cd target/wasm32-unknown-unknown/release/ && \
for i in *.wasm ; do \
ls -l "$i"; \
done
-rwxrwxr-x 2 user user 8731 nov 16 hh:hh soroban_crowdfund_contract.wasm
Deploy the crowdfund contract
error: reading file target-tiny/wasm32-unknown-unknown/release/soroban_crowdfund_contract.wasm: No such file or directory (os error 2)
This is because in initialize.sh line 53 is calling make build and not `make
I think that for example porpose, needs to stay as make build
and hence, change in initialize.sh to look into /targetfolder, and not into /target-tiny folder
The text was updated successfully, but these errors were encountered:
What did you do?
What did you expect to see?
What did you see instead?
got the following result:
This is because in initialize.sh line 53 is calling
make build
and not `makeI think that for example porpose, needs to stay as
make build
and hence, change in initialize.sh to look into
/target
folder, and not into/target-tiny
folderThe text was updated successfully, but these errors were encountered: