Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reecepbcups/zero-to-hero-sparkibc
Spark IBC w/ Callum (July 9th 2022)
https://github.com/reecepbcups/zero-to-hero-sparkibc
Last synced: 16 days ago
JSON representation
Spark IBC w/ Callum (July 9th 2022)
- Host: GitHub
- URL: https://github.com/reecepbcups/zero-to-hero-sparkibc
- Owner: Reecepbcups
- License: apache-2.0
- Created: 2022-07-09T18:18:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-09T20:45:53.000Z (over 2 years ago)
- Last Synced: 2024-11-06T02:07:07.103Z (2 months ago)
- Language: Rust
- Size: 48.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CosmWasm Starter Pack
## zero-to-hero-sparkibc### Polling APP like starpoll on chain
**Callum's Official Repo**
https://github.com/Callum-A/spark-ibc-cosmwasm-zero-to-hero**layout**
```
src/ folder (template generated for you)lib.rs - defines files in the project & exports them for use
contract.rs - where actual contract logic happens (uses messages)
error.rs - contract errors for when logic does not line up with what you wanthelpers.rs - we deleted this as it is not needed, also removed from lib.rs
msg.rs - holds messages which we use in the project & has more info in there.
state.rs - storage of the contract via Maps / Key Value Stores
```**notes**
notes can be found in each contract rust file (*.rs)