https://github.com/renerocksai/cryptozombies
My progress on the cryptozombies.io course
https://github.com/renerocksai/cryptozombies
Last synced: about 2 months ago
JSON representation
My progress on the cryptozombies.io course
- Host: GitHub
- URL: https://github.com/renerocksai/cryptozombies
- Owner: renerocksai
- Created: 2021-09-29T23:44:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T00:19:08.000Z (over 3 years ago)
- Last Synced: 2025-01-14T22:51:19.336Z (3 months ago)
- Language: Solidity
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cryptozombies
My progress on the cryptozombies.io course.
## notes
Install (download) solang. Just google it. It serves as our language server for solidity.
Since we're using coc.vim in neovim, we need to extend our coc-settings.json like so:
1. Open it via the `:CocConfig` command
2. Add the following snippet:```json
"solidity": {
"command": "/home/rs/bin/solang-linux",
"args": [ "--language-server" ],
"trace.server": "verbose",
"rootPatterns": [".git/"],
"filetypes": ["solidity"]
}
```