a
a
hey i ran into the same problem seems that the symbols are all hardcoded -> https://github.com/terkelg/prompts/blob/master/lib/util/style.js would be nice if we could provide our own style that implemented the symbol,...
``` val params = mutableMapOf() val requestId = createCallId() params["peerId"] = this.clientData.id this.clientData.meta?.intoMap(params) params["chainId"] = 137 send(Session.MethodCall.Custom(requestId,"wc_sessionRequest", listOf(params)), topic = config.handshakeTopic, callback = { resp -> (resp.result as? Map)?.extractSessionParams()?.let {...
honestly what really should happen is chainid should be added to the sessionRequest params... it's in the spec as an optional nullable field...
im not going to PR it b/c it's not how it should be implemented (as a custom request) just load the library and then just rewrite this class https://github.com/WalletConnect/kotlin-walletconnect-lib/blob/master/lib/src/main/kotlin/org/walletconnect/impls/WCSession.kt in...
it's all in the tech spec https://docs.walletconnect.com/1.0/tech-spec just print out the messages ur sending/receiving on both clients and you'll see if the chain id is populated or not
adding that this is happening to me as well, pretty regularly, so it's not uncommon, at the very least it seems to happen when erigon is attempting to catch up...
even if its not the issue with binance api, the newline thing is an issue i have had with other apis, and the best way i found to fix it...
there is 1inch api https://api.1inch.exchange/v1.1/quote?fromTokenSymbol=COMP&toTokenSymbol=USDC&amount=1000000000000000000 here is an example for COMP -> USDC comp is 18 decimals so for amount i put 1e18. RN the response im getting for toTokenAmount...
hi @fclairamb i saw the activity on this so i actually stopped work on this branch and wrote a new package combining stuff from this package, another package, and my...
i have patched this locally by replacing run_with_reloader with run_simple, and adding arg use_reloader=True it's in web.py it seems to be working so far, not sure if anything else is...