Skip to content

Instantly share code, notes, and snippets.

View rrecuero's full-sized avatar

Ramon Recuero rrecuero

  • YC
  • San Francisco
View GitHub Profile
Verifying my Blockstack ID is secured with the address 1ANRSR5SPhHEYHfmFH2zGh67akKKNrmtrN https://explorer.blockstack.org/address/1ANRSR5SPhHEYHfmFH2zGh67akKKNrmtrN

Keybase proof

I hereby claim:

  • I am rrecuero on github.
  • I am rrecuero (https://keybase.io/rrecuero) on keybase.
  • I have a public key ASBVO68tBD-LRyNYzYnB5-eFpIEJ9Nh9n0t-cIjb3rCN5Qo

To claim this, I am signing this object:

@rrecuero
rrecuero / .js
Created October 6, 2018 06:13
Example test
/* eslint-disable */
var Cache = artifacts.require("Cache");
var CacheUser = artifacts.require("CacheUser");
var encoding = require('../../util/encoding.js');
contract('Cache', function(accounts) {
var cache;
before(function(done) {
Cache.deployed().then(function(instance) {
cache = instance;