├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── chain-blast │ ├── erc20_mock.gen.go │ └── main.go ├── chain-ethgas │ └── main.go ├── chain-mempool │ └── main.go ├── chain-newheads │ └── main.go ├── chain-receipts │ └── main.go ├── chain-watch │ ├── .gitignore │ ├── fixtures │ │ └── vcr │ │ │ ├── ethmonitor_watch1.json │ │ │ ├── ethmonitor_watch2.json │ │ │ ├── ethmonitor_watch3.json │ │ │ └── ethmonitor_watch4.json │ ├── main.go │ └── summary.go └── ethkit │ ├── README.md │ ├── _contract.go │ ├── _gas.go │ ├── _receipts.go │ ├── abigen.go │ ├── artifacts.go │ ├── balance.go │ ├── balance_test.go │ ├── block.go │ ├── block_test.go │ ├── main.go │ ├── print.go │ ├── print_test.go │ └── wallet.go ├── ethartifact ├── ethartifact.go ├── ethartifact_test.go ├── registry.go └── testdata │ ├── foundry_artifact.json │ └── hardhat_artifact.json ├── ethcoder ├── abi.go ├── abi_deprecated.go ├── abi_helpers.go ├── abi_sig.go ├── abi_sig_parser.go ├── abi_sig_parser_test.go ├── abi_sig_test.go ├── abi_test.go ├── ethcoder.go ├── ethcoder_test.go ├── events.go ├── events_test.go ├── hex.go ├── hex_test.go ├── keccak256.go ├── merkle_proof.go ├── merkle_proof_test.go ├── solidity_pack.go ├── solidity_pack_test.go ├── typed_data.go ├── typed_data_json.go ├── typed_data_test.go └── types.go ├── ethcontract ├── abi.go └── ethcontract.go ├── ethdeploy └── ethdeploy.go ├── ethgas ├── ema.go ├── ema_test.go ├── ethgas.go ├── ethgas_test.go ├── fixtures │ └── vcr │ │ └── ethgas_mainnet.json ├── histogram_test.go └── readers.go ├── ethkit-test.json.sample ├── ethkit.go ├── ethmempool ├── ethmempool.go └── subscription.go ├── ethmonitor ├── bootstrap.go ├── chain.go ├── ethmonitor.go ├── ethmonitor_test.go ├── fixtures │ └── vcr │ │ └── ethmonitor_sepolia.json ├── pubsub.go └── pubsub_test.go ├── ethproviders ├── config.go ├── ethproviders.go └── ethproviders_test.go ├── ethreceipts ├── ethreceipts.go ├── ethreceipts_test.go ├── filterer.go ├── finalizer.go ├── receipt.go └── subscription.go ├── ethrpc ├── batch.go ├── ens.go ├── ens_test.go ├── ethrpc.go ├── ethrpc_test.go ├── filter.go ├── interface.go ├── jsonrpc.go ├── jsonrpc │ └── jsonrpc.go ├── methods.go ├── networks.go ├── option.go ├── strictness.go ├── strictness_test.go ├── syncing.go ├── unmarshal.go └── utils.go ├── ethtest ├── contracts.go ├── contracts │ ├── CallReceiverMock.json │ └── ERC20Mock.json ├── erc20.go ├── ethtest.go ├── helpers.go ├── reorgme.go ├── reorgme │ ├── .gitignore │ ├── isRunning.sh │ ├── package.json │ └── pnpm-lock.yaml ├── testchain.go ├── testchain │ ├── .gitignore │ ├── hardhat.config.js │ ├── package.json │ └── pnpm-lock.yaml └── testchain_test.go ├── ethtxn ├── ethtxn.go └── ethtxn_test.go ├── ethutil ├── validate_logs_with_block.go └── validate_logs_with_block_test.go ├── ethwallet ├── README.md ├── ethwallet.go ├── ethwallet_test.go ├── hdnode.go ├── hdnode_test.go └── utils.go ├── go-ethereum ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── README.md ├── SECURITY.md ├── accounts │ ├── abi │ │ ├── abi.go │ │ ├── abi_test.go │ │ ├── abifuzzer_test.go │ │ ├── abigen │ │ │ ├── bind.go │ │ │ ├── bind_test.go │ │ │ ├── bindv2.go │ │ │ ├── bindv2_test.go │ │ │ ├── source.go.tpl │ │ │ ├── source2.go.tpl │ │ │ ├── template.go │ │ │ └── testdata │ │ │ │ └── v2 │ │ │ │ ├── callbackparam.go.txt │ │ │ │ ├── crowdsale.go.txt │ │ │ │ ├── dao.go.txt │ │ │ │ ├── deeplynestedarray.go.txt │ │ │ │ ├── empty.go.txt │ │ │ │ ├── eventchecker.go.txt │ │ │ │ ├── getter.go.txt │ │ │ │ ├── identifiercollision.go.txt │ │ │ │ ├── inputchecker.go.txt │ │ │ │ ├── interactor.go.txt │ │ │ │ ├── nameconflict.go.txt │ │ │ │ ├── numericmethodname.go.txt │ │ │ │ ├── outputchecker.go.txt │ │ │ │ ├── overload.go.txt │ │ │ │ ├── rangekeyword.go.txt │ │ │ │ ├── slicer.go.txt │ │ │ │ ├── structs.go.txt │ │ │ │ ├── token.go.txt │ │ │ │ ├── tuple.go.txt │ │ │ │ ├── tupler.go.txt │ │ │ │ └── underscorer.go.txt │ │ ├── argument.go │ │ ├── bind │ │ │ ├── old.go │ │ │ └── v2 │ │ │ │ ├── auth.go │ │ │ │ ├── backend.go │ │ │ │ ├── base.go │ │ │ │ ├── base_test.go │ │ │ │ ├── dep_tree.go │ │ │ │ ├── dep_tree_test.go │ │ │ │ ├── internal │ │ │ │ └── contracts │ │ │ │ │ ├── db │ │ │ │ │ ├── bindings.go │ │ │ │ │ ├── combined-abi.json │ │ │ │ │ └── contract.sol │ │ │ │ │ ├── events │ │ │ │ │ ├── bindings.go │ │ │ │ │ ├── combined-abi.json │ │ │ │ │ └── contract.sol │ │ │ │ │ ├── nested_libraries │ │ │ │ │ ├── abi.json │ │ │ │ │ ├── bindings.go │ │ │ │ │ ├── combined-abi.json │ │ │ │ │ └── contract.sol │ │ │ │ │ ├── solc_errors │ │ │ │ │ ├── bindings.go │ │ │ │ │ ├── combined-abi.json │ │ │ │ │ └── contract.sol │ │ │ │ │ └── uint256arrayreturn │ │ │ │ │ ├── bindings.go │ │ │ │ │ ├── combined-abi.json │ │ │ │ │ └── contract.sol │ │ │ │ ├── lib.go │ │ │ │ └── util.go │ │ ├── doc.go │ │ ├── error.go │ │ ├── error_handling.go │ │ ├── event.go │ │ ├── event_test.go │ │ ├── method.go │ │ ├── method_test.go │ │ ├── pack.go │ │ ├── pack_test.go │ │ ├── packing_test.go │ │ ├── reflect.go │ │ ├── reflect_test.go │ │ ├── selector_parser.go │ │ ├── selector_parser_test.go │ │ ├── topics.go │ │ ├── topics_test.go │ │ ├── type.go │ │ ├── type_test.go │ │ ├── unpack.go │ │ ├── unpack_test.go │ │ └── utils.go │ ├── accounts.go │ ├── accounts_test.go │ ├── errors.go │ ├── hd.go │ ├── hd_test.go │ ├── keystore │ │ ├── account_cache.go │ │ ├── account_cache_test.go │ │ ├── file_cache.go │ │ ├── key.go │ │ ├── keystore.go │ │ ├── keystore_fuzzing_test.go │ │ ├── keystore_test.go │ │ ├── passphrase.go │ │ ├── passphrase_test.go │ │ ├── plain.go │ │ ├── plain_test.go │ │ ├── presale.go │ │ ├── testdata │ │ │ ├── keystore │ │ │ │ ├── .hiddenfile │ │ │ │ ├── README │ │ │ │ ├── UTC--2016-03-22T12-57-55.920751759Z--7ef5a6135f1fd6a02593eedc869c6d41d934aef8 │ │ │ │ ├── aaa │ │ │ │ ├── empty │ │ │ │ ├── foo │ │ │ │ │ └── fd9bd350f08ee3c0c19b85a8e16114a11a60aa4e │ │ │ │ ├── garbage │ │ │ │ ├── no-address │ │ │ │ ├── zero │ │ │ │ └── zzz │ │ │ ├── v1 │ │ │ │ └── cb61d5a9c4896fb9658090b597ef0e7be6f7b67e │ │ │ │ │ └── cb61d5a9c4896fb9658090b597ef0e7be6f7b67e │ │ │ ├── v1_test_vector.json │ │ │ ├── v3_test_vector.json │ │ │ └── very-light-scrypt.json │ │ ├── wallet.go │ │ ├── watch.go │ │ └── watch_fallback.go │ ├── manager.go │ ├── sort.go │ ├── url.go │ └── url_test.go ├── common │ ├── big.go │ ├── bitutil │ │ ├── bitutil.go │ │ ├── bitutil_test.go │ │ ├── compress.go │ │ └── compress_test.go │ ├── bytes.go │ ├── bytes_test.go │ ├── compiler │ │ ├── helpers.go │ │ └── solidity.go │ ├── debug.go │ ├── fdlimit │ │ ├── fdlimit_bsd.go │ │ ├── fdlimit_darwin.go │ │ ├── fdlimit_test.go │ │ ├── fdlimit_unix.go │ │ └── fdlimit_windows.go │ ├── format.go │ ├── hexutil │ │ ├── hexutil.go │ │ ├── hexutil_test.go │ │ ├── json.go │ │ ├── json_example_test.go │ │ └── json_test.go │ ├── lru │ │ ├── basiclru.go │ │ ├── basiclru_test.go │ │ ├── blob_lru.go │ │ ├── blob_lru_test.go │ │ └── lru.go │ ├── math │ │ ├── big.go │ │ ├── big_test.go │ │ ├── integer.go │ │ └── integer_test.go │ ├── mclock │ │ ├── alarm.go │ │ ├── alarm_test.go │ │ ├── mclock.go │ │ ├── mclock.s │ │ ├── simclock.go │ │ └── simclock_test.go │ ├── path.go │ ├── prque │ │ ├── lazyqueue.go │ │ ├── lazyqueue_test.go │ │ ├── prque.go │ │ ├── prque_test.go │ │ ├── sstack.go │ │ └── sstack_test.go │ ├── range.go │ ├── range_test.go │ ├── size.go │ ├── size_test.go │ ├── test_utils.go │ ├── types.go │ └── types_test.go ├── core │ ├── .gitignore │ ├── sender_cacher.go │ ├── state_transition.go │ └── types │ │ ├── account.go │ │ ├── block.go │ │ ├── block_test.go │ │ ├── bloom9.go │ │ ├── bloom9_test.go │ │ ├── deposit.go │ │ ├── deposit_test.go │ │ ├── gen_access_tuple.go │ │ ├── gen_account.go │ │ ├── gen_account_rlp.go │ │ ├── gen_authorization.go │ │ ├── gen_header_json.go │ │ ├── gen_header_rlp.go │ │ ├── gen_log_json.go │ │ ├── gen_log_rlp.go │ │ ├── gen_receipt_json.go │ │ ├── gen_withdrawal_json.go │ │ ├── gen_withdrawal_rlp.go │ │ ├── hashes.go │ │ ├── hashing.go │ │ ├── log.go │ │ ├── log_test.go │ │ ├── receipt.go │ │ ├── receipt_test.go │ │ ├── rlp_fuzzer_test.go │ │ ├── state_account.go │ │ ├── transaction.go │ │ ├── transaction_marshalling.go │ │ ├── transaction_signing.go │ │ ├── transaction_signing_test.go │ │ ├── transaction_test.go │ │ ├── tx_access_list.go │ │ ├── tx_blob.go │ │ ├── tx_blob_test.go │ │ ├── tx_dynamic_fee.go │ │ ├── tx_legacy.go │ │ ├── tx_setcode.go │ │ ├── tx_setcode_test.go │ │ ├── types_test.go │ │ └── withdrawal.go ├── crypto │ ├── blake2b │ │ ├── blake2b.go │ │ ├── blake2bAVX2_amd64.go │ │ ├── blake2bAVX2_amd64.s │ │ ├── blake2b_amd64.go │ │ ├── blake2b_amd64.s │ │ ├── blake2b_f_fuzz_test.go │ │ ├── blake2b_f_test.go │ │ ├── blake2b_generic.go │ │ ├── blake2b_ref.go │ │ ├── blake2b_test.go │ │ ├── blake2x.go │ │ └── register.go │ ├── bn256 │ │ ├── LICENSE │ │ ├── bn256_fast.go │ │ ├── bn256_slow.go │ │ ├── cloudflare │ │ │ ├── LICENSE │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── gfp_amd64.s │ │ │ ├── gfp_arm64.s │ │ │ ├── gfp_decl.go │ │ │ ├── gfp_generic.go │ │ │ ├── gfp_test.go │ │ │ ├── lattice.go │ │ │ ├── lattice_test.go │ │ │ ├── main_test.go │ │ │ ├── mul_amd64.h │ │ │ ├── mul_arm64.h │ │ │ ├── mul_bmi2_amd64.h │ │ │ ├── optate.go │ │ │ └── twist.go │ │ ├── gnark │ │ │ ├── g1.go │ │ │ ├── g2.go │ │ │ ├── gt.go │ │ │ └── pairing.go │ │ └── google │ │ │ ├── bn256.go │ │ │ ├── bn256_test.go │ │ │ ├── constants.go │ │ │ ├── curve.go │ │ │ ├── example_test.go │ │ │ ├── gfp12.go │ │ │ ├── gfp2.go │ │ │ ├── gfp6.go │ │ │ ├── main_test.go │ │ │ ├── optate.go │ │ │ └── twist.go │ ├── crypto.go │ ├── crypto_test.go │ ├── ecies │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README │ │ ├── ecies.go │ │ ├── ecies_test.go │ │ └── params.go │ ├── kzg4844 │ │ ├── kzg4844.go │ │ ├── kzg4844_ckzg_cgo.go │ │ ├── kzg4844_ckzg_nocgo.go │ │ ├── kzg4844_gokzg.go │ │ ├── kzg4844_test.go │ │ └── trusted_setup.json │ ├── secp256k1 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── curve.go │ │ ├── dummy.go │ │ ├── ext.h │ │ ├── libsecp256k1 │ │ │ ├── .cirrus.yml │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── actions │ │ │ │ │ ├── install-homebrew-valgrind │ │ │ │ │ │ └── action.yml │ │ │ │ │ └── run-in-docker-action │ │ │ │ │ │ └── action.yml │ │ │ │ └── workflows │ │ │ │ │ └── ci.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakePresets.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── autogen.sh │ │ │ ├── build-aux │ │ │ │ └── m4 │ │ │ │ │ ├── ax_jni_include_dir.m4 │ │ │ │ │ ├── ax_prog_cc_for_build.m4 │ │ │ │ │ └── bitcoin_secp.m4 │ │ │ ├── configure.ac │ │ │ ├── contrib │ │ │ │ ├── dummy.go │ │ │ │ ├── lax_der_parsing.c │ │ │ │ ├── lax_der_parsing.h │ │ │ │ ├── lax_der_privatekey_parsing.c │ │ │ │ └── lax_der_privatekey_parsing.h │ │ │ ├── doc │ │ │ │ ├── ellswift.md │ │ │ │ ├── musig.md │ │ │ │ ├── release-process.md │ │ │ │ └── safegcd_implementation.md │ │ │ ├── dummy.go │ │ │ ├── include │ │ │ │ ├── dummy.go │ │ │ │ ├── secp256k1.h │ │ │ │ ├── secp256k1_ecdh.h │ │ │ │ ├── secp256k1_ellswift.h │ │ │ │ ├── secp256k1_extrakeys.h │ │ │ │ ├── secp256k1_musig.h │ │ │ │ ├── secp256k1_preallocated.h │ │ │ │ ├── secp256k1_recovery.h │ │ │ │ └── secp256k1_schnorrsig.h │ │ │ ├── libsecp256k1.pc.in │ │ │ ├── sage │ │ │ │ ├── gen_exhaustive_groups.sage │ │ │ │ ├── gen_split_lambda_constants.sage │ │ │ │ ├── group_prover.sage │ │ │ │ ├── prove_group_implementations.sage │ │ │ │ ├── secp256k1_params.sage │ │ │ │ └── weierstrass_prover.sage │ │ │ ├── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── asm │ │ │ │ │ └── field_10x26_arm.s │ │ │ │ ├── assumptions.h │ │ │ │ ├── bench.c │ │ │ │ ├── bench.h │ │ │ │ ├── bench_ecmult.c │ │ │ │ ├── bench_internal.c │ │ │ │ ├── checkmem.h │ │ │ │ ├── ctime_tests.c │ │ │ │ ├── dummy.go │ │ │ │ ├── ecdsa.h │ │ │ │ ├── ecdsa_impl.h │ │ │ │ ├── eckey.h │ │ │ │ ├── eckey_impl.h │ │ │ │ ├── ecmult.h │ │ │ │ ├── ecmult_compute_table.h │ │ │ │ ├── ecmult_compute_table_impl.h │ │ │ │ ├── ecmult_const.h │ │ │ │ ├── ecmult_const_impl.h │ │ │ │ ├── ecmult_gen.h │ │ │ │ ├── ecmult_gen_compute_table.h │ │ │ │ ├── ecmult_gen_compute_table_impl.h │ │ │ │ ├── ecmult_gen_impl.h │ │ │ │ ├── ecmult_impl.h │ │ │ │ ├── field.h │ │ │ │ ├── field_10x26.h │ │ │ │ ├── field_10x26_impl.h │ │ │ │ ├── field_5x52.h │ │ │ │ ├── field_5x52_impl.h │ │ │ │ ├── field_5x52_int128_impl.h │ │ │ │ ├── field_impl.h │ │ │ │ ├── group.h │ │ │ │ ├── group_impl.h │ │ │ │ ├── hash.h │ │ │ │ ├── hash_impl.h │ │ │ │ ├── hsort.h │ │ │ │ ├── hsort_impl.h │ │ │ │ ├── int128.h │ │ │ │ ├── int128_impl.h │ │ │ │ ├── int128_native.h │ │ │ │ ├── int128_native_impl.h │ │ │ │ ├── int128_struct.h │ │ │ │ ├── int128_struct_impl.h │ │ │ │ ├── modinv32.h │ │ │ │ ├── modinv32_impl.h │ │ │ │ ├── modinv64.h │ │ │ │ ├── modinv64_impl.h │ │ │ │ ├── modules │ │ │ │ │ ├── dummy.go │ │ │ │ │ ├── ecdh │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── bench_impl.h │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ ├── ellswift │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── bench_impl.h │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ ├── extrakeys │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ ├── musig │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── keyagg.h │ │ │ │ │ │ ├── keyagg_impl.h │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ ├── session.h │ │ │ │ │ │ ├── session_impl.h │ │ │ │ │ │ ├── tests_impl.h │ │ │ │ │ │ └── vectors.h │ │ │ │ │ ├── recovery │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── bench_impl.h │ │ │ │ │ │ ├── dummy.go │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ │ │ └── tests_impl.h │ │ │ │ │ └── schnorrsig │ │ │ │ │ │ ├── Makefile.am.include │ │ │ │ │ │ ├── bench_impl.h │ │ │ │ │ │ ├── main_impl.h │ │ │ │ │ │ ├── tests_exhaustive_impl.h │ │ │ │ │ │ └── tests_impl.h │ │ │ │ ├── precompute_ecmult.c │ │ │ │ ├── precompute_ecmult_gen.c │ │ │ │ ├── precomputed_ecmult.c │ │ │ │ ├── precomputed_ecmult.h │ │ │ │ ├── precomputed_ecmult_gen.c │ │ │ │ ├── precomputed_ecmult_gen.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 │ │ │ │ ├── scratch.h │ │ │ │ ├── scratch_impl.h │ │ │ │ ├── secp256k1.c │ │ │ │ ├── selftest.h │ │ │ │ ├── testrand.h │ │ │ │ ├── testrand_impl.h │ │ │ │ ├── tests.c │ │ │ │ ├── tests_exhaustive.c │ │ │ │ ├── testutil.h │ │ │ │ ├── util.h │ │ │ │ └── wycheproof │ │ │ │ │ ├── WYCHEPROOF_COPYING │ │ │ │ │ ├── ecdsa_secp256k1_sha256_bitcoin_test.h │ │ │ │ │ └── ecdsa_secp256k1_sha256_bitcoin_test.json │ │ │ └── tools │ │ │ │ ├── check-abi.sh │ │ │ │ ├── test_vectors_musig2_generate.py │ │ │ │ └── tests_wycheproof_generate.py │ │ ├── panic_cb.go │ │ ├── scalar_mult_cgo.go │ │ ├── scalar_mult_nocgo.go │ │ ├── secp256.go │ │ └── secp256_test.go │ ├── signature_cgo.go │ ├── signature_nocgo.go │ ├── signature_test.go │ └── signify │ │ ├── signify.go │ │ └── signify_fuzz.go ├── ethclient │ ├── ethclient.go │ ├── gethclient │ │ └── gethclient.go │ └── signer.go ├── event │ ├── event.go │ ├── event_test.go │ ├── example_feed_test.go │ ├── example_scope_test.go │ ├── example_subscription_test.go │ ├── example_test.go │ ├── feed.go │ ├── feed_test.go │ ├── feedof.go │ ├── feedof_test.go │ ├── multisub.go │ ├── multisub_test.go │ ├── subscription.go │ └── subscription_test.go ├── interfaces.go ├── internal │ ├── blocktest │ │ └── test_hash.go │ └── testrand │ │ └── rand.go ├── log │ ├── format.go │ ├── format_test.go │ ├── handler.go │ ├── handler_glog.go │ ├── logger.go │ ├── logger_test.go │ ├── root.go │ └── root_test.go ├── p2p │ └── server.go ├── params │ ├── bootnodes.go │ ├── config.go │ ├── config_test.go │ ├── dao.go │ ├── denomination.go │ ├── forks │ │ └── forks.go │ ├── network_params.go │ ├── protocol_params.go │ └── verkle_params.go ├── rlp │ ├── decode.go │ ├── decode_tail_test.go │ ├── decode_test.go │ ├── doc.go │ ├── encbuffer.go │ ├── encbuffer_example_test.go │ ├── encode.go │ ├── encode_test.go │ ├── encoder_example_test.go │ ├── internal │ │ └── rlpstruct │ │ │ └── rlpstruct.go │ ├── iterator.go │ ├── iterator_test.go │ ├── raw.go │ ├── raw_test.go │ ├── rlpgen │ │ ├── gen.go │ │ ├── gen_test.go │ │ ├── main.go │ │ ├── testdata │ │ │ ├── bigint.in.txt │ │ │ ├── bigint.out.txt │ │ │ ├── nil.in.txt │ │ │ ├── nil.out.txt │ │ │ ├── optional.in.txt │ │ │ ├── optional.out.txt │ │ │ ├── rawvalue.in.txt │ │ │ ├── rawvalue.out.txt │ │ │ ├── uint256.in.txt │ │ │ ├── uint256.out.txt │ │ │ ├── uints.in.txt │ │ │ └── uints.out.txt │ │ └── types.go │ ├── safe.go │ ├── typecache.go │ └── unsafe.go └── rpc │ ├── _client_test.go │ ├── _server_test.go │ ├── client.go │ ├── client_example_test.go │ ├── client_opt.go │ ├── client_opt_test.go │ ├── context_headers.go │ ├── doc.go │ ├── errors.go │ ├── handler.go │ ├── http.go │ ├── http_test.go │ ├── ipc.go │ ├── ipc_js.go │ ├── ipc_unix.go │ ├── json.go │ ├── server.go │ ├── service.go │ ├── stdio.go │ ├── subscription.go │ ├── subscription_test.go │ ├── testservice_test.go │ ├── types.go │ ├── types_test.go │ ├── websocket.go │ └── websocket_test.go ├── go.mod ├── go.sum ├── types.go └── util ├── alerter.go └── testing.go /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/README.md -------------------------------------------------------------------------------- /cmd/chain-blast/erc20_mock.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-blast/erc20_mock.gen.go -------------------------------------------------------------------------------- /cmd/chain-blast/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-blast/main.go -------------------------------------------------------------------------------- /cmd/chain-ethgas/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-ethgas/main.go -------------------------------------------------------------------------------- /cmd/chain-mempool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-mempool/main.go -------------------------------------------------------------------------------- /cmd/chain-newheads/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-newheads/main.go -------------------------------------------------------------------------------- /cmd/chain-receipts/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-receipts/main.go -------------------------------------------------------------------------------- /cmd/chain-watch/.gitignore: -------------------------------------------------------------------------------- 1 | snapshot.json 2 | -------------------------------------------------------------------------------- /cmd/chain-watch/fixtures/vcr/ethmonitor_watch1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/fixtures/vcr/ethmonitor_watch1.json -------------------------------------------------------------------------------- /cmd/chain-watch/fixtures/vcr/ethmonitor_watch2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/fixtures/vcr/ethmonitor_watch2.json -------------------------------------------------------------------------------- /cmd/chain-watch/fixtures/vcr/ethmonitor_watch3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/fixtures/vcr/ethmonitor_watch3.json -------------------------------------------------------------------------------- /cmd/chain-watch/fixtures/vcr/ethmonitor_watch4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/fixtures/vcr/ethmonitor_watch4.json -------------------------------------------------------------------------------- /cmd/chain-watch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/main.go -------------------------------------------------------------------------------- /cmd/chain-watch/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/chain-watch/summary.go -------------------------------------------------------------------------------- /cmd/ethkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/README.md -------------------------------------------------------------------------------- /cmd/ethkit/_contract.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /cmd/ethkit/_gas.go: -------------------------------------------------------------------------------- 1 | package main 2 | -------------------------------------------------------------------------------- /cmd/ethkit/_receipts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/_receipts.go -------------------------------------------------------------------------------- /cmd/ethkit/abigen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/abigen.go -------------------------------------------------------------------------------- /cmd/ethkit/artifacts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/artifacts.go -------------------------------------------------------------------------------- /cmd/ethkit/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/balance.go -------------------------------------------------------------------------------- /cmd/ethkit/balance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/balance_test.go -------------------------------------------------------------------------------- /cmd/ethkit/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/block.go -------------------------------------------------------------------------------- /cmd/ethkit/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/block_test.go -------------------------------------------------------------------------------- /cmd/ethkit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/main.go -------------------------------------------------------------------------------- /cmd/ethkit/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/print.go -------------------------------------------------------------------------------- /cmd/ethkit/print_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/print_test.go -------------------------------------------------------------------------------- /cmd/ethkit/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/cmd/ethkit/wallet.go -------------------------------------------------------------------------------- /ethartifact/ethartifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethartifact/ethartifact.go -------------------------------------------------------------------------------- /ethartifact/ethartifact_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethartifact/ethartifact_test.go -------------------------------------------------------------------------------- /ethartifact/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethartifact/registry.go -------------------------------------------------------------------------------- /ethartifact/testdata/foundry_artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethartifact/testdata/foundry_artifact.json -------------------------------------------------------------------------------- /ethartifact/testdata/hardhat_artifact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethartifact/testdata/hardhat_artifact.json -------------------------------------------------------------------------------- /ethcoder/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi.go -------------------------------------------------------------------------------- /ethcoder/abi_deprecated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_deprecated.go -------------------------------------------------------------------------------- /ethcoder/abi_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_helpers.go -------------------------------------------------------------------------------- /ethcoder/abi_sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_sig.go -------------------------------------------------------------------------------- /ethcoder/abi_sig_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_sig_parser.go -------------------------------------------------------------------------------- /ethcoder/abi_sig_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_sig_parser_test.go -------------------------------------------------------------------------------- /ethcoder/abi_sig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_sig_test.go -------------------------------------------------------------------------------- /ethcoder/abi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/abi_test.go -------------------------------------------------------------------------------- /ethcoder/ethcoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/ethcoder.go -------------------------------------------------------------------------------- /ethcoder/ethcoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/ethcoder_test.go -------------------------------------------------------------------------------- /ethcoder/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/events.go -------------------------------------------------------------------------------- /ethcoder/events_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/events_test.go -------------------------------------------------------------------------------- /ethcoder/hex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/hex.go -------------------------------------------------------------------------------- /ethcoder/hex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/hex_test.go -------------------------------------------------------------------------------- /ethcoder/keccak256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/keccak256.go -------------------------------------------------------------------------------- /ethcoder/merkle_proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/merkle_proof.go -------------------------------------------------------------------------------- /ethcoder/merkle_proof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/merkle_proof_test.go -------------------------------------------------------------------------------- /ethcoder/solidity_pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/solidity_pack.go -------------------------------------------------------------------------------- /ethcoder/solidity_pack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/solidity_pack_test.go -------------------------------------------------------------------------------- /ethcoder/typed_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/typed_data.go -------------------------------------------------------------------------------- /ethcoder/typed_data_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/typed_data_json.go -------------------------------------------------------------------------------- /ethcoder/typed_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/typed_data_test.go -------------------------------------------------------------------------------- /ethcoder/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcoder/types.go -------------------------------------------------------------------------------- /ethcontract/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcontract/abi.go -------------------------------------------------------------------------------- /ethcontract/ethcontract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethcontract/ethcontract.go -------------------------------------------------------------------------------- /ethdeploy/ethdeploy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethdeploy/ethdeploy.go -------------------------------------------------------------------------------- /ethgas/ema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/ema.go -------------------------------------------------------------------------------- /ethgas/ema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/ema_test.go -------------------------------------------------------------------------------- /ethgas/ethgas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/ethgas.go -------------------------------------------------------------------------------- /ethgas/ethgas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/ethgas_test.go -------------------------------------------------------------------------------- /ethgas/fixtures/vcr/ethgas_mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/fixtures/vcr/ethgas_mainnet.json -------------------------------------------------------------------------------- /ethgas/histogram_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/histogram_test.go -------------------------------------------------------------------------------- /ethgas/readers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethgas/readers.go -------------------------------------------------------------------------------- /ethkit-test.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethkit-test.json.sample -------------------------------------------------------------------------------- /ethkit.go: -------------------------------------------------------------------------------- 1 | package ethkit 2 | -------------------------------------------------------------------------------- /ethmempool/ethmempool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmempool/ethmempool.go -------------------------------------------------------------------------------- /ethmempool/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmempool/subscription.go -------------------------------------------------------------------------------- /ethmonitor/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/bootstrap.go -------------------------------------------------------------------------------- /ethmonitor/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/chain.go -------------------------------------------------------------------------------- /ethmonitor/ethmonitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/ethmonitor.go -------------------------------------------------------------------------------- /ethmonitor/ethmonitor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/ethmonitor_test.go -------------------------------------------------------------------------------- /ethmonitor/fixtures/vcr/ethmonitor_sepolia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/fixtures/vcr/ethmonitor_sepolia.json -------------------------------------------------------------------------------- /ethmonitor/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/pubsub.go -------------------------------------------------------------------------------- /ethmonitor/pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethmonitor/pubsub_test.go -------------------------------------------------------------------------------- /ethproviders/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethproviders/config.go -------------------------------------------------------------------------------- /ethproviders/ethproviders.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethproviders/ethproviders.go -------------------------------------------------------------------------------- /ethproviders/ethproviders_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethproviders/ethproviders_test.go -------------------------------------------------------------------------------- /ethreceipts/ethreceipts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/ethreceipts.go -------------------------------------------------------------------------------- /ethreceipts/ethreceipts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/ethreceipts_test.go -------------------------------------------------------------------------------- /ethreceipts/filterer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/filterer.go -------------------------------------------------------------------------------- /ethreceipts/finalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/finalizer.go -------------------------------------------------------------------------------- /ethreceipts/receipt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/receipt.go -------------------------------------------------------------------------------- /ethreceipts/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethreceipts/subscription.go -------------------------------------------------------------------------------- /ethrpc/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/batch.go -------------------------------------------------------------------------------- /ethrpc/ens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/ens.go -------------------------------------------------------------------------------- /ethrpc/ens_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/ens_test.go -------------------------------------------------------------------------------- /ethrpc/ethrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/ethrpc.go -------------------------------------------------------------------------------- /ethrpc/ethrpc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/ethrpc_test.go -------------------------------------------------------------------------------- /ethrpc/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/filter.go -------------------------------------------------------------------------------- /ethrpc/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/interface.go -------------------------------------------------------------------------------- /ethrpc/jsonrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/jsonrpc.go -------------------------------------------------------------------------------- /ethrpc/jsonrpc/jsonrpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/jsonrpc/jsonrpc.go -------------------------------------------------------------------------------- /ethrpc/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/methods.go -------------------------------------------------------------------------------- /ethrpc/networks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/networks.go -------------------------------------------------------------------------------- /ethrpc/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/option.go -------------------------------------------------------------------------------- /ethrpc/strictness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/strictness.go -------------------------------------------------------------------------------- /ethrpc/strictness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/strictness_test.go -------------------------------------------------------------------------------- /ethrpc/syncing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/syncing.go -------------------------------------------------------------------------------- /ethrpc/unmarshal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/unmarshal.go -------------------------------------------------------------------------------- /ethrpc/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethrpc/utils.go -------------------------------------------------------------------------------- /ethtest/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/contracts.go -------------------------------------------------------------------------------- /ethtest/contracts/CallReceiverMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/contracts/CallReceiverMock.json -------------------------------------------------------------------------------- /ethtest/contracts/ERC20Mock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/contracts/ERC20Mock.json -------------------------------------------------------------------------------- /ethtest/erc20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/erc20.go -------------------------------------------------------------------------------- /ethtest/ethtest.go: -------------------------------------------------------------------------------- 1 | package ethtest 2 | -------------------------------------------------------------------------------- /ethtest/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/helpers.go -------------------------------------------------------------------------------- /ethtest/reorgme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/reorgme.go -------------------------------------------------------------------------------- /ethtest/reorgme/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /ethtest/reorgme/isRunning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/reorgme/isRunning.sh -------------------------------------------------------------------------------- /ethtest/reorgme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/reorgme/package.json -------------------------------------------------------------------------------- /ethtest/reorgme/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/reorgme/pnpm-lock.yaml -------------------------------------------------------------------------------- /ethtest/testchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/testchain.go -------------------------------------------------------------------------------- /ethtest/testchain/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /ethtest/testchain/hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/testchain/hardhat.config.js -------------------------------------------------------------------------------- /ethtest/testchain/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/testchain/package.json -------------------------------------------------------------------------------- /ethtest/testchain/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/testchain/pnpm-lock.yaml -------------------------------------------------------------------------------- /ethtest/testchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtest/testchain_test.go -------------------------------------------------------------------------------- /ethtxn/ethtxn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtxn/ethtxn.go -------------------------------------------------------------------------------- /ethtxn/ethtxn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethtxn/ethtxn_test.go -------------------------------------------------------------------------------- /ethutil/validate_logs_with_block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethutil/validate_logs_with_block.go -------------------------------------------------------------------------------- /ethutil/validate_logs_with_block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethutil/validate_logs_with_block_test.go -------------------------------------------------------------------------------- /ethwallet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/README.md -------------------------------------------------------------------------------- /ethwallet/ethwallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/ethwallet.go -------------------------------------------------------------------------------- /ethwallet/ethwallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/ethwallet_test.go -------------------------------------------------------------------------------- /ethwallet/hdnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/hdnode.go -------------------------------------------------------------------------------- /ethwallet/hdnode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/hdnode_test.go -------------------------------------------------------------------------------- /ethwallet/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/ethwallet/utils.go -------------------------------------------------------------------------------- /go-ethereum/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/AUTHORS -------------------------------------------------------------------------------- /go-ethereum/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/COPYING -------------------------------------------------------------------------------- /go-ethereum/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/COPYING.LESSER -------------------------------------------------------------------------------- /go-ethereum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/README.md -------------------------------------------------------------------------------- /go-ethereum/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/SECURITY.md -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abi.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abi_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abifuzzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abifuzzer_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/bind.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/bind_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/bindv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/bindv2.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/bindv2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/bindv2_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/source.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/source.go.tpl -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/source2.go.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/source2.go.tpl -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/template.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/callbackparam.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/callbackparam.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/crowdsale.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/crowdsale.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/dao.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/dao.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/deeplynestedarray.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/deeplynestedarray.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/empty.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/empty.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/eventchecker.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/eventchecker.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/getter.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/getter.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/identifiercollision.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/identifiercollision.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/inputchecker.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/inputchecker.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/interactor.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/interactor.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/nameconflict.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/nameconflict.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/numericmethodname.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/numericmethodname.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/outputchecker.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/outputchecker.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/overload.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/overload.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/rangekeyword.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/rangekeyword.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/slicer.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/slicer.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/structs.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/structs.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/token.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/token.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/tuple.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/tuple.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/tupler.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/tupler.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/abigen/testdata/v2/underscorer.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/abigen/testdata/v2/underscorer.go.txt -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/argument.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/old.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/old.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/auth.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/backend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/backend.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/base.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/base_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/dep_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/dep_tree.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/dep_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/dep_tree_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/db/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/db/bindings.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/db/combined-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/db/combined-abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/db/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/db/contract.sol -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/events/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/events/bindings.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/events/combined-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/events/combined-abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/events/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/events/contract.sol -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/bindings.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/combined-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/combined-abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/nested_libraries/contract.sol -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/bindings.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/combined-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/combined-abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/solc_errors/contract.sol -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/bindings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/bindings.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/combined-abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/combined-abi.json -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/contract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/internal/contracts/uint256arrayreturn/contract.sol -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/lib.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/bind/v2/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/bind/v2/util.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/doc.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/error.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/error_handling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/error_handling.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/event.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/event_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/method.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/method_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/method_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/pack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/pack.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/pack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/pack_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/packing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/packing_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/reflect.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/reflect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/reflect_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/selector_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/selector_parser.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/selector_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/selector_parser_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/topics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/topics.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/topics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/topics_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/type.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/type_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/unpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/unpack.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/unpack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/unpack_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/abi/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/abi/utils.go -------------------------------------------------------------------------------- /go-ethereum/accounts/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/accounts.go -------------------------------------------------------------------------------- /go-ethereum/accounts/accounts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/accounts_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/errors.go -------------------------------------------------------------------------------- /go-ethereum/accounts/hd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/hd.go -------------------------------------------------------------------------------- /go-ethereum/accounts/hd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/hd_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/account_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/account_cache.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/account_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/account_cache_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/file_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/file_cache.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/key.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/keystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/keystore.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/keystore_fuzzing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/keystore_fuzzing_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/keystore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/keystore_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/passphrase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/passphrase.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/passphrase_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/passphrase_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/plain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/plain.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/plain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/plain_test.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/presale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/presale.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/.hiddenfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/.hiddenfile -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/README -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/UTC--2016-03-22T12-57-55.920751759Z--7ef5a6135f1fd6a02593eedc869c6d41d934aef8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/UTC--2016-03-22T12-57-55.920751759Z--7ef5a6135f1fd6a02593eedc869c6d41d934aef8 -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/aaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/aaa -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/foo/fd9bd350f08ee3c0c19b85a8e16114a11a60aa4e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/foo/fd9bd350f08ee3c0c19b85a8e16114a11a60aa4e -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/garbage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/garbage -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/no-address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/no-address -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/zero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/zero -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/keystore/zzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/keystore/zzz -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/v1/cb61d5a9c4896fb9658090b597ef0e7be6f7b67e/cb61d5a9c4896fb9658090b597ef0e7be6f7b67e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/v1/cb61d5a9c4896fb9658090b597ef0e7be6f7b67e/cb61d5a9c4896fb9658090b597ef0e7be6f7b67e -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/v1_test_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/v1_test_vector.json -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/v3_test_vector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/v3_test_vector.json -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/testdata/very-light-scrypt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/testdata/very-light-scrypt.json -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/wallet.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/watch.go -------------------------------------------------------------------------------- /go-ethereum/accounts/keystore/watch_fallback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/keystore/watch_fallback.go -------------------------------------------------------------------------------- /go-ethereum/accounts/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/manager.go -------------------------------------------------------------------------------- /go-ethereum/accounts/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/sort.go -------------------------------------------------------------------------------- /go-ethereum/accounts/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/url.go -------------------------------------------------------------------------------- /go-ethereum/accounts/url_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/accounts/url_test.go -------------------------------------------------------------------------------- /go-ethereum/common/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/big.go -------------------------------------------------------------------------------- /go-ethereum/common/bitutil/bitutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bitutil/bitutil.go -------------------------------------------------------------------------------- /go-ethereum/common/bitutil/bitutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bitutil/bitutil_test.go -------------------------------------------------------------------------------- /go-ethereum/common/bitutil/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bitutil/compress.go -------------------------------------------------------------------------------- /go-ethereum/common/bitutil/compress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bitutil/compress_test.go -------------------------------------------------------------------------------- /go-ethereum/common/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bytes.go -------------------------------------------------------------------------------- /go-ethereum/common/bytes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/bytes_test.go -------------------------------------------------------------------------------- /go-ethereum/common/compiler/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/compiler/helpers.go -------------------------------------------------------------------------------- /go-ethereum/common/compiler/solidity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/compiler/solidity.go -------------------------------------------------------------------------------- /go-ethereum/common/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/debug.go -------------------------------------------------------------------------------- /go-ethereum/common/fdlimit/fdlimit_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/fdlimit/fdlimit_bsd.go -------------------------------------------------------------------------------- /go-ethereum/common/fdlimit/fdlimit_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/fdlimit/fdlimit_darwin.go -------------------------------------------------------------------------------- /go-ethereum/common/fdlimit/fdlimit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/fdlimit/fdlimit_test.go -------------------------------------------------------------------------------- /go-ethereum/common/fdlimit/fdlimit_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/fdlimit/fdlimit_unix.go -------------------------------------------------------------------------------- /go-ethereum/common/fdlimit/fdlimit_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/fdlimit/fdlimit_windows.go -------------------------------------------------------------------------------- /go-ethereum/common/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/format.go -------------------------------------------------------------------------------- /go-ethereum/common/hexutil/hexutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/hexutil/hexutil.go -------------------------------------------------------------------------------- /go-ethereum/common/hexutil/hexutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/hexutil/hexutil_test.go -------------------------------------------------------------------------------- /go-ethereum/common/hexutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/hexutil/json.go -------------------------------------------------------------------------------- /go-ethereum/common/hexutil/json_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/hexutil/json_example_test.go -------------------------------------------------------------------------------- /go-ethereum/common/hexutil/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/hexutil/json_test.go -------------------------------------------------------------------------------- /go-ethereum/common/lru/basiclru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/lru/basiclru.go -------------------------------------------------------------------------------- /go-ethereum/common/lru/basiclru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/lru/basiclru_test.go -------------------------------------------------------------------------------- /go-ethereum/common/lru/blob_lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/lru/blob_lru.go -------------------------------------------------------------------------------- /go-ethereum/common/lru/blob_lru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/lru/blob_lru_test.go -------------------------------------------------------------------------------- /go-ethereum/common/lru/lru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/lru/lru.go -------------------------------------------------------------------------------- /go-ethereum/common/math/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/math/big.go -------------------------------------------------------------------------------- /go-ethereum/common/math/big_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/math/big_test.go -------------------------------------------------------------------------------- /go-ethereum/common/math/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/math/integer.go -------------------------------------------------------------------------------- /go-ethereum/common/math/integer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/math/integer_test.go -------------------------------------------------------------------------------- /go-ethereum/common/mclock/alarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/alarm.go -------------------------------------------------------------------------------- /go-ethereum/common/mclock/alarm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/alarm_test.go -------------------------------------------------------------------------------- /go-ethereum/common/mclock/mclock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/mclock.go -------------------------------------------------------------------------------- /go-ethereum/common/mclock/mclock.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/mclock.s -------------------------------------------------------------------------------- /go-ethereum/common/mclock/simclock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/simclock.go -------------------------------------------------------------------------------- /go-ethereum/common/mclock/simclock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/mclock/simclock_test.go -------------------------------------------------------------------------------- /go-ethereum/common/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/path.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/lazyqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/lazyqueue.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/lazyqueue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/lazyqueue_test.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/prque.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/prque.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/prque_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/prque_test.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/sstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/sstack.go -------------------------------------------------------------------------------- /go-ethereum/common/prque/sstack_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/prque/sstack_test.go -------------------------------------------------------------------------------- /go-ethereum/common/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/range.go -------------------------------------------------------------------------------- /go-ethereum/common/range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/range_test.go -------------------------------------------------------------------------------- /go-ethereum/common/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/size.go -------------------------------------------------------------------------------- /go-ethereum/common/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/size_test.go -------------------------------------------------------------------------------- /go-ethereum/common/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/test_utils.go -------------------------------------------------------------------------------- /go-ethereum/common/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/types.go -------------------------------------------------------------------------------- /go-ethereum/common/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/common/types_test.go -------------------------------------------------------------------------------- /go-ethereum/core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/.gitignore -------------------------------------------------------------------------------- /go-ethereum/core/sender_cacher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/sender_cacher.go -------------------------------------------------------------------------------- /go-ethereum/core/state_transition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/state_transition.go -------------------------------------------------------------------------------- /go-ethereum/core/types/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/account.go -------------------------------------------------------------------------------- /go-ethereum/core/types/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/block.go -------------------------------------------------------------------------------- /go-ethereum/core/types/block_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/block_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/bloom9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/bloom9.go -------------------------------------------------------------------------------- /go-ethereum/core/types/bloom9_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/bloom9_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/deposit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/deposit.go -------------------------------------------------------------------------------- /go-ethereum/core/types/deposit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/deposit_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_access_tuple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_access_tuple.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_account.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_account_rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_account_rlp.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_authorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_authorization.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_header_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_header_json.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_header_rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_header_rlp.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_log_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_log_json.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_log_rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_log_rlp.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_receipt_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_receipt_json.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_withdrawal_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_withdrawal_json.go -------------------------------------------------------------------------------- /go-ethereum/core/types/gen_withdrawal_rlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/gen_withdrawal_rlp.go -------------------------------------------------------------------------------- /go-ethereum/core/types/hashes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/hashes.go -------------------------------------------------------------------------------- /go-ethereum/core/types/hashing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/hashing.go -------------------------------------------------------------------------------- /go-ethereum/core/types/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/log.go -------------------------------------------------------------------------------- /go-ethereum/core/types/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/log_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/receipt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/receipt.go -------------------------------------------------------------------------------- /go-ethereum/core/types/receipt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/receipt_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/rlp_fuzzer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/rlp_fuzzer_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/state_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/state_account.go -------------------------------------------------------------------------------- /go-ethereum/core/types/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/transaction.go -------------------------------------------------------------------------------- /go-ethereum/core/types/transaction_marshalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/transaction_marshalling.go -------------------------------------------------------------------------------- /go-ethereum/core/types/transaction_signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/transaction_signing.go -------------------------------------------------------------------------------- /go-ethereum/core/types/transaction_signing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/transaction_signing_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/transaction_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_access_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_access_list.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_blob.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_blob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_blob_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_dynamic_fee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_dynamic_fee.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_legacy.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_setcode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_setcode.go -------------------------------------------------------------------------------- /go-ethereum/core/types/tx_setcode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/tx_setcode_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/types_test.go -------------------------------------------------------------------------------- /go-ethereum/core/types/withdrawal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/core/types/withdrawal.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2bAVX2_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2bAVX2_amd64.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2bAVX2_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2bAVX2_amd64.s -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_amd64.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_amd64.s -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_f_fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_f_fuzz_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_f_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_f_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_generic.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_ref.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2b_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2b_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/blake2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/blake2x.go -------------------------------------------------------------------------------- /go-ethereum/crypto/blake2b/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/blake2b/register.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/LICENSE -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/bn256_fast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/bn256_fast.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/bn256_slow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/bn256_slow.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/LICENSE -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/bn256.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/bn256_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/constants.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/curve.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/example_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp12.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp2.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp6.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp_amd64.s -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp_arm64.s -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp_decl.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp_generic.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/gfp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/gfp_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/lattice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/lattice.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/lattice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/lattice_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/main_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/mul_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/mul_amd64.h -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/mul_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/mul_arm64.h -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/mul_bmi2_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/mul_bmi2_amd64.h -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/optate.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/cloudflare/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/cloudflare/twist.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/gnark/g1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/gnark/g1.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/gnark/g2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/gnark/g2.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/gnark/gt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/gnark/gt.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/gnark/pairing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/gnark/pairing.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/bn256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/bn256.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/bn256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/bn256_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/constants.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/curve.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/example_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/gfp12.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/gfp12.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/gfp2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/gfp2.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/gfp6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/gfp6.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/main_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/optate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/optate.go -------------------------------------------------------------------------------- /go-ethereum/crypto/bn256/google/twist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/bn256/google/twist.go -------------------------------------------------------------------------------- /go-ethereum/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/crypto.go -------------------------------------------------------------------------------- /go-ethereum/crypto/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/crypto_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/.gitignore -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/LICENSE -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/README -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/ecies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/ecies.go -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/ecies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/ecies_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/ecies/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/ecies/params.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/kzg4844.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/kzg4844.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/kzg4844_ckzg_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/kzg4844_ckzg_cgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/kzg4844_ckzg_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/kzg4844_ckzg_nocgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/kzg4844_gokzg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/kzg4844_gokzg.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/kzg4844_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/kzg4844_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/kzg4844/trusted_setup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/kzg4844/trusted_setup.json -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/.gitignore -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/LICENSE -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/curve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/curve.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/ext.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.cirrus.yml -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.gitattributes -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.github/actions/install-homebrew-valgrind/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.github/actions/install-homebrew-valgrind/action.yml -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.github/actions/run-in-docker-action/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.github/actions/run-in-docker-action/action.yml -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.github/workflows/ci.yml -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/.gitignore -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/CHANGELOG.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/CMakeLists.txt -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/CMakePresets.json -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/CONTRIBUTING.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/COPYING -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/Makefile.am -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/README.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/SECURITY.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_jni_include_dir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_jni_include_dir.m4 -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/bitcoin_secp.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/build-aux/m4/bitcoin_secp.m4 -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/configure.ac -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/contrib/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_parsing.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/contrib/lax_der_privatekey_parsing.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/doc/ellswift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/doc/ellswift.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/doc/musig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/doc/musig.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/doc/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/doc/release-process.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/doc/safegcd_implementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/doc/safegcd_implementation.md -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ecdh.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ellswift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_ellswift.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_extrakeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_extrakeys.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_musig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_musig.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_preallocated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_preallocated.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_recovery.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_schnorrsig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/include/secp256k1_schnorrsig.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/libsecp256k1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/libsecp256k1.pc.in -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/gen_exhaustive_groups.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/gen_exhaustive_groups.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/gen_split_lambda_constants.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/gen_split_lambda_constants.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/group_prover.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/group_prover.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/prove_group_implementations.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/prove_group_implementations.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/secp256k1_params.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/secp256k1_params.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/sage/weierstrass_prover.sage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/sage/weierstrass_prover.sage -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/CMakeLists.txt -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/asm/field_10x26_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/asm/field_10x26_arm.s -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/assumptions.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_ecmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_ecmult.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/bench_internal.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/checkmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/checkmem.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ctime_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ctime_tests.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecdsa_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/eckey_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_compute_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_compute_table.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_compute_table_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_compute_table_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_const_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_compute_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_compute_table.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_compute_table_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_compute_table_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_gen_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/ecmult_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_10x26_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_int128_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_5x52_int128_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/field_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/field_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/group.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/group_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/group_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/hash_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/hash_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/hsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/hsort.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/hsort_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/hsort_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_native.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_native_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_native_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_struct.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_struct_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/int128_struct_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv32.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv32_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv32_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv64.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv64_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modinv64_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/bench_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/bench_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ecdh/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/bench_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/bench_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/tests_exhaustive_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/tests_exhaustive_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/ellswift/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/tests_exhaustive_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/tests_exhaustive_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/extrakeys/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/keyagg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/keyagg.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/keyagg_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/keyagg_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/session.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/session_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/session_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/vectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/musig/vectors.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/bench_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/bench_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/dummy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/dummy.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_exhaustive_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_exhaustive_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/recovery/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/Makefile.am.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/Makefile.am.include -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/bench_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/bench_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/main_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/main_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/tests_exhaustive_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/tests_exhaustive_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/tests_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/modules/schnorrsig/tests_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precompute_ecmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precompute_ecmult.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precompute_ecmult_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precompute_ecmult_gen.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult_gen.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/precomputed_ecmult_gen.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_4x64_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_8x32_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scalar_low_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scratch.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/scratch_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/scratch_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/secp256k1.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/selftest.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/testrand_impl.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/tests_exhaustive.c -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/testutil.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/util.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/WYCHEPROOF_COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/WYCHEPROOF_COPYING -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/ecdsa_secp256k1_sha256_bitcoin_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/ecdsa_secp256k1_sha256_bitcoin_test.h -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/ecdsa_secp256k1_sha256_bitcoin_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/src/wycheproof/ecdsa_secp256k1_sha256_bitcoin_test.json -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/tools/check-abi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/tools/check-abi.sh -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/tools/test_vectors_musig2_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/tools/test_vectors_musig2_generate.py -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/libsecp256k1/tools/tests_wycheproof_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/libsecp256k1/tools/tests_wycheproof_generate.py -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/panic_cb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/panic_cb.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/scalar_mult_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/scalar_mult_cgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/scalar_mult_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/scalar_mult_nocgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/secp256.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/secp256.go -------------------------------------------------------------------------------- /go-ethereum/crypto/secp256k1/secp256_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/secp256k1/secp256_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/signature_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/signature_cgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/signature_nocgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/signature_nocgo.go -------------------------------------------------------------------------------- /go-ethereum/crypto/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/signature_test.go -------------------------------------------------------------------------------- /go-ethereum/crypto/signify/signify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/signify/signify.go -------------------------------------------------------------------------------- /go-ethereum/crypto/signify/signify_fuzz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/crypto/signify/signify_fuzz.go -------------------------------------------------------------------------------- /go-ethereum/ethclient/ethclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/ethclient/ethclient.go -------------------------------------------------------------------------------- /go-ethereum/ethclient/gethclient/gethclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/ethclient/gethclient/gethclient.go -------------------------------------------------------------------------------- /go-ethereum/ethclient/signer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/ethclient/signer.go -------------------------------------------------------------------------------- /go-ethereum/event/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/event.go -------------------------------------------------------------------------------- /go-ethereum/event/event_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/event_test.go -------------------------------------------------------------------------------- /go-ethereum/event/example_feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/example_feed_test.go -------------------------------------------------------------------------------- /go-ethereum/event/example_scope_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/example_scope_test.go -------------------------------------------------------------------------------- /go-ethereum/event/example_subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/example_subscription_test.go -------------------------------------------------------------------------------- /go-ethereum/event/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/example_test.go -------------------------------------------------------------------------------- /go-ethereum/event/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/feed.go -------------------------------------------------------------------------------- /go-ethereum/event/feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/feed_test.go -------------------------------------------------------------------------------- /go-ethereum/event/feedof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/feedof.go -------------------------------------------------------------------------------- /go-ethereum/event/feedof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/feedof_test.go -------------------------------------------------------------------------------- /go-ethereum/event/multisub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/multisub.go -------------------------------------------------------------------------------- /go-ethereum/event/multisub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/multisub_test.go -------------------------------------------------------------------------------- /go-ethereum/event/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/subscription.go -------------------------------------------------------------------------------- /go-ethereum/event/subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/event/subscription_test.go -------------------------------------------------------------------------------- /go-ethereum/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/interfaces.go -------------------------------------------------------------------------------- /go-ethereum/internal/blocktest/test_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/internal/blocktest/test_hash.go -------------------------------------------------------------------------------- /go-ethereum/internal/testrand/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/internal/testrand/rand.go -------------------------------------------------------------------------------- /go-ethereum/log/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/format.go -------------------------------------------------------------------------------- /go-ethereum/log/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/format_test.go -------------------------------------------------------------------------------- /go-ethereum/log/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/handler.go -------------------------------------------------------------------------------- /go-ethereum/log/handler_glog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/handler_glog.go -------------------------------------------------------------------------------- /go-ethereum/log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/logger.go -------------------------------------------------------------------------------- /go-ethereum/log/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/logger_test.go -------------------------------------------------------------------------------- /go-ethereum/log/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/root.go -------------------------------------------------------------------------------- /go-ethereum/log/root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/log/root_test.go -------------------------------------------------------------------------------- /go-ethereum/p2p/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/p2p/server.go -------------------------------------------------------------------------------- /go-ethereum/params/bootnodes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/bootnodes.go -------------------------------------------------------------------------------- /go-ethereum/params/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/config.go -------------------------------------------------------------------------------- /go-ethereum/params/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/config_test.go -------------------------------------------------------------------------------- /go-ethereum/params/dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/dao.go -------------------------------------------------------------------------------- /go-ethereum/params/denomination.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/denomination.go -------------------------------------------------------------------------------- /go-ethereum/params/forks/forks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/forks/forks.go -------------------------------------------------------------------------------- /go-ethereum/params/network_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/network_params.go -------------------------------------------------------------------------------- /go-ethereum/params/protocol_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/protocol_params.go -------------------------------------------------------------------------------- /go-ethereum/params/verkle_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/params/verkle_params.go -------------------------------------------------------------------------------- /go-ethereum/rlp/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/decode.go -------------------------------------------------------------------------------- /go-ethereum/rlp/decode_tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/decode_tail_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/decode_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/doc.go -------------------------------------------------------------------------------- /go-ethereum/rlp/encbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/encbuffer.go -------------------------------------------------------------------------------- /go-ethereum/rlp/encbuffer_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/encbuffer_example_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/encode.go -------------------------------------------------------------------------------- /go-ethereum/rlp/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/encode_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/encoder_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/encoder_example_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/internal/rlpstruct/rlpstruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/internal/rlpstruct/rlpstruct.go -------------------------------------------------------------------------------- /go-ethereum/rlp/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/iterator.go -------------------------------------------------------------------------------- /go-ethereum/rlp/iterator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/iterator_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/raw.go -------------------------------------------------------------------------------- /go-ethereum/rlp/raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/raw_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/gen.go -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/gen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/gen_test.go -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/main.go -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/bigint.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/bigint.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/bigint.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/bigint.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/nil.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/nil.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/nil.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/nil.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/optional.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/optional.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/optional.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/optional.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/rawvalue.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/rawvalue.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/rawvalue.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/rawvalue.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/uint256.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/uint256.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/uint256.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/uint256.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/uints.in.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/uints.in.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/testdata/uints.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/testdata/uints.out.txt -------------------------------------------------------------------------------- /go-ethereum/rlp/rlpgen/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/rlpgen/types.go -------------------------------------------------------------------------------- /go-ethereum/rlp/safe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/safe.go -------------------------------------------------------------------------------- /go-ethereum/rlp/typecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/typecache.go -------------------------------------------------------------------------------- /go-ethereum/rlp/unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rlp/unsafe.go -------------------------------------------------------------------------------- /go-ethereum/rpc/_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/_client_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/_server_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/client.go -------------------------------------------------------------------------------- /go-ethereum/rpc/client_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/client_example_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/client_opt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/client_opt.go -------------------------------------------------------------------------------- /go-ethereum/rpc/client_opt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/client_opt_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/context_headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/context_headers.go -------------------------------------------------------------------------------- /go-ethereum/rpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/doc.go -------------------------------------------------------------------------------- /go-ethereum/rpc/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/errors.go -------------------------------------------------------------------------------- /go-ethereum/rpc/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/handler.go -------------------------------------------------------------------------------- /go-ethereum/rpc/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/http.go -------------------------------------------------------------------------------- /go-ethereum/rpc/http_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/http_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/ipc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/ipc.go -------------------------------------------------------------------------------- /go-ethereum/rpc/ipc_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/ipc_js.go -------------------------------------------------------------------------------- /go-ethereum/rpc/ipc_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/ipc_unix.go -------------------------------------------------------------------------------- /go-ethereum/rpc/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/json.go -------------------------------------------------------------------------------- /go-ethereum/rpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/server.go -------------------------------------------------------------------------------- /go-ethereum/rpc/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/service.go -------------------------------------------------------------------------------- /go-ethereum/rpc/stdio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/stdio.go -------------------------------------------------------------------------------- /go-ethereum/rpc/subscription.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/subscription.go -------------------------------------------------------------------------------- /go-ethereum/rpc/subscription_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/subscription_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/testservice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/testservice_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/types.go -------------------------------------------------------------------------------- /go-ethereum/rpc/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/types_test.go -------------------------------------------------------------------------------- /go-ethereum/rpc/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/websocket.go -------------------------------------------------------------------------------- /go-ethereum/rpc/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go-ethereum/rpc/websocket_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/go.sum -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/types.go -------------------------------------------------------------------------------- /util/alerter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/util/alerter.go -------------------------------------------------------------------------------- /util/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/ethkit/HEAD/util/testing.go --------------------------------------------------------------------------------