I hereby claim:
- I am mujuni88 on github.
- I am joebuza (https://keybase.io/joebuza) on keybase.
- I have a public key ASAhQlPwM-BYQY2tFYBNQ_f6LZCj-YYVmCuEE1xfRbQUDAo
To claim this, I am signing this object:
var fs = require('fs'); | |
var readline = require('readline'); | |
var Stream = require('stream'); | |
function readFileLineByLine(inputFile, outputFile) { | |
var instream = fs.createReadStream(inputFile); | |
var outstream = new Stream(); | |
outstream.readable = true; | |
outstream.writable = true; |
I hereby claim:
To claim this, I am signing this object:
[user] | |
name = <name> | |
email = <email> | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] |
/* | |
* Example of an entity/model class | |
*/ | |
import { | |
observable, | |
action | |
} from 'mobx' | |
import { setter } from 'mobx-decorators' |
[user] | |
name = Joe Buza | |
email = [email protected] | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow reverse | |
local = yellow | |
remote = green | |
[color "diff"] |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "hardhat/console.sol"; | |
contract EscrowAgent { | |
address public agent; | |
enum Stages { | |
NONE, |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "hardhat/console.sol"; | |
contract EscrowAgent { | |
address public agent; | |
enum Stages { | |
NONE, |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "hardhat/console.sol"; | |
import "remix_tests.sol"; | |
import "remix_accounts.sol"; | |
import "../contracts/EscrowAgent.sol"; | |
contract EscrowAgentTest is EscrowAgent { |