This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
contract D { | |
uint public n; | |
address public sender; | |
function callSetN(address _e, uint _n) public { | |
_e.call(bytes4(keccak256("setN(uint256)")), _n); // E's storage is set, D is not modified | |
} | |
function callcodeSetN(address _e, uint _n) public { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import contract from 'truffle-contract' | |
const contractArtifact = require('./build/contracts/TutorialToken.json') | |
const web3 = new Web3() | |
const providerUrl = 'http://localhost:8545' | |
const provider = new Web3.providers.HttpProvider(providerUrl) | |
web3.setProvider(provider) | |
const TutorialToken = contract(contractArtifact) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require('web3') // Works with web3 1.0.0-beta27 | |
const contractArtifact = require('./build/contracts/TutorialToken.json') | |
const web3 = new Web3() | |
const providerUrl = 'ws://localhost:8545' // requires # https://github.com/trufflesuite/ganache-cli/releases/tag/v7.0.0-beta.0 or https://github.com/trufflesuite/ganache/releases/tag/v1.1.0-beta.0 | |
const provider = new Web3.providers.WebsocketProvider(providerUrl) | |
web3.setProvider(provider) | |
web3.eth.net.getId() | |
.then(networkId => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require('web3') // Works with web3 0.20.4 | |
const contractArtifact = require('./build/contracts/TutorialToken.json') | |
const web3 = new Web3() | |
const providerUrl = 'http://localhost:8545' | |
const provider = new Web3.providers.HttpProvider(providerUrl) | |
web3.setProvider(provider) | |
const networkId = web3.version.network | |
const contractAddr = contractArtifact.networks[networkId].address |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require('web3') // Web3 0.20.4 or web3 1 beta | |
const truffleContract = require("truffle-contract") | |
const contractArtifact = require('./build/contracts/TutorialToken.json') | |
const providerUrl = 'http://localhost:8545' | |
const provider = new Web3.providers.HttpProvider(providerUrl) | |
const contract = truffleContract(contractArtifact) | |
contract.setProvider(provider) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.18; | |
contract MyContract { | |
event Transfer(address indexed from, address indexed to, uint256 value); /* This is an event */ | |
function MyContract() {} /* a constructor */ | |
function transfer(address _to) public { | |
Transfer(msg.sender, _to, msg.value); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Web3 = require('web3') | |
const fs = require('fs') | |
const ethereumURL = 'http://0.0.0.0:8545' | |
const provider = new Web3.providers.HttpProvider(ethereumURL) | |
const web3 = new Web3(provider) | |
const contractInfo = JSON.parse(fs.readFileSync('./MetaCoinABI.js', 'utf8')) | |
const MyContract = web3.eth.contract(contractInfo.abi); | |
const contractInstance = MyContract.at(contractInfo.address); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>JavaScript file upload</title> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<script src="https://wzrd.in/standalone/buffer"></script> | |
<script src="https://unpkg.com/[email protected]/dist/index.js" | |
integrity="sha384-5bXRcW9kyxxnSMbOoHzraqa7Z0PQWIao+cgeg327zit1hz5LZCEbIMx/LWKPReuB" | |
crossorigin="anonymous"></script> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const blacklist = require('./blacklist') | |
const levenshtein = require('fast-levenshtein') | |
const math = require('mathjs') | |
const comparison = 'myetherwallet' | |
const allScores = blacklist.map(item => { | |
return { | |
domain: item, | |
score: levenshtein.get(item.replace(/\./g,''), comparison) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it("should send coin correctly", async function () { | |
// Get initial balances of first and second account. | |
var account_one = accounts[0]; | |
var account_two = accounts[1]; | |
var amount = 10; | |
let meta = await MetaCoin.deployed(); | |
let balance1 = await meta.getBalance.call(account_one); | |
let balance2 = await meta.getBalance.call(account_two); |