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
'use strict' | |
var rlp = require('rlp'); // {decode, toBuffer, isHexPrefixed, stripHexPrefix, padToEven, intToBuffer, safeParseInt, bufferToHex} | |
var stripHexPrefix = require('strip-hex-prefix'); | |
var field_sets = { | |
params: ["nonce","gasPrice","gasLimit","to","value","data"]; | |
} | |
function format_fields(fields, rawData, to_hex) { |
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 | |
$initial_array = array( | |
array( | |
'Name' => 'Trixie', | |
'Color' => 'Green', | |
'Element' => 'Earth', | |
'Likes' => 'Flowers' | |
), | |
array( |