├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── github.com │ ├── btcsuite │ │ └── btcd │ │ │ ├── LICENSE │ │ │ └── btcec │ │ │ ├── README.md │ │ │ ├── btcec.go │ │ │ ├── ciphering.go │ │ │ ├── doc.go │ │ │ ├── field.go │ │ │ ├── genprecomps.go │ │ │ ├── gensecp256k1.go │ │ │ ├── precompute.go │ │ │ ├── privkey.go │ │ │ ├── pubkey.go │ │ │ ├── secp256k1.go │ │ │ └── signature.go │ ├── davecgh │ │ └── go-spew │ │ │ ├── LICENSE │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── format.go │ │ │ └── spew.go │ ├── ethereum │ │ └── go-ethereum │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── COPYING.LESSER │ │ │ ├── accounts │ │ │ └── abi │ │ │ │ ├── abi.go │ │ │ │ ├── argument.go │ │ │ │ ├── doc.go │ │ │ │ ├── error.go │ │ │ │ ├── event.go │ │ │ │ ├── method.go │ │ │ │ ├── numbers.go │ │ │ │ ├── pack.go │ │ │ │ ├── reflect.go │ │ │ │ ├── type.go │ │ │ │ └── unpack.go │ │ │ ├── common │ │ │ ├── big.go │ │ │ ├── bytes.go │ │ │ ├── debug.go │ │ │ ├── format.go │ │ │ ├── hexutil │ │ │ │ ├── hexutil.go │ │ │ │ └── json.go │ │ │ ├── math │ │ │ │ ├── big.go │ │ │ │ └── integer.go │ │ │ ├── path.go │ │ │ ├── size.go │ │ │ ├── test_utils.go │ │ │ ├── types.go │ │ │ └── types_template.go │ │ │ ├── crypto │ │ │ ├── bn256 │ │ │ │ ├── bn256_fast.go │ │ │ │ ├── bn256_fuzz.go │ │ │ │ ├── bn256_slow.go │ │ │ │ ├── cloudflare │ │ │ │ │ ├── bn256.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── curve.go │ │ │ │ │ ├── gfp.go │ │ │ │ │ ├── gfp12.go │ │ │ │ │ ├── gfp2.go │ │ │ │ │ ├── gfp6.go │ │ │ │ │ ├── gfp_amd64.s │ │ │ │ │ ├── gfp_arm64.s │ │ │ │ │ ├── gfp_decl.go │ │ │ │ │ ├── gfp_generic.go │ │ │ │ │ ├── lattice.go │ │ │ │ │ ├── mul_amd64.h │ │ │ │ │ ├── mul_arm64.h │ │ │ │ │ ├── mul_bmi2_amd64.h │ │ │ │ │ ├── optate.go │ │ │ │ │ └── twist.go │ │ │ │ └── google │ │ │ │ │ ├── bn256.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── curve.go │ │ │ │ │ ├── gfp12.go │ │ │ │ │ ├── gfp2.go │ │ │ │ │ ├── gfp6.go │ │ │ │ │ ├── optate.go │ │ │ │ │ └── twist.go │ │ │ ├── crypto.go │ │ │ ├── secp256k1 │ │ │ │ ├── .gitignore │ │ │ │ ├── curve.go │ │ │ │ ├── ext.h │ │ │ │ ├── libsecp256k1 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TODO │ │ │ │ │ ├── autogen.sh │ │ │ │ │ ├── build-aux │ │ │ │ │ │ └── m4 │ │ │ │ │ │ │ ├── ax_jni_include_dir.m4 │ │ │ │ │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ │ │ │ │ └── bitcoin_secp.m4 │ │ │ │ │ ├── configure.ac │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── lax_der_parsing.c │ │ │ │ │ │ ├── lax_der_parsing.h │ │ │ │ │ │ ├── lax_der_privatekey_parsing.c │ │ │ │ │ │ └── lax_der_privatekey_parsing.h │ │ │ │ │ ├── include │ │ │ │ │ │ ├── secp256k1.h │ │ │ │ │ │ ├── secp256k1_ecdh.h │ │ │ │ │ │ └── secp256k1_recovery.h │ │ │ │ │ ├── libsecp256k1.pc.in │ │ │ │ │ ├── obj │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── sage │ │ │ │ │ │ ├── group_prover.sage │ │ │ │ │ │ ├── secp256k1.sage │ │ │ │ │ │ └── weierstrass_prover.sage │ │ │ │ │ └── src │ │ │ │ │ │ ├── asm │ │ │ │ │ │ └── field_10x26_arm.s │ │ │ │ │ │ ├── basic-config.h │ │ │ │ │ │ ├── bench.h │ │ │ │ │ │ ├── bench_ecdh.c │ │ │ │ │ │ ├── bench_internal.c │ │ │ │ │ │ ├── bench_recover.c │ │ │ │ │ │ ├── bench_schnorr_verify.c │ │ │ │ │ │ ├── bench_sign.c │ │ │ │ │ │ ├── bench_verify.c │ │ │ │ │ │ ├── ecdsa.h │ │ │ │ │ │ ├── ecdsa_impl.h │ │ │ │ │ │ ├── eckey.h │ │ │ │ │ │ ├── eckey_impl.h │ │ │ │ │ │ ├── ecmult.h │ │ │ │ │ │ ├── ecmult_const.h │ │ │ │ │ │ ├── ecmult_const_impl.h │ │ │ │ │ │ ├── ecmult_gen.h │ │ │ │ │ │ ├── ecmult_gen_impl.h │ │ │ │ │ │ ├── ecmult_impl.h │ │ │ │ │ │ ├── field.h │ │ │ │ │ │ ├── field_10x26.h │ │ │ │ │ │ ├── field_10x26_impl.h │ │ │ │ │ │ ├── field_5x52.h │ │ │ │ │ │ ├── field_5x52_asm_impl.h │ │ │ │ │ │ ├── field_5x52_impl.h │ │ │ │ │ │ ├── field_5x52_int128_impl.h │ │ │ │ │ │ ├── field_impl.h │ │ │ │ │ │ ├── gen_context.c │ │ │ │ │ │ ├── group.h │ │ │ │ │ │ ├── group_impl.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hash_impl.h │ │ │ │ │ │ ├── java │ │ │ │ │ │ ├── org │ │ │ │ │ │ │ └── bitcoin │ │ │ │ │ │ │ │ ├── NativeSecp256k1.java │ │ │ │ │ │ │ │ ├── NativeSecp256k1Test.java │ │ │ │ │ │ │ │ ├── NativeSecp256k1Util.java │ │ │ │ │ │ │ │ └── Secp256k1Context.java │ │ │ │ │ │ ├── org_bitcoin_NativeSecp256k1.c │ │ │ │ │ │ ├── org_bitcoin_NativeSecp256k1.h │ │ │ │ │ │ ├── org_bitcoin_Secp256k1Context.c │ │ │ │ │ │ └── org_bitcoin_Secp256k1Context.h │ │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── ecdh │ │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ │ └── recovery │ │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ │ ├── num.h │ │ │ │ │ │ ├── num_gmp.h │ │ │ │ │ │ ├── num_gmp_impl.h │ │ │ │ │ │ ├── num_impl.h │ │ │ │ │ │ ├── scalar.h │ │ │ │ │ │ ├── scalar_4x64.h │ │ │ │ │ │ ├── scalar_4x64_impl.h │ │ │ │ │ │ ├── scalar_8x32.h │ │ │ │ │ │ ├── scalar_8x32_impl.h │ │ │ │ │ │ ├── scalar_impl.h │ │ │ │ │ │ ├── scalar_low.h │ │ │ │ │ │ ├── scalar_low_impl.h │ │ │ │ │ │ ├── secp256k1.c │ │ │ │ │ │ ├── testrand.h │ │ │ │ │ │ ├── testrand_impl.h │ │ │ │ │ │ ├── tests.c │ │ │ │ │ │ ├── tests_exhaustive.c │ │ │ │ │ │ └── util.h │ │ │ │ ├── panic_cb.go │ │ │ │ └── secp256.go │ │ │ ├── sha3 │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── doc.go │ │ │ │ ├── hashes.go │ │ │ │ ├── keccakf.go │ │ │ │ ├── keccakf_amd64.go │ │ │ │ ├── keccakf_amd64.s │ │ │ │ ├── register.go │ │ │ │ ├── sha3.go │ │ │ │ ├── shake.go │ │ │ │ ├── xor.go │ │ │ │ ├── xor_generic.go │ │ │ │ └── xor_unaligned.go │ │ │ ├── signature_cgo.go │ │ │ └── signature_nocgo.go │ │ │ ├── ethdb │ │ │ ├── .gitignore │ │ │ ├── database.go │ │ │ ├── interface.go │ │ │ └── memory_database.go │ │ │ ├── log │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── README_ETHEREUM.md │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── handler.go │ │ │ ├── handler_glog.go │ │ │ ├── handler_go13.go │ │ │ ├── handler_go14.go │ │ │ ├── logger.go │ │ │ ├── root.go │ │ │ └── syslog.go │ │ │ ├── metrics │ │ │ ├── FORK.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── debug.go │ │ │ ├── disk.go │ │ │ ├── disk_linux.go │ │ │ ├── disk_nop.go │ │ │ ├── ewma.go │ │ │ ├── gauge.go │ │ │ ├── gauge_float64.go │ │ │ ├── graphite.go │ │ │ ├── healthcheck.go │ │ │ ├── histogram.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── memory.md │ │ │ ├── meter.go │ │ │ ├── metrics.go │ │ │ ├── opentsdb.go │ │ │ ├── registry.go │ │ │ ├── resetting_timer.go │ │ │ ├── runtime.go │ │ │ ├── runtime_cgo.go │ │ │ ├── runtime_gccpufraction.go │ │ │ ├── runtime_no_cgo.go │ │ │ ├── runtime_no_gccpufraction.go │ │ │ ├── sample.go │ │ │ ├── syslog.go │ │ │ ├── timer.go │ │ │ ├── validate.sh │ │ │ └── writer.go │ │ │ ├── params │ │ │ ├── bootnodes.go │ │ │ ├── config.go │ │ │ ├── dao.go │ │ │ ├── denomination.go │ │ │ ├── gas_table.go │ │ │ ├── network_params.go │ │ │ ├── protocol_params.go │ │ │ └── version.go │ │ │ ├── rlp │ │ │ ├── decode.go │ │ │ ├── doc.go │ │ │ ├── encode.go │ │ │ ├── raw.go │ │ │ └── typecache.go │ │ │ └── trie │ │ │ ├── database.go │ │ │ ├── encoding.go │ │ │ ├── errors.go │ │ │ ├── hasher.go │ │ │ ├── iterator.go │ │ │ ├── node.go │ │ │ ├── proof.go │ │ │ ├── secure_trie.go │ │ │ ├── sync.go │ │ │ └── trie.go │ ├── go-stack │ │ └── stack │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── stack.go │ ├── golang │ │ └── snappy │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── decode.go │ │ │ ├── decode_amd64.go │ │ │ ├── decode_amd64.s │ │ │ ├── decode_other.go │ │ │ ├── encode.go │ │ │ ├── encode_amd64.go │ │ │ ├── encode_amd64.s │ │ │ ├── encode_other.go │ │ │ └── snappy.go │ ├── hashicorp │ │ └── golang-lru │ │ │ ├── .gitignore │ │ │ ├── 2q.go │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── arc.go │ │ │ ├── doc.go │ │ │ ├── lru.go │ │ │ └── simplelru │ │ │ ├── lru.go │ │ │ └── lru_interface.go │ ├── rcrowley │ │ └── go-metrics │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── counter.go │ │ │ ├── debug.go │ │ │ ├── ewma.go │ │ │ ├── exp │ │ │ └── exp.go │ │ │ ├── gauge.go │ │ │ ├── gauge_float64.go │ │ │ ├── graphite.go │ │ │ ├── healthcheck.go │ │ │ ├── histogram.go │ │ │ ├── json.go │ │ │ ├── log.go │ │ │ ├── memory.md │ │ │ ├── meter.go │ │ │ ├── metrics.go │ │ │ ├── opentsdb.go │ │ │ ├── registry.go │ │ │ ├── runtime.go │ │ │ ├── runtime_cgo.go │ │ │ ├── runtime_gccpufraction.go │ │ │ ├── runtime_no_cgo.go │ │ │ ├── runtime_no_gccpufraction.go │ │ │ ├── sample.go │ │ │ ├── syslog.go │ │ │ ├── timer.go │ │ │ ├── validate.sh │ │ │ └── writer.go │ └── syndtr │ │ └── goleveldb │ │ ├── LICENSE │ │ └── leveldb │ │ ├── batch.go │ │ ├── cache │ │ ├── cache.go │ │ └── lru.go │ │ ├── comparer.go │ │ ├── comparer │ │ ├── bytes_comparer.go │ │ └── comparer.go │ │ ├── db.go │ │ ├── db_compaction.go │ │ ├── db_iter.go │ │ ├── db_snapshot.go │ │ ├── db_state.go │ │ ├── db_transaction.go │ │ ├── db_util.go │ │ ├── db_write.go │ │ ├── doc.go │ │ ├── errors.go │ │ ├── errors │ │ └── errors.go │ │ ├── filter.go │ │ ├── filter │ │ ├── bloom.go │ │ └── filter.go │ │ ├── iterator │ │ ├── array_iter.go │ │ ├── indexed_iter.go │ │ ├── iter.go │ │ └── merged_iter.go │ │ ├── journal │ │ └── journal.go │ │ ├── key.go │ │ ├── memdb │ │ └── memdb.go │ │ ├── opt │ │ └── options.go │ │ ├── options.go │ │ ├── session.go │ │ ├── session_compaction.go │ │ ├── session_record.go │ │ ├── session_util.go │ │ ├── storage.go │ │ ├── storage │ │ ├── file_storage.go │ │ ├── file_storage_nacl.go │ │ ├── file_storage_plan9.go │ │ ├── file_storage_solaris.go │ │ ├── file_storage_unix.go │ │ ├── file_storage_windows.go │ │ ├── mem_storage.go │ │ └── storage.go │ │ ├── table.go │ │ ├── table │ │ ├── reader.go │ │ ├── table.go │ │ └── writer.go │ │ ├── util.go │ │ ├── util │ │ ├── buffer.go │ │ ├── buffer_pool.go │ │ ├── crc32.go │ │ ├── hash.go │ │ ├── range.go │ │ └── util.go │ │ └── version.go │ ├── golang.org │ └── x │ │ └── crypto │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ └── ripemd160 │ │ ├── ripemd160.go │ │ └── ripemd160block.go │ └── gopkg.in │ └── karalabe │ └── cookiejar.v2 │ ├── LICENSE │ └── collections │ └── prque │ ├── prque.go │ └── sstack.go ├── Makefile.fake ├── README.md ├── core ├── evm.go ├── interface.go └── message.go ├── examples ├── event │ ├── coin.sol │ ├── coin_sol_Coin.abi │ ├── coin_sol_Coin.bin │ ├── main.go │ └── main_statedb.go └── sum │ ├── main.go │ ├── main_v2.go │ ├── sum.sol │ ├── sum_sol_sum.abi │ └── sum_sol_sum.bin ├── state ├── database.go ├── dump.go ├── iterator.go ├── iterator_test.go ├── journal.go ├── main_test.go ├── managed_state.go ├── managed_state_test.go ├── state_object.go ├── state_test.go ├── statedb.go ├── statedb_test.go ├── sync.go └── sync_test.go ├── types ├── block.go ├── block_test.go ├── bloom9.go ├── bloom9_test.go ├── derive_sha.go ├── gen_header_json.go ├── gen_log_json.go ├── gen_receipt_json.go ├── gen_tx_json.go ├── log.go ├── log_test.go ├── receipt.go ├── transaction.go ├── transaction_signing.go ├── transaction_signing_test.go └── transaction_test.go └── vm ├── analysis.go ├── analysis_test.go ├── common.go ├── contract.go ├── contracts.go ├── contracts_test.go ├── doc.go ├── errors.go ├── evm.go ├── gas.go ├── gas_table.go ├── gas_table_test.go ├── gen_structlog.go ├── instructions.go ├── instructions_test.go ├── int_pool_verifier.go ├── int_pool_verifier_empty.go ├── interface.go ├── interpreter.go ├── intpool.go ├── jump_table.go ├── logger.go ├── logger_test.go ├── memory.go ├── memory_table.go ├── noop.go ├── opcodes.go ├── runtime ├── doc.go ├── env.go ├── fuzz.go ├── runtime.go ├── runtime_example_test.go └── runtime_test.go ├── stack.go └── stack_table.go /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/btcec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/btcec.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/ciphering.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/ciphering.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/field.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/genprecomps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/genprecomps.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/gensecp256k1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/gensecp256k1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/precompute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/precompute.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/privkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/privkey.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/pubkey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/pubkey.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/secp256k1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/secp256k1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/btcsuite/btcd/btcec/signature.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/COPYING.LESSER -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/abi.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/argument.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/event.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/method.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/numbers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/numbers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/pack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/reflect.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/type.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/accounts/abi/unpack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/big.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/bytes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/debug.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/format.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/hexutil/hexutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/hexutil/hexutil.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/hexutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/hexutil/json.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/math/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/math/big.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/math/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/math/integer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/path.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/size.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/test_utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/types.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/types_template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/common/types_template.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_fast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_fast.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_fuzz.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_slow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/bn256_slow.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/bn256.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/curve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp12.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp6.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_arm64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_decl.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/gfp_generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/lattice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/lattice.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_amd64.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_arm64.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_bmi2_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/mul_bmi2_amd64.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/optate.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/cloudflare/twist.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/bn256.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/constants.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/curve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp12.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/gfp6.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/optate.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/bn256/google/twist.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/crypto.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/curve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/ext.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/COPYING -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/Makefile.am -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/TODO -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_jni_include_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_jni_include_dir.m4 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/bitcoin_secp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/bitcoin_secp.m4 -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/configure.ac -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ecdh.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_recovery.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/libsecp256k1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/libsecp256k1.pc.in -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/group_prover.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/group_prover.sage -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/secp256k1.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/secp256k1.sage -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/weierstrass_prover.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/sage/weierstrass_prover.sage -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/asm/field_10x26_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/asm/field_10x26_arm.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/basic-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/basic-config.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_ecdh.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_internal.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_recover.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_schnorr_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_schnorr_verify.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_sign.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_verify.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_asm_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_asm_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_int128_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_int128_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/gen_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/gen_context.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/group.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/group_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/group_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1.java -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1Test.java -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/NativeSecp256k1Util.java -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/Secp256k1Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org/bitcoin/Secp256k1Context.java -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_NativeSecp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_NativeSecp256k1.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_NativeSecp256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_NativeSecp256k1.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_Secp256k1Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_Secp256k1Context.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_Secp256k1Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/java/org_bitcoin_Secp256k1Context.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/Makefile.am.include -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/main_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/tests_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/Makefile.am.include -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/main_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_gmp.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_gmp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_gmp_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/num_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/secp256k1.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand_impl.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/libsecp256k1/src/util.h -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/panic_cb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/panic_cb.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/secp256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/secp256k1/secp256.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/hashes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/keccakf_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/register.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/sha3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/sha3.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/shake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/shake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor_generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor_unaligned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/sha3/xor_unaligned.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/signature_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/signature_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/signature_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/crypto/signature_nocgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/database.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/interface.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/memory_database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/ethdb/memory_database.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/CONTRIBUTORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/README_ETHEREUM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/README_ETHEREUM.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/format.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_glog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_go13.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_go13.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_go14.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/handler_go14.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/logger.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/root.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/log/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/FORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/FORK.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/counter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/debug.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk_nop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/disk_nop.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/ewma.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/gauge.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/gauge_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/gauge_float64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/graphite.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/healthcheck.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/histogram.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/json.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/memory.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/meter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/metrics.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/opentsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/opentsdb.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/registry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/resetting_timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/resetting_timer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_gccpufraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_gccpufraction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_no_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_no_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_no_gccpufraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/runtime_no_gccpufraction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/sample.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/timer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/validate.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/metrics/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/bootnodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/bootnodes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/dao.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/denomination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/denomination.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/gas_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/gas_table.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/network_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/network_params.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/protocol_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/protocol_params.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/params/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/raw.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/typecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/rlp/typecache.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/database.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/encoding.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/hasher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/hasher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/iterator.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/node.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/proof.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/secure_trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/secure_trie.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/sync.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/ethereum/go-ethereum/trie/trie.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-stack/stack/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/go-stack/stack/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-stack/stack/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/go-stack/stack/LICENSE.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-stack/stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/go-stack/stack/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/go-stack/stack/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/go-stack/stack/stack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/CONTRIBUTORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/README -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/decode_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/decode_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/decode_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/decode_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/decode_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/decode_other.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/encode_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/encode_amd64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/encode_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/encode_amd64.s -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/encode_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/encode_other.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/golang/snappy/snappy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/golang/snappy/snappy.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/2q.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/2q.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/arc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/lru.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/simplelru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/simplelru/lru.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/hashicorp/golang-lru/simplelru/lru_interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/hashicorp/golang-lru/simplelru/lru_interface.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/.gitignore -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/counter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/counter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/debug.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/ewma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/ewma.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/exp/exp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/exp/exp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/gauge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/gauge.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/gauge_float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/gauge_float64.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/graphite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/graphite.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/healthcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/healthcheck.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/histogram.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/json.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/memory.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/meter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/meter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/metrics.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/opentsdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/opentsdb.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/registry.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_gccpufraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_gccpufraction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_no_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_no_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/runtime_no_gccpufraction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/sample.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/sample.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/syslog.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/timer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/validate.sh -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/rcrowley/go-metrics/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/rcrowley/go-metrics/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/batch.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/cache/cache.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/cache/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/cache/lru.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer/bytes_comparer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/comparer/comparer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_compaction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_iter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_snapshot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_snapshot.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_state.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_transaction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/db_write.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/errors/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter/bloom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter/bloom.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/filter/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/array_iter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/indexed_iter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/iter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/iterator/merged_iter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/journal/journal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/journal/journal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/key.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/opt/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/opt/options.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/options.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_compaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_compaction.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_record.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/session_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_nacl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_nacl.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_plan9.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_solaris.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_unix.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/file_storage_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/mem_storage.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/storage/storage.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/reader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/table.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/table/writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/buffer_pool.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/crc32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/crc32.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/hash.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/range.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/util/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/AUTHORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/CONTRIBUTORS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ripemd160/ripemd160.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ripemd160/ripemd160.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ripemd160/ripemd160block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ripemd160/ripemd160block.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/prque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/prque.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/sstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Godeps/_workspace/src/gopkg.in/karalabe/cookiejar.v2/collections/prque/sstack.go -------------------------------------------------------------------------------- /Makefile.fake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/Makefile.fake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/README.md -------------------------------------------------------------------------------- /core/evm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/core/evm.go -------------------------------------------------------------------------------- /core/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/core/interface.go -------------------------------------------------------------------------------- /core/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/core/message.go -------------------------------------------------------------------------------- /examples/event/coin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/event/coin.sol -------------------------------------------------------------------------------- /examples/event/coin_sol_Coin.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/event/coin_sol_Coin.abi -------------------------------------------------------------------------------- /examples/event/coin_sol_Coin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/event/coin_sol_Coin.bin -------------------------------------------------------------------------------- /examples/event/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/event/main.go -------------------------------------------------------------------------------- /examples/event/main_statedb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/event/main_statedb.go -------------------------------------------------------------------------------- /examples/sum/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/sum/main.go -------------------------------------------------------------------------------- /examples/sum/main_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/sum/main_v2.go -------------------------------------------------------------------------------- /examples/sum/sum.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/sum/sum.sol -------------------------------------------------------------------------------- /examples/sum/sum_sol_sum.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/sum/sum_sol_sum.abi -------------------------------------------------------------------------------- /examples/sum/sum_sol_sum.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/examples/sum/sum_sol_sum.bin -------------------------------------------------------------------------------- /state/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/database.go -------------------------------------------------------------------------------- /state/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/dump.go -------------------------------------------------------------------------------- /state/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/iterator.go -------------------------------------------------------------------------------- /state/iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/iterator_test.go -------------------------------------------------------------------------------- /state/journal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/journal.go -------------------------------------------------------------------------------- /state/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/main_test.go -------------------------------------------------------------------------------- /state/managed_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/managed_state.go -------------------------------------------------------------------------------- /state/managed_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/managed_state_test.go -------------------------------------------------------------------------------- /state/state_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/state_object.go -------------------------------------------------------------------------------- /state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/state_test.go -------------------------------------------------------------------------------- /state/statedb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/statedb.go -------------------------------------------------------------------------------- /state/statedb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/statedb_test.go -------------------------------------------------------------------------------- /state/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/sync.go -------------------------------------------------------------------------------- /state/sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/state/sync_test.go -------------------------------------------------------------------------------- /types/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/block.go -------------------------------------------------------------------------------- /types/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/block_test.go -------------------------------------------------------------------------------- /types/bloom9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/bloom9.go -------------------------------------------------------------------------------- /types/bloom9_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/bloom9_test.go -------------------------------------------------------------------------------- /types/derive_sha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/derive_sha.go -------------------------------------------------------------------------------- /types/gen_header_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/gen_header_json.go -------------------------------------------------------------------------------- /types/gen_log_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/gen_log_json.go -------------------------------------------------------------------------------- /types/gen_receipt_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/gen_receipt_json.go -------------------------------------------------------------------------------- /types/gen_tx_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/gen_tx_json.go -------------------------------------------------------------------------------- /types/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/log.go -------------------------------------------------------------------------------- /types/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/log_test.go -------------------------------------------------------------------------------- /types/receipt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/receipt.go -------------------------------------------------------------------------------- /types/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/transaction.go -------------------------------------------------------------------------------- /types/transaction_signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/transaction_signing.go -------------------------------------------------------------------------------- /types/transaction_signing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/transaction_signing_test.go -------------------------------------------------------------------------------- /types/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/types/transaction_test.go -------------------------------------------------------------------------------- /vm/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/analysis.go -------------------------------------------------------------------------------- /vm/analysis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/analysis_test.go -------------------------------------------------------------------------------- /vm/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/common.go -------------------------------------------------------------------------------- /vm/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/contract.go -------------------------------------------------------------------------------- /vm/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/contracts.go -------------------------------------------------------------------------------- /vm/contracts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/contracts_test.go -------------------------------------------------------------------------------- /vm/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/doc.go -------------------------------------------------------------------------------- /vm/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/errors.go -------------------------------------------------------------------------------- /vm/evm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/evm.go -------------------------------------------------------------------------------- /vm/gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/gas.go -------------------------------------------------------------------------------- /vm/gas_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/gas_table.go -------------------------------------------------------------------------------- /vm/gas_table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/gas_table_test.go -------------------------------------------------------------------------------- /vm/gen_structlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/gen_structlog.go -------------------------------------------------------------------------------- /vm/instructions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/instructions.go -------------------------------------------------------------------------------- /vm/instructions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/instructions_test.go -------------------------------------------------------------------------------- /vm/int_pool_verifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/int_pool_verifier.go -------------------------------------------------------------------------------- /vm/int_pool_verifier_empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/int_pool_verifier_empty.go -------------------------------------------------------------------------------- /vm/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/interface.go -------------------------------------------------------------------------------- /vm/interpreter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/interpreter.go -------------------------------------------------------------------------------- /vm/intpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/intpool.go -------------------------------------------------------------------------------- /vm/jump_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/jump_table.go -------------------------------------------------------------------------------- /vm/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/logger.go -------------------------------------------------------------------------------- /vm/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/logger_test.go -------------------------------------------------------------------------------- /vm/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/memory.go -------------------------------------------------------------------------------- /vm/memory_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/memory_table.go -------------------------------------------------------------------------------- /vm/noop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/noop.go -------------------------------------------------------------------------------- /vm/opcodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/opcodes.go -------------------------------------------------------------------------------- /vm/runtime/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/doc.go -------------------------------------------------------------------------------- /vm/runtime/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/env.go -------------------------------------------------------------------------------- /vm/runtime/fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/fuzz.go -------------------------------------------------------------------------------- /vm/runtime/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/runtime.go -------------------------------------------------------------------------------- /vm/runtime/runtime_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/runtime_example_test.go -------------------------------------------------------------------------------- /vm/runtime/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/runtime/runtime_test.go -------------------------------------------------------------------------------- /vm/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/stack.go -------------------------------------------------------------------------------- /vm/stack_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duanbing/go-evm/HEAD/vm/stack_table.go --------------------------------------------------------------------------------