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.24; | |
import "openzeppelin-solidity/contracts/token/ERC20/ERC20.sol"; | |
import "openzeppelin-solidity/contracts/math/SafeMath.sol"; | |
contract VestingVault12 { | |
using SafeMath for uint256; | |
using SafeMath for uint16; | |
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
var oauth = require('oauth'); | |
var consumerKey = "AAAAAAAAAAAAAAAAAA"; | |
var consumerSecret = "BBBBBBBBBBBBBBBBBBBB"; | |
var callbackURL = "http://127.0.0.1:8080/twitterOauthCatch"; // be sure to set me in the application's settings on dev.twitter.com | |
var oathClient = new oauth.OAuth( | |
"https://twitter.com/oauth/request_token", | |
"https://twitter.com/oauth/access_token", | |
consumerKey, | |
consumerSecret, |