Skip to content

Instantly share code, notes, and snippets.

View preston4896's full-sized avatar
💻
Hacking... 😎

Preston Ong preston4896

💻
Hacking... 😎
View GitHub Profile
@preston4896
preston4896 / HelloWorld.sol
Created February 23, 2021 17:29
Hello World Smart Contract Tutorial for the Celo Blockchain
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.8.0;
contract HelloWorld {
string name = "Celo";
function getName() public view returns (string memory) {
return name;
}
@preston4896
preston4896 / hellocelo.js
Created February 23, 2021 13:08
Beginner's tutorial on making transactions on the CELO blockchain.
//
// Add package imports and setup here
//
// CELO Address: 0x557A2ea7aCa59Edaaff62cC46fd65b1650c8de85
// 1. Import ContractKit
const Web3 = require("web3");
const ContractKit = require("@celo/contractkit");
@preston4896
preston4896 / hellocelo.js
Created February 23, 2021 13:08
Beginner's tutorial to make transactions on the CELO blockchain.
//
// Add package imports and setup here
//
// CELO Address: 0x557A2ea7aCa59Edaaff62cC46fd65b1650c8de85
// 1. Import ContractKit
const Web3 = require("web3");
const ContractKit = require("@celo/contractkit");