gitextract_3n3pcdpe/ ├── .github/ │ ├── CODEOWNERS │ └── workflows/ │ ├── build.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE ├── README.md ├── api/ │ ├── account/ │ │ └── account.go │ ├── address/ │ │ └── address.go │ ├── contract/ │ │ └── contract.go │ ├── gas/ │ │ └── gas.go │ └── utxo/ │ └── utxo.go ├── chain/ │ ├── arbitrum/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── avalanche/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── bitcoin/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── bitcoin.go │ │ ├── bitcoin_suite_test.go │ │ ├── bitcoin_test.go │ │ ├── gas.go │ │ ├── gas_test.go │ │ ├── utxo.go │ │ └── utxo_test.go │ ├── bitcoincash/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── bitcoincash.go │ │ ├── bitcoincash_suite_test.go │ │ ├── bitcoincash_test.go │ │ ├── gas.go │ │ ├── gas_test.go │ │ ├── utxo.go │ │ └── utxo_test.go │ ├── bsc/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── cosmos/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── cosmos.go │ │ ├── cosmos_suite_test.go │ │ ├── cosmos_test.go │ │ ├── gas.go │ │ ├── gas_test.go │ │ └── tx.go │ ├── digibyte/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── digibyte.go │ │ ├── digibyte_suite_test.go │ │ ├── digibyte_test.go │ │ ├── gas.go │ │ ├── gas_test.go │ │ ├── utxo.go │ │ └── utxo_test.go │ ├── dogecoin/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── dogecoin.go │ │ ├── dogecoin_suite_test.go │ │ ├── dogecoin_test.go │ │ ├── gas.go │ │ ├── gas_test.go │ │ ├── utxo.go │ │ └── utxo_test.go │ ├── ethereum/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── evm/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── fantom/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── filecoin/ │ │ ├── account.go │ │ ├── account_test.go │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── client_test.go │ │ ├── filecoin.go │ │ ├── filecoin_suite_test.go │ │ ├── filecoin_test.go │ │ ├── gas.go │ │ └── gas_test.go │ ├── kava/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── moonbeam/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── optimism/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── polygon/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── client.go │ │ ├── encode.go │ │ ├── encode_test.go │ │ ├── gas.go │ │ └── tx.go │ ├── solana/ │ │ ├── address.go │ │ ├── rpc.go │ │ ├── solana.go │ │ ├── solana_ffi.go │ │ ├── solana_ffi_test.go │ │ ├── solana_suite_test.go │ │ ├── solana_test.go │ │ └── solanarpc.go │ ├── substrate/ │ │ ├── address.go │ │ └── address_test.go │ ├── terra/ │ │ ├── address.go │ │ ├── address_test.go │ │ ├── terra.go │ │ ├── terra_suite_test.go │ │ └── terra_test.go │ └── zcash/ │ ├── address.go │ ├── address_test.go │ ├── gas.go │ ├── gas_test.go │ ├── utxo.go │ ├── utxo_test.go │ ├── zcash.go │ ├── zcash_suite_test.go │ └── zcash_test.go ├── go.mod ├── go.sum ├── infra/ │ ├── acala/ │ │ ├── Dockerfile │ │ └── run.sh │ ├── avalanche/ │ │ ├── Dockerfile │ │ └── run.sh │ ├── binance/ │ │ ├── Dockerfile │ │ ├── Dockerfile-riolta │ │ └── run.sh │ ├── bitcoin/ │ │ ├── Dockerfile │ │ ├── bitcoin.conf │ │ ├── keygen.go │ │ └── run.sh │ ├── bitcoincash/ │ │ ├── Dockerfile │ │ ├── bitcoin.conf │ │ └── run.sh │ ├── digibyte/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── keygen.go │ │ └── run.sh │ ├── docker-compose.yaml │ ├── dogecoin/ │ │ ├── Dockerfile │ │ ├── dogecoin.conf │ │ ├── keygen.go │ │ └── run.sh │ ├── ethereum/ │ │ ├── Dockerfile │ │ ├── hardhat.config.js │ │ ├── package.json │ │ └── run.sh │ ├── fantom/ │ │ └── Dockerfile │ ├── filecoin/ │ │ ├── Dockerfile │ │ ├── miner.key │ │ ├── run.sh │ │ └── user.key │ ├── goerli/ │ │ ├── Dockerfile │ │ ├── hardhat.config.js │ │ ├── package.json │ │ └── run.sh │ ├── polygon/ │ │ ├── Dockerfile │ │ ├── genesis.json │ │ ├── json-keystore │ │ ├── nodekey │ │ ├── password.txt │ │ ├── run.sh │ │ └── static-nodes.json │ ├── terra/ │ │ ├── Dockerfile │ │ └── run.sh │ └── zcash/ │ ├── Dockerfile │ ├── run.sh │ └── zcash.conf ├── multichain.go ├── multichain_suite_test.go ├── multichain_test.go └── test.sh