Skip to content

Instantly share code, notes, and snippets.

@ccokee
ccokee / .deps...npm...@chainlink...contracts...src...v0.6...LinkTokenReceiver.sol
Created March 15, 2023 13:48
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.6.6+commit.6c089d02.js&optimize=false&runs=200&gist=
@ccokee
ccokee / CrudApp.sol
Created June 21, 2021 19:58 — forked from buddies2705/CrudApp.sol
Solidity Crud Smart Contract
pragma solidity ^0.4.23;
contract CrudApp {
struct country{
string name;
string leader;
uint256 population;
}