- Exchange basics: https://formidable.com/open-source/urql/docs/architecture/#exchanges
- List of exchanges: https://formidable.com/open-source/urql/docs/exchanges/
- Exchanges in-depth: https://formidable.com/open-source/urql/docs/guides/#the-rules-of-exchanges
- Graphcache: https://gist.github.com/kitten/056833ca422a683a6c37d49b15336192
- Learn with Jason: The one with Phil, Jovi and urql: https://www.youtube.com/watch?v=MYHYv9IxllU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Address, | |
| Secp256k1, | |
| Authorization, | |
| TransactionEnvelopeEip7702, | |
| Value, | |
| Hex, | |
| RpcTransport, | |
| } from "ox"; | |
| import { odysseyTestnet } from "viem/chains"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2022-03-21T15:09:19.050Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Node: | |
| def __init__(self, value): | |
| self.value = value | |
| self.left = None | |
| self.right = None | |
| def __eq__(self, other): | |
| if other == None: | |
| return False | |
| return (self.value == other.value and |