We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
observer/get_tss_address
GET $base/observer/get_tss_address/{btcChainId}
While exploring zeta RPCs, I noticed we have a weird way of getting TSS addresses via observer keeper.
node/x/observer/keeper/grpc_query_tss.go
Line 41 in 9df63f8
btc_chain_id=8332 curl -s "https://zetachain.blockpi.network/lcd/v1/public/zeta-chain/observer/get_tss_address/$btc_chain_id" | jq { "eth": "0x70e967acFcC17c3941E87562161406d41676FD83", "btc": "bc1qm24wp577nk8aacckv8np465z3dvmu7ry45el6y" }
Proposed changes
GET $base/observer/get_tss_addresses
{ "chains": [ { "id": "1", "tss": "0x70e967acFcC17c3941E87562161406d41676FD83" }, { "id": "56", "tss": "0x70e967acFcC17c3941E87562161406d41676FD83" }, { "id": "8332", "tss": "bc1qm24wp577nk8aacckv8np465z3dvmu7ry45el6y" }, // ... ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While exploring zeta RPCs, I noticed we have a weird way of getting TSS addresses via observer keeper.
node/x/observer/keeper/grpc_query_tss.go
Line 41 in 9df63f8
Proposed changes
The text was updated successfully, but these errors were encountered: