Skip to content

Instantly share code, notes, and snippets.

View nooruddin's full-sized avatar
:octocat:
Focusing

Nooruddin nooruddin

:octocat:
Focusing
  • Canada
View GitHub Profile
@nooruddin
nooruddin / contracts...FallbackExample.sol
Last active January 18, 2023 02:58
FundMe Contracts
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.8;
// functions receive() and fallback() are used to receive low-level call data
// used when there is no valid function to be called in contract
contract FallbackExample {
uint256 public result;
receive() external payable {