Skip to content

Instantly share code, notes, and snippets.

@t4sk
Created March 12, 2019 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t4sk/fa87bc2c8fe999d409fc01e9fd54645c to your computer and use it in GitHub Desktop.
Save t4sk/fa87bc2c8fe999d409fc01e9fd54645c to your computer and use it in GitHub Desktop.
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.5.3+commit.10d17f24.js&optimize=false&gist=
pragma solidity ^0.5.3;
contract Wei {
uint public oneEther = 1 ether;
function test() public pure {
assert(1 ether == 1e18 wei);
assert(1 wei == 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment