I hereby claim:
-
I am nglglhtr on github.
-
I am angelagilhotra (https://keybase.io/angelagilhotra) on keybase.
-
I have a public key ASAF5OkMuIiv7yDriYPIAuVE8mejRg_NQEhM2dFbUiAVtQo
| // receiver.sol | |
| pragma solidity ^0.5.11; | |
| // IStateReceiver represents interface to receive state | |
| interface IStateReceiver { | |
| function onStateReceive(uint256 stateId, bytes calldata data) external; | |
| } | |
| contract receiver { |
| import { ChildERC20 } from './ChildERC20' | |
| // other ERC20 contract imports ... | |
| contract ERC20Meta is ERC20 { | |
| mapping (address => uint256) public replayNonce; | |
| ChildERC20 childErc20; | |
| constructor (address _childErc20) { |
| { | |
| "network":"testnet", | |
| "version": "v3", | |
| "privateKey": "0x..", // prepend with '0x' | |
| "from": "0x..", // address corresponding to the private key | |
| "RootTokenAddress": "...", | |
| "ChildTokenAddress": "...", | |
| } |
| { | |
| "network":"testnet", | |
| "version": "v3", | |
| "privateKey": "0x..", // prepend with '0x' | |
| "from": "0x..", // address corresponding to the private key | |
| "RootTokenAddress": "...", | |
| "ChildTokenAddress": "...", | |
| } |
I hereby claim:
I am nglglhtr on github.
I am angelagilhotra (https://keybase.io/angelagilhotra) on keybase.
I have a public key ASAF5OkMuIiv7yDriYPIAuVE8mejRg_NQEhM2dFbUiAVtQo
| pragma solidity ^0.5.11; | |
| import "github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20Detailed.sol"; | |
| import "github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC20/ERC20.sol"; | |
| contract ChildToken is ERC20, ERC20Detailed { | |
| constructor ( | |
| string memory _name, | |
| string memory _symbol, |
| #include <iostream> | |
| #include <vector> | |
| using namespace std; | |
| string shift_cipher_encrypt (string plaintext, int shift) { | |
| string ciphertext; | |
| for (int i = 0; i < plaintext.size(); i ++) { | |
| //lower case letters | |
| if (plaintext[i] >= 97 && plaintext[i] <= 122) { |
| <html> | |
| <head> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
| </head> | |
| <body> | |
| <div class="container" style=padding:5em;> | |
| <div class="progress"> | |
| <div class="progress-bar" style="width: 50%;"> |
| /* Read input from STDIN. Print your output to STDOUT*/ | |
| #include <math.h> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <assert.h> | |
| #include <limits.h> | |
| #include <stdbool.h> | |
| #include <iostream> | |
| #include <string> |
| #!/bin/bash | |
| target='/home/angg/code/mca209lab' | |
| cd $target | |
| find . -maxdepth 1 -type f -name '*.cpp' | while read CPPFILE | |
| do | |
| TITLE=$(basename $CPPFILE .cpp) | |
| g++ $TITLE.cpp |