ping
ping
> too low level about implementation about pools to tbh any tips for improvement?
> you specifying that there is pool.with xyk. why not making swap to be buy or sell messages. we do not care what inside. as long limits satisfied, protocol is...
thank you. will improve it soon.
Here is my config: ``` [[chain]] id = "gaia-13003" key_format = { type = "bech32", account_key_prefix = "cosmospub", consensus_key_prefix = "cosmosvalconspub" } [[validator]] addr = "tcp://127.0.0.1:26659" # or "unix:///path/to/socket" chain_id...
That's great
> thanks @liangping ! will be integrating this into our gRPC client class. Appreciate the help! Awesome! If so i would like to use this instead of the current LCD...
On protobuf, It's good reference. It might be almost same, except this one: ``` javascript const rpc = createProtobufRpcClient(base); ``` gRPC client need Http2(almost all web explorer(chrome, firefox) don't support...
look at ```javascript export function createProtobufRpcClient(base: QueryClient): ProtobufRpcClient { return { request: (service: string, method: string, data: Uint8Array): Promise => { const path = `/${service}/${method}`; return base.queryUnverified(path, data); }, };...
I confirm that tmclient is implemented based on http, not http2 https://github.com/cosmos/cosmjs/blob/b63075aca18538a0c9f312dfaf43be271f5d39aa/packages/tendermint-rpc/src/tendermint34/tendermint34client.ts#L17
I think we are almost there. Secret did amazing works. We can improve it. In this implementation, we need a gRPC proxy which is not friendly to users. That's why...