Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/critesjosh/hello_celo
Celo Truffle box: get started with smart contract + application development on Celo
https://github.com/critesjosh/hello_celo
Last synced: 18 days ago
JSON representation
Celo Truffle box: get started with smart contract + application development on Celo
- Host: GitHub
- URL: https://github.com/critesjosh/hello_celo
- Owner: critesjosh
- License: mit
- Created: 2020-02-24T22:37:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T23:09:42.000Z (almost 5 years ago)
- Last Synced: 2024-10-29T07:41:08.195Z (2 months ago)
- Language: JavaScript
- Size: 325 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello Celo Truffle Box
Use this Truffle Box to get started building a mobile dapp using Celo and React Native in Typescript. We will build a simple React Native application that we can use to read and update a contract on the Alfajores test network.
## Smart contract development
You can migrate the `HelloWorld.sol` contract to a development network with
```bash
$ truffle migrate --network (development/alfajores/baklava)
```
If you want to migrate to a public development network, you will need to get funded from the appropriate faucet.
- [Alfajores faucet](#)
- [Baklava faucet](#)The account you will be deploying from is the account associated with the private key in the `./secret` file. This file comes empty, but a private key will be generated for you and your account address will be printed in teh console with `$ npm run account`.
## Application development with Expo
[Expo](#) is a tool that makes developing React Native applications much easier. We will be using Expo for easy setup.
Install it with:
```
$ npm install expo-cli --global
```You can start the application with
```
$ expo start
```