├── .github └── workflows │ ├── build-and-test.yml │ └── golangci-lint.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── admin └── sign.go ├── cmd ├── swapadmin │ ├── addpair.go │ ├── bigvalue.go │ ├── blacklist.go │ ├── main.go │ ├── maintain.go │ ├── manual.go │ ├── replaceswap.go │ ├── reswap.go │ ├── reverify.go │ ├── setnonce.go │ └── utils.go ├── swaporacle │ └── main.go ├── swapscan │ ├── main.go │ └── scanbtc.go ├── swapserver │ └── main.go ├── swaptools │ ├── flags.go │ ├── main.go │ ├── sendbtc.go │ ├── sendethtx.go │ └── sendltc.go ├── utils │ ├── flags.go │ ├── licensecmd.go │ ├── utils.go │ └── versioncmd.go └── xrpTools │ ├── checkTx.go │ ├── pubkeyToAddress.go │ ├── scan.go │ ├── sendXRP.go │ └── xrpTools.go ├── common ├── big.go ├── bytes.go ├── ethaddress.go ├── hash.go ├── hexutil │ ├── hexutil.go │ ├── hexutil_test.go │ ├── json.go │ ├── json_example_test.go │ └── json_test.go ├── math │ ├── big.go │ ├── big_test.go │ ├── integer.go │ └── integer_test.go ├── path.go ├── size.go ├── size_test.go └── utils.go ├── dcrm ├── accept.go ├── api.go ├── init.go ├── sign.go └── types.go ├── go.mod ├── go.sum ├── gofmt.sh ├── internal ├── build │ ├── env.go │ └── util.go └── swapapi │ ├── api.go │ ├── converts.go │ └── types.go ├── leveldb ├── batch.go ├── database.go ├── iterator.go └── leveldb.go ├── log ├── logger.go └── logger_test.go ├── mongodb ├── adminapi.go ├── api.go ├── dbinit.go ├── errors.go ├── status.go ├── tableinit.go ├── tables.go └── utils.go ├── params ├── checkconfig.go ├── config-example.toml ├── config-tokenpair-example.toml ├── config.go └── version.go ├── rpc ├── README.md ├── client │ ├── client.go │ ├── get.go │ └── post.go ├── restapi │ └── api.go ├── rpcapi │ ├── adminapi.go │ └── api.go └── server │ └── server.go ├── start-docker.sh ├── tokens ├── README.md ├── arbitrum │ ├── bridge.go │ └── callapi.go ├── base.go ├── base │ └── noncesetter.go ├── block │ ├── address.go │ ├── aggregate.go │ ├── bridge.go │ ├── btcdutils.go │ ├── buildaggregatetx.go │ ├── buildtx.go │ ├── callapi.go │ ├── config-example.toml │ ├── config-tokenpair-example.toml │ ├── convert.go │ ├── init.go │ ├── p2shaddress.go │ ├── processtx.go │ ├── scanchaintx.go │ ├── scanpooltx.go │ ├── scanswaphistory.go │ ├── sendtx.go │ ├── signtx.go │ ├── verifyp2shtx.go │ └── verifytx.go ├── bridge │ └── bridge.go ├── btc │ ├── address.go │ ├── aggregate.go │ ├── bridge.go │ ├── btcdutils.go │ ├── buildaggregatetx.go │ ├── buildtx.go │ ├── callapi.go │ ├── electrs │ │ ├── callapi.go │ │ └── types.go │ ├── init.go │ ├── instance.go │ ├── p2shaddress.go │ ├── printtx.go │ ├── processtx.go │ ├── scanchaintx.go │ ├── scanpooltx.go │ ├── scanswaphistory.go │ ├── sendtx.go │ ├── signtx.go │ ├── verifyp2shtx.go │ └── verifytx.go ├── colx │ ├── address.go │ ├── aggregate.go │ ├── bridge.go │ ├── btcAddressToColx.go │ ├── buildaggregatetx.go │ ├── buildtx.go │ ├── callapi.go │ ├── colxAddressToBtc.go │ ├── colxdev │ │ └── main.go │ ├── colxdutils.go │ ├── electBtcToColx.go │ ├── init.go │ ├── lockUtxo.go │ ├── p2shaddress.go │ ├── printtx.go │ ├── processtx.go │ ├── scanchaintx.go │ ├── scanpooltx.go │ ├── scanswaphistory.go │ ├── sendtx.go │ ├── signtx.go │ ├── verifyp2shtx.go │ └── verifytx.go ├── config.go ├── conflux │ ├── bridge.go │ └── callapi.go ├── errors.go ├── etc │ └── bridge.go ├── eth │ ├── abicoder │ │ ├── decode.go │ │ └── encode.go │ ├── address.go │ ├── bridge.go │ ├── buildswapintx.go │ ├── buildswapouttx.go │ ├── buildtx.go │ ├── callapi.go │ ├── callcontract.go │ ├── chainids.go │ ├── sendtx.go │ ├── signtx.go │ ├── verifycontractaddress.go │ ├── verifyerc20tx.go │ ├── verifyswapouttx.go │ ├── verifytx.go │ └── verifytx_test.go ├── fsn │ └── bridge.go ├── interfaces.go ├── kusama │ ├── bridge.go │ └── callapi.go ├── loadprice.go ├── ltc │ ├── address.go │ ├── aggregate.go │ ├── bridge.go │ ├── btcAddressToLtc.go │ ├── buildaggregatetx.go │ ├── buildtx.go │ ├── callapi.go │ ├── electBtcToLtc.go │ ├── init.go │ ├── ltcAddressToBtc.go │ ├── ltcdutils.go │ ├── p2shaddress.go │ ├── printtx.go │ ├── processtx.go │ ├── scanchaintx.go │ ├── scanpooltx.go │ ├── scanswaphistory.go │ ├── sendtx.go │ ├── signtx.go │ ├── verifyp2shtx.go │ └── verifytx.go ├── okex │ └── bridge.go ├── pairsconfig.go ├── ripple │ ├── address.go │ ├── bridge.go │ ├── buildtx.go │ ├── init.go │ ├── key.go │ ├── rubblelabs │ │ └── ripple │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── config │ │ │ ├── action.go │ │ │ ├── action_test.go │ │ │ └── testdata │ │ │ │ └── test.json │ │ │ ├── crypto │ │ │ ├── base58.go │ │ │ ├── const.go │ │ │ ├── ecdsa.go │ │ │ ├── ed25519.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── interface.go │ │ │ ├── key_test.go │ │ │ ├── signature.go │ │ │ └── util.go │ │ │ ├── data │ │ │ ├── amount.go │ │ │ ├── amount_test.go │ │ │ ├── balance.go │ │ │ ├── currency.go │ │ │ ├── currency_test.go │ │ │ ├── decoder.go │ │ │ ├── doc.go │ │ │ ├── encoder.go │ │ │ ├── factory.go │ │ │ ├── flags.go │ │ │ ├── format.go │ │ │ ├── hash.go │ │ │ ├── hash_test.go │ │ │ ├── index.go │ │ │ ├── inner.go │ │ │ ├── interface.go │ │ │ ├── json.go │ │ │ ├── json_test.go │ │ │ ├── ledger.go │ │ │ ├── ledgerentry.go │ │ │ ├── ledgerset.go │ │ │ ├── ledgerset_test.go │ │ │ ├── memo.go │ │ │ ├── metadata.go │ │ │ ├── orderbook.go │ │ │ ├── path.go │ │ │ ├── path_test.go │ │ │ ├── proposal.go │ │ │ ├── reader.go │ │ │ ├── result.go │ │ │ ├── signing.go │ │ │ ├── testdata │ │ │ │ ├── ledger_6000000.json │ │ │ │ ├── transaction_account_set.json │ │ │ │ ├── transaction_fee_settings.json │ │ │ │ ├── transaction_offercreate.json │ │ │ │ ├── transaction_payment_bug.json │ │ │ │ └── transaction_payment_with_rippling.json │ │ │ ├── time.go │ │ │ ├── trade.go │ │ │ ├── transaction.go │ │ │ ├── util.go │ │ │ ├── validation.go │ │ │ ├── value.go │ │ │ ├── value_test.go │ │ │ └── wire.go │ │ │ ├── testing │ │ │ └── testing.go │ │ │ └── websockets │ │ │ ├── commands.go │ │ │ ├── path_find.go │ │ │ ├── remote.go │ │ │ └── subscribe.go │ ├── sendtx.go │ ├── signtx.go │ ├── utils.go │ └── verifytx.go ├── rpccall.go ├── tests │ ├── README.md │ ├── config-example.toml │ └── config-tokenpair-example.toml ├── tools │ ├── cachedscanblocks.go │ ├── cachedscantxs.go │ ├── swaptools.go │ └── weightedstring.go └── types.go ├── tools ├── crypto │ ├── crypto.go │ ├── crypto_test.go │ ├── signature.go │ └── signature_test.go ├── keystore │ ├── key.go │ └── passphrase.go ├── loadkeystore.go ├── rlp │ ├── decode.go │ ├── decode_tail_test.go │ ├── decode_test.go │ ├── doc.go │ ├── encode.go │ ├── encode_test.go │ ├── encoder_example_test.go │ ├── raw.go │ ├── raw_test.go │ └── typecache.go └── sendemail.go ├── types ├── gen_tx_json.go ├── rpctypes.go ├── transaction.go ├── transaction_hash.go ├── transaction_signing.go ├── transaction_test.go └── txdata.go └── worker ├── accept.go ├── acceptdb.go ├── addpair.go ├── aggregate.go ├── checkfailedswap.go ├── common.go ├── doc.go ├── passbigvalue.go ├── replace.go ├── replaceswap.go ├── reportstat.go ├── scan.go ├── stable.go ├── swap.go ├── testmode.go ├── updatelatest.go ├── utils.go ├── verify.go └── worker.go /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/golangci-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/.github/workflows/golangci-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/README.md -------------------------------------------------------------------------------- /admin/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/admin/sign.go -------------------------------------------------------------------------------- /cmd/swapadmin/addpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/addpair.go -------------------------------------------------------------------------------- /cmd/swapadmin/bigvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/bigvalue.go -------------------------------------------------------------------------------- /cmd/swapadmin/blacklist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/blacklist.go -------------------------------------------------------------------------------- /cmd/swapadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/main.go -------------------------------------------------------------------------------- /cmd/swapadmin/maintain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/maintain.go -------------------------------------------------------------------------------- /cmd/swapadmin/manual.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/manual.go -------------------------------------------------------------------------------- /cmd/swapadmin/replaceswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/replaceswap.go -------------------------------------------------------------------------------- /cmd/swapadmin/reswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/reswap.go -------------------------------------------------------------------------------- /cmd/swapadmin/reverify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/reverify.go -------------------------------------------------------------------------------- /cmd/swapadmin/setnonce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/setnonce.go -------------------------------------------------------------------------------- /cmd/swapadmin/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapadmin/utils.go -------------------------------------------------------------------------------- /cmd/swaporacle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaporacle/main.go -------------------------------------------------------------------------------- /cmd/swapscan/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapscan/main.go -------------------------------------------------------------------------------- /cmd/swapscan/scanbtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapscan/scanbtc.go -------------------------------------------------------------------------------- /cmd/swapserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swapserver/main.go -------------------------------------------------------------------------------- /cmd/swaptools/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaptools/flags.go -------------------------------------------------------------------------------- /cmd/swaptools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaptools/main.go -------------------------------------------------------------------------------- /cmd/swaptools/sendbtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaptools/sendbtc.go -------------------------------------------------------------------------------- /cmd/swaptools/sendethtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaptools/sendethtx.go -------------------------------------------------------------------------------- /cmd/swaptools/sendltc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/swaptools/sendltc.go -------------------------------------------------------------------------------- /cmd/utils/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/utils/flags.go -------------------------------------------------------------------------------- /cmd/utils/licensecmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/utils/licensecmd.go -------------------------------------------------------------------------------- /cmd/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/utils/utils.go -------------------------------------------------------------------------------- /cmd/utils/versioncmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/utils/versioncmd.go -------------------------------------------------------------------------------- /cmd/xrpTools/checkTx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/xrpTools/checkTx.go -------------------------------------------------------------------------------- /cmd/xrpTools/pubkeyToAddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/xrpTools/pubkeyToAddress.go -------------------------------------------------------------------------------- /cmd/xrpTools/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/xrpTools/scan.go -------------------------------------------------------------------------------- /cmd/xrpTools/sendXRP.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/xrpTools/sendXRP.go -------------------------------------------------------------------------------- /cmd/xrpTools/xrpTools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/cmd/xrpTools/xrpTools.go -------------------------------------------------------------------------------- /common/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/big.go -------------------------------------------------------------------------------- /common/bytes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/bytes.go -------------------------------------------------------------------------------- /common/ethaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/ethaddress.go -------------------------------------------------------------------------------- /common/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hash.go -------------------------------------------------------------------------------- /common/hexutil/hexutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hexutil/hexutil.go -------------------------------------------------------------------------------- /common/hexutil/hexutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hexutil/hexutil_test.go -------------------------------------------------------------------------------- /common/hexutil/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hexutil/json.go -------------------------------------------------------------------------------- /common/hexutil/json_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hexutil/json_example_test.go -------------------------------------------------------------------------------- /common/hexutil/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/hexutil/json_test.go -------------------------------------------------------------------------------- /common/math/big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/math/big.go -------------------------------------------------------------------------------- /common/math/big_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/math/big_test.go -------------------------------------------------------------------------------- /common/math/integer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/math/integer.go -------------------------------------------------------------------------------- /common/math/integer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/math/integer_test.go -------------------------------------------------------------------------------- /common/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/path.go -------------------------------------------------------------------------------- /common/size.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/size.go -------------------------------------------------------------------------------- /common/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/size_test.go -------------------------------------------------------------------------------- /common/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/common/utils.go -------------------------------------------------------------------------------- /dcrm/accept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/dcrm/accept.go -------------------------------------------------------------------------------- /dcrm/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/dcrm/api.go -------------------------------------------------------------------------------- /dcrm/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/dcrm/init.go -------------------------------------------------------------------------------- /dcrm/sign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/dcrm/sign.go -------------------------------------------------------------------------------- /dcrm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/dcrm/types.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/go.sum -------------------------------------------------------------------------------- /gofmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/gofmt.sh -------------------------------------------------------------------------------- /internal/build/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/internal/build/env.go -------------------------------------------------------------------------------- /internal/build/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/internal/build/util.go -------------------------------------------------------------------------------- /internal/swapapi/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/internal/swapapi/api.go -------------------------------------------------------------------------------- /internal/swapapi/converts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/internal/swapapi/converts.go -------------------------------------------------------------------------------- /internal/swapapi/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/internal/swapapi/types.go -------------------------------------------------------------------------------- /leveldb/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/leveldb/batch.go -------------------------------------------------------------------------------- /leveldb/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/leveldb/database.go -------------------------------------------------------------------------------- /leveldb/iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/leveldb/iterator.go -------------------------------------------------------------------------------- /leveldb/leveldb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/leveldb/leveldb.go -------------------------------------------------------------------------------- /log/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/log/logger.go -------------------------------------------------------------------------------- /log/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/log/logger_test.go -------------------------------------------------------------------------------- /mongodb/adminapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/adminapi.go -------------------------------------------------------------------------------- /mongodb/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/api.go -------------------------------------------------------------------------------- /mongodb/dbinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/dbinit.go -------------------------------------------------------------------------------- /mongodb/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/errors.go -------------------------------------------------------------------------------- /mongodb/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/status.go -------------------------------------------------------------------------------- /mongodb/tableinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/tableinit.go -------------------------------------------------------------------------------- /mongodb/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/tables.go -------------------------------------------------------------------------------- /mongodb/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/mongodb/utils.go -------------------------------------------------------------------------------- /params/checkconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/params/checkconfig.go -------------------------------------------------------------------------------- /params/config-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/params/config-example.toml -------------------------------------------------------------------------------- /params/config-tokenpair-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/params/config-tokenpair-example.toml -------------------------------------------------------------------------------- /params/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/params/config.go -------------------------------------------------------------------------------- /params/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/params/version.go -------------------------------------------------------------------------------- /rpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/README.md -------------------------------------------------------------------------------- /rpc/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/client/client.go -------------------------------------------------------------------------------- /rpc/client/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/client/get.go -------------------------------------------------------------------------------- /rpc/client/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/client/post.go -------------------------------------------------------------------------------- /rpc/restapi/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/restapi/api.go -------------------------------------------------------------------------------- /rpc/rpcapi/adminapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/rpcapi/adminapi.go -------------------------------------------------------------------------------- /rpc/rpcapi/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/rpcapi/api.go -------------------------------------------------------------------------------- /rpc/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/rpc/server/server.go -------------------------------------------------------------------------------- /start-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/start-docker.sh -------------------------------------------------------------------------------- /tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/README.md -------------------------------------------------------------------------------- /tokens/arbitrum/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/arbitrum/bridge.go -------------------------------------------------------------------------------- /tokens/arbitrum/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/arbitrum/callapi.go -------------------------------------------------------------------------------- /tokens/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/base.go -------------------------------------------------------------------------------- /tokens/base/noncesetter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/base/noncesetter.go -------------------------------------------------------------------------------- /tokens/block/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/address.go -------------------------------------------------------------------------------- /tokens/block/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/aggregate.go -------------------------------------------------------------------------------- /tokens/block/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/bridge.go -------------------------------------------------------------------------------- /tokens/block/btcdutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/btcdutils.go -------------------------------------------------------------------------------- /tokens/block/buildaggregatetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/buildaggregatetx.go -------------------------------------------------------------------------------- /tokens/block/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/buildtx.go -------------------------------------------------------------------------------- /tokens/block/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/callapi.go -------------------------------------------------------------------------------- /tokens/block/config-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/config-example.toml -------------------------------------------------------------------------------- /tokens/block/config-tokenpair-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/config-tokenpair-example.toml -------------------------------------------------------------------------------- /tokens/block/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/convert.go -------------------------------------------------------------------------------- /tokens/block/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/init.go -------------------------------------------------------------------------------- /tokens/block/p2shaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/p2shaddress.go -------------------------------------------------------------------------------- /tokens/block/processtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/processtx.go -------------------------------------------------------------------------------- /tokens/block/scanchaintx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/scanchaintx.go -------------------------------------------------------------------------------- /tokens/block/scanpooltx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/scanpooltx.go -------------------------------------------------------------------------------- /tokens/block/scanswaphistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/scanswaphistory.go -------------------------------------------------------------------------------- /tokens/block/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/sendtx.go -------------------------------------------------------------------------------- /tokens/block/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/signtx.go -------------------------------------------------------------------------------- /tokens/block/verifyp2shtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/verifyp2shtx.go -------------------------------------------------------------------------------- /tokens/block/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/block/verifytx.go -------------------------------------------------------------------------------- /tokens/bridge/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/bridge/bridge.go -------------------------------------------------------------------------------- /tokens/btc/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/address.go -------------------------------------------------------------------------------- /tokens/btc/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/aggregate.go -------------------------------------------------------------------------------- /tokens/btc/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/bridge.go -------------------------------------------------------------------------------- /tokens/btc/btcdutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/btcdutils.go -------------------------------------------------------------------------------- /tokens/btc/buildaggregatetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/buildaggregatetx.go -------------------------------------------------------------------------------- /tokens/btc/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/buildtx.go -------------------------------------------------------------------------------- /tokens/btc/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/callapi.go -------------------------------------------------------------------------------- /tokens/btc/electrs/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/electrs/callapi.go -------------------------------------------------------------------------------- /tokens/btc/electrs/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/electrs/types.go -------------------------------------------------------------------------------- /tokens/btc/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/init.go -------------------------------------------------------------------------------- /tokens/btc/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/instance.go -------------------------------------------------------------------------------- /tokens/btc/p2shaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/p2shaddress.go -------------------------------------------------------------------------------- /tokens/btc/printtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/printtx.go -------------------------------------------------------------------------------- /tokens/btc/processtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/processtx.go -------------------------------------------------------------------------------- /tokens/btc/scanchaintx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/scanchaintx.go -------------------------------------------------------------------------------- /tokens/btc/scanpooltx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/scanpooltx.go -------------------------------------------------------------------------------- /tokens/btc/scanswaphistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/scanswaphistory.go -------------------------------------------------------------------------------- /tokens/btc/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/sendtx.go -------------------------------------------------------------------------------- /tokens/btc/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/signtx.go -------------------------------------------------------------------------------- /tokens/btc/verifyp2shtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/verifyp2shtx.go -------------------------------------------------------------------------------- /tokens/btc/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/btc/verifytx.go -------------------------------------------------------------------------------- /tokens/colx/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/address.go -------------------------------------------------------------------------------- /tokens/colx/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/aggregate.go -------------------------------------------------------------------------------- /tokens/colx/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/bridge.go -------------------------------------------------------------------------------- /tokens/colx/btcAddressToColx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/btcAddressToColx.go -------------------------------------------------------------------------------- /tokens/colx/buildaggregatetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/buildaggregatetx.go -------------------------------------------------------------------------------- /tokens/colx/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/buildtx.go -------------------------------------------------------------------------------- /tokens/colx/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/callapi.go -------------------------------------------------------------------------------- /tokens/colx/colxAddressToBtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/colxAddressToBtc.go -------------------------------------------------------------------------------- /tokens/colx/colxdev/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/colxdev/main.go -------------------------------------------------------------------------------- /tokens/colx/colxdutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/colxdutils.go -------------------------------------------------------------------------------- /tokens/colx/electBtcToColx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/electBtcToColx.go -------------------------------------------------------------------------------- /tokens/colx/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/init.go -------------------------------------------------------------------------------- /tokens/colx/lockUtxo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/lockUtxo.go -------------------------------------------------------------------------------- /tokens/colx/p2shaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/p2shaddress.go -------------------------------------------------------------------------------- /tokens/colx/printtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/printtx.go -------------------------------------------------------------------------------- /tokens/colx/processtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/processtx.go -------------------------------------------------------------------------------- /tokens/colx/scanchaintx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/scanchaintx.go -------------------------------------------------------------------------------- /tokens/colx/scanpooltx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/scanpooltx.go -------------------------------------------------------------------------------- /tokens/colx/scanswaphistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/scanswaphistory.go -------------------------------------------------------------------------------- /tokens/colx/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/sendtx.go -------------------------------------------------------------------------------- /tokens/colx/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/signtx.go -------------------------------------------------------------------------------- /tokens/colx/verifyp2shtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/verifyp2shtx.go -------------------------------------------------------------------------------- /tokens/colx/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/colx/verifytx.go -------------------------------------------------------------------------------- /tokens/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/config.go -------------------------------------------------------------------------------- /tokens/conflux/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/conflux/bridge.go -------------------------------------------------------------------------------- /tokens/conflux/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/conflux/callapi.go -------------------------------------------------------------------------------- /tokens/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/errors.go -------------------------------------------------------------------------------- /tokens/etc/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/etc/bridge.go -------------------------------------------------------------------------------- /tokens/eth/abicoder/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/abicoder/decode.go -------------------------------------------------------------------------------- /tokens/eth/abicoder/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/abicoder/encode.go -------------------------------------------------------------------------------- /tokens/eth/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/address.go -------------------------------------------------------------------------------- /tokens/eth/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/bridge.go -------------------------------------------------------------------------------- /tokens/eth/buildswapintx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/buildswapintx.go -------------------------------------------------------------------------------- /tokens/eth/buildswapouttx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/buildswapouttx.go -------------------------------------------------------------------------------- /tokens/eth/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/buildtx.go -------------------------------------------------------------------------------- /tokens/eth/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/callapi.go -------------------------------------------------------------------------------- /tokens/eth/callcontract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/callcontract.go -------------------------------------------------------------------------------- /tokens/eth/chainids.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/chainids.go -------------------------------------------------------------------------------- /tokens/eth/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/sendtx.go -------------------------------------------------------------------------------- /tokens/eth/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/signtx.go -------------------------------------------------------------------------------- /tokens/eth/verifycontractaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/verifycontractaddress.go -------------------------------------------------------------------------------- /tokens/eth/verifyerc20tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/verifyerc20tx.go -------------------------------------------------------------------------------- /tokens/eth/verifyswapouttx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/verifyswapouttx.go -------------------------------------------------------------------------------- /tokens/eth/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/verifytx.go -------------------------------------------------------------------------------- /tokens/eth/verifytx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/eth/verifytx_test.go -------------------------------------------------------------------------------- /tokens/fsn/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/fsn/bridge.go -------------------------------------------------------------------------------- /tokens/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/interfaces.go -------------------------------------------------------------------------------- /tokens/kusama/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/kusama/bridge.go -------------------------------------------------------------------------------- /tokens/kusama/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/kusama/callapi.go -------------------------------------------------------------------------------- /tokens/loadprice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/loadprice.go -------------------------------------------------------------------------------- /tokens/ltc/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/address.go -------------------------------------------------------------------------------- /tokens/ltc/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/aggregate.go -------------------------------------------------------------------------------- /tokens/ltc/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/bridge.go -------------------------------------------------------------------------------- /tokens/ltc/btcAddressToLtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/btcAddressToLtc.go -------------------------------------------------------------------------------- /tokens/ltc/buildaggregatetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/buildaggregatetx.go -------------------------------------------------------------------------------- /tokens/ltc/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/buildtx.go -------------------------------------------------------------------------------- /tokens/ltc/callapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/callapi.go -------------------------------------------------------------------------------- /tokens/ltc/electBtcToLtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/electBtcToLtc.go -------------------------------------------------------------------------------- /tokens/ltc/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/init.go -------------------------------------------------------------------------------- /tokens/ltc/ltcAddressToBtc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/ltcAddressToBtc.go -------------------------------------------------------------------------------- /tokens/ltc/ltcdutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/ltcdutils.go -------------------------------------------------------------------------------- /tokens/ltc/p2shaddress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/p2shaddress.go -------------------------------------------------------------------------------- /tokens/ltc/printtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/printtx.go -------------------------------------------------------------------------------- /tokens/ltc/processtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/processtx.go -------------------------------------------------------------------------------- /tokens/ltc/scanchaintx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/scanchaintx.go -------------------------------------------------------------------------------- /tokens/ltc/scanpooltx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/scanpooltx.go -------------------------------------------------------------------------------- /tokens/ltc/scanswaphistory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/scanswaphistory.go -------------------------------------------------------------------------------- /tokens/ltc/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/sendtx.go -------------------------------------------------------------------------------- /tokens/ltc/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/signtx.go -------------------------------------------------------------------------------- /tokens/ltc/verifyp2shtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/verifyp2shtx.go -------------------------------------------------------------------------------- /tokens/ltc/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ltc/verifytx.go -------------------------------------------------------------------------------- /tokens/okex/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/okex/bridge.go -------------------------------------------------------------------------------- /tokens/pairsconfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/pairsconfig.go -------------------------------------------------------------------------------- /tokens/ripple/address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/address.go -------------------------------------------------------------------------------- /tokens/ripple/bridge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/bridge.go -------------------------------------------------------------------------------- /tokens/ripple/buildtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/buildtx.go -------------------------------------------------------------------------------- /tokens/ripple/init.go: -------------------------------------------------------------------------------- 1 | package ripple 2 | -------------------------------------------------------------------------------- /tokens/ripple/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/key.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/.gitignore -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/.travis.yml -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/AUTHORS -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/LICENSE -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/README.md -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/TODO.md -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/config/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/config/action.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/config/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/config/action_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/config/testdata/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/config/testdata/test.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/base58.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/base58.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/const.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/ecdsa.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/ed25519.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/ed25519.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/hash.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/hash_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/interface.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/key_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/key_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/signature.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/crypto/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/crypto/util.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/amount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/amount.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/amount_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/amount_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/balance.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/currency.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/currency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/currency_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/decoder.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/doc.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/encoder.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/factory.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/flags.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/format.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/hash.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/hash_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/hash_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/index.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/inner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/inner.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/interface.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/json.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/json_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/ledger.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/ledgerentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/ledgerentry.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/ledgerset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/ledgerset.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/ledgerset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/ledgerset_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/memo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/memo.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/metadata.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/orderbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/orderbook.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/path.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/path_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/proposal.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/reader.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/result.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/signing.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/ledger_6000000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/ledger_6000000.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/transaction_account_set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/transaction_account_set.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/transaction_fee_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/transaction_fee_settings.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/transaction_offercreate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/transaction_offercreate.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/transaction_payment_bug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/transaction_payment_bug.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/testdata/transaction_payment_with_rippling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/testdata/transaction_payment_with_rippling.json -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/time.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/trade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/trade.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/transaction.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/util.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/validation.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/value.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/value_test.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/data/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/data/wire.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/testing/testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/testing/testing.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/websockets/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/websockets/commands.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/websockets/path_find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/websockets/path_find.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/websockets/remote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/websockets/remote.go -------------------------------------------------------------------------------- /tokens/ripple/rubblelabs/ripple/websockets/subscribe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/rubblelabs/ripple/websockets/subscribe.go -------------------------------------------------------------------------------- /tokens/ripple/sendtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/sendtx.go -------------------------------------------------------------------------------- /tokens/ripple/signtx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/signtx.go -------------------------------------------------------------------------------- /tokens/ripple/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/utils.go -------------------------------------------------------------------------------- /tokens/ripple/verifytx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/ripple/verifytx.go -------------------------------------------------------------------------------- /tokens/rpccall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/rpccall.go -------------------------------------------------------------------------------- /tokens/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tests/README.md -------------------------------------------------------------------------------- /tokens/tests/config-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tests/config-example.toml -------------------------------------------------------------------------------- /tokens/tests/config-tokenpair-example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tests/config-tokenpair-example.toml -------------------------------------------------------------------------------- /tokens/tools/cachedscanblocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tools/cachedscanblocks.go -------------------------------------------------------------------------------- /tokens/tools/cachedscantxs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tools/cachedscantxs.go -------------------------------------------------------------------------------- /tokens/tools/swaptools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tools/swaptools.go -------------------------------------------------------------------------------- /tokens/tools/weightedstring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/tools/weightedstring.go -------------------------------------------------------------------------------- /tokens/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tokens/types.go -------------------------------------------------------------------------------- /tools/crypto/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/crypto/crypto.go -------------------------------------------------------------------------------- /tools/crypto/crypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/crypto/crypto_test.go -------------------------------------------------------------------------------- /tools/crypto/signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/crypto/signature.go -------------------------------------------------------------------------------- /tools/crypto/signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/crypto/signature_test.go -------------------------------------------------------------------------------- /tools/keystore/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/keystore/key.go -------------------------------------------------------------------------------- /tools/keystore/passphrase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/keystore/passphrase.go -------------------------------------------------------------------------------- /tools/loadkeystore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/loadkeystore.go -------------------------------------------------------------------------------- /tools/rlp/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/decode.go -------------------------------------------------------------------------------- /tools/rlp/decode_tail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/decode_tail_test.go -------------------------------------------------------------------------------- /tools/rlp/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/decode_test.go -------------------------------------------------------------------------------- /tools/rlp/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/doc.go -------------------------------------------------------------------------------- /tools/rlp/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/encode.go -------------------------------------------------------------------------------- /tools/rlp/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/encode_test.go -------------------------------------------------------------------------------- /tools/rlp/encoder_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/encoder_example_test.go -------------------------------------------------------------------------------- /tools/rlp/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/raw.go -------------------------------------------------------------------------------- /tools/rlp/raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/raw_test.go -------------------------------------------------------------------------------- /tools/rlp/typecache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/rlp/typecache.go -------------------------------------------------------------------------------- /tools/sendemail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/tools/sendemail.go -------------------------------------------------------------------------------- /types/gen_tx_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/gen_tx_json.go -------------------------------------------------------------------------------- /types/rpctypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/rpctypes.go -------------------------------------------------------------------------------- /types/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/transaction.go -------------------------------------------------------------------------------- /types/transaction_hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/transaction_hash.go -------------------------------------------------------------------------------- /types/transaction_signing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/transaction_signing.go -------------------------------------------------------------------------------- /types/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/transaction_test.go -------------------------------------------------------------------------------- /types/txdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/types/txdata.go -------------------------------------------------------------------------------- /worker/accept.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/accept.go -------------------------------------------------------------------------------- /worker/acceptdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/acceptdb.go -------------------------------------------------------------------------------- /worker/addpair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/addpair.go -------------------------------------------------------------------------------- /worker/aggregate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/aggregate.go -------------------------------------------------------------------------------- /worker/checkfailedswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/checkfailedswap.go -------------------------------------------------------------------------------- /worker/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/common.go -------------------------------------------------------------------------------- /worker/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/doc.go -------------------------------------------------------------------------------- /worker/passbigvalue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/passbigvalue.go -------------------------------------------------------------------------------- /worker/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/replace.go -------------------------------------------------------------------------------- /worker/replaceswap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/replaceswap.go -------------------------------------------------------------------------------- /worker/reportstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/reportstat.go -------------------------------------------------------------------------------- /worker/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/scan.go -------------------------------------------------------------------------------- /worker/stable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/stable.go -------------------------------------------------------------------------------- /worker/swap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/swap.go -------------------------------------------------------------------------------- /worker/testmode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/testmode.go -------------------------------------------------------------------------------- /worker/updatelatest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/updatelatest.go -------------------------------------------------------------------------------- /worker/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/utils.go -------------------------------------------------------------------------------- /worker/verify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/verify.go -------------------------------------------------------------------------------- /worker/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anyswap/CrossChain-Bridge/HEAD/worker/worker.go --------------------------------------------------------------------------------