Skip to content

Instantly share code, notes, and snippets.

View antonvinceguinto's full-sized avatar
👋
Exploring

Anton Guinto antonvinceguinto

👋
Exploring
View GitHub Profile
{
"dependencies": {
"com.unity.ai.navigation": "1.1.3",
"com.unity.cinemachine": "2.9.7",
"com.unity.collab-proxy": "2.0.5",
"com.unity.feature.2d": "2.0.0",
"com.unity.ide.visualstudio": "2.0.18",
"com.unity.ide.vscode": "1.2.5",
"com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.render-pipelines.universal": "14.0.8",
@antonvinceguinto
antonvinceguinto / SimpleWallet.sol
Created October 10, 2021 15:21
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.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract SimpleWallet {
fallback() external payable {}
event Received(address, uint);
receive() external payable {
emit Received(msg.sender, msg.value);