Skip to content

Instantly share code, notes, and snippets.

View lorentsinani's full-sized avatar
:electron:
notmovingatall

Lorent Sinani lorentsinani

:electron:
notmovingatall
View GitHub Profile
@lorentsinani
lorentsinani / keybase.md
Created February 8, 2024 11:35
Keybase

Keybase proof

I hereby claim:

  • I am lorentsinani on github.
  • I am tavnik1 (https://keybase.io/tavnik1) on keybase.
  • I have a public key ASAJO7L9Zeh60RPlxJlFuJEIef0g6HoGM_r3lRjmpq2w7Ao

To claim this, I am signing this object:

@lorentsinani
lorentsinani / SmartContractWallet.sol
Created November 11, 2023 01:01
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.16+commit.07a7930e.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;
contract Consumer {
function getBalance() public view returns (uint256) {
return address(this).balance;
}
function deposit() public payable {}
}