Alex Gartner
Alex Gartner
Use latest btcsuite dependencies. Remove deprecated usage of `github.com/btcsuite/btcutil/base58` and use `github.com/btcsuite/btcd/btcutil/base58`
https://github.com/zeta-chain/node/pull/3349 introduces a new way to do RPC metrics. We should ensure all our RPC clients follow the same style before the next release.
Allow a solana relayer to designate itself the lead relayer. The lead relayer will skip all preflight checks when submitting transactions and assume it's transactions will always succeed. So long...
When your contract call is reverted inside `ZRC20` contracts, the revert reason will be entirely opaque. Typically you can switch to `eth_call` to get a detailed reason but that does...
There is no reason to even try to submit the transaction until the nonce is in the expected range. Update: that would not be true if we enabled skipping the...
There is a lot of logic that's duplicated between start-zetae2e.sh, start-zetaclient.sh, and start-zetacored.sh. We should - create a common library script that can be imported - move the more complicated...