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
| /** | |
| * @notice Sender supplies assets into the market and receives rTokens in exchange | |
| * @param mintAmount The amount of the underlying asset to supply | |
| * @return uint 0=success, otherwise a failure | |
| */ | |
| function mint(uint256 mintAmount) external returns (bool); | |
| /** | |
| * @notice Sender redeems rTokens in exchange for the underlying asset | |
| * @param redeemTokens The number of rTokens to redeem into underlying |
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.21 <0.6.0; | |
| // converted from cDAI.json | |
| contract cDAI { | |
| function name() external returns ( | |
| string memory | |
| ); | |
| function approve( | |
| address spender, |
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
| /** | |
| * Convert ABI json file to solidity interface contract | |
| */ | |
| const fs = require('fs'); | |
| const args = process.argv.slice(2); | |
| function convert(inputFilename) { | |
| const abi = JSON.parse(fs.readFileSync(inputFilename, 'utf8')); |
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
| <?php | |
| $SECRET = '....'; | |
| header("Content-type: application/json"); | |
| if ($_GET["secret"] != $SECRET) { | |
| http_response_code(401); | |
| echo json_encode(array( | |
| "success" => false, | |
| "status_code" => 401 |
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
| #!/bin/bash | |
| openssl pkeyutl -derive -inkey new-secp384r1-private-key.pem -peerkey XXXXXXXX-pin1-public-key.pem | xxd -p | tr '\n' '|' | sed 's/|//g' | |
| echo | |
| pkcs11-tool --derive --token-label PIN1 --login --id 01 -m ECDH1-DERIVE --input-file new-secp384r1-public-key.der --output-file >(xxd -p | tr '\n' '|' | sed 's/|//g') |
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
| openssl ecparam -name secp384r1 -genkey -noout -out new-secp384r1-private-key.pem | |
| openssl ec -in new-secp384r1-private-key.pem -pubout -outform DER -out new-secp384r1-public-key.der |
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
| YOUR_BIRTHDAY=YYMMDD;for a in 3 4;do | |
| for i in `seq 9999`;do | |
| kood=${a}${YOUR_BIRTHDAY}$(printf %04d $i) | |
| # https://www.sk.ee/en/repository/ldap | |
| found=$(ldapsearch -x -H ldaps://esteid.ldap.sk.ee -b c=EE "(serialNumber=PNOEE-$kood)" | sed -n 's/cn::\? \(.*\)$/\1/p' | uniq) | |
| [ -z "${found%%*=}" ] && found=`echo $found|base64 -d`;[ ! -z "$found" ] && echo $kood $found; | |
| done; | |
| done |
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
| #!/usr/bin/env bash | |
| # Notes: | |
| # - Shchema: https://github.com/trufflesuite/truffle/tree/develop/packages/truffle-contract-schema | |
| # - bytecode vs deployedBytecode: https://ethereum.stackexchange.com/questions/32234/difference-between-bytecode-and-runtime-bytecode | |
| for i in "$1"/*.json;do | |
| [ -z "${i%%*.min.json}" ] && continue # already minified | |
| m=${i%%.json}.min.json | |
| echo "Minimizing truffle json artifact: $i" | |
| echo "Original size: $(wc -c "$i")" |
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
| jq -r '[ | |
| . as $root | keys[] as $k | $root[$k] | @json | length as $len | { key: $k, length: $len } | |
| ] | sort_by(.length) | reverse | map("\(.key) \(.length)")[]' $CONTRACT_JSON_FILE |
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 lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Example crypto.subtle encrypt/decrypt with AES-CTR</title> | |
| <meta name="description" content="The HTML5 Herald"> | |
| <meta name="author" content="SitePoint"> |