Skip to content

Instantly share code, notes, and snippets.

@blueplanet
Last active May 21, 2019 01:27
Show Gist options
  • Save blueplanet/b14bc2299f8a944c5285c36d600f2421 to your computer and use it in GitHub Desktop.
Save blueplanet/b14bc2299f8a944c5285c36d600f2421 to your computer and use it in GitHub Desktop.
Browser Solidityでスマートコントラクトをデプロイする際ハマったこと ref: https://qiita.com/blueplanet/items/d6cd9c9503bb59fb8dda
pragma solidity ^0.4.0;
contract TestTranster {
address public ownerAddress;
function TestTranster(address _ownerAddress) public {
ownerAddress = _ownerAddress;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment