See Also
avax-python Network Message Pipeline
Here’s a short overview of the avax-python Avalanche message pipeline. We’ve followed the reference Go implementation as closely as possible, but the Python code is still in very early development, so it’s lacking a lot of details. For example, right now the Python message pipeline is synchronous, whereas the Go implementation uses asynchronous channels and […]
ELI5 Avalanche [AVAX] Platform Whitepaper Summary
In this post we’ll summarize the Avalanche Platform whitepaper [PDF]. This document is part of Ava Labs’ technical material about the Avalanche protocol and its implementation. Since the paper goes into high detail, we’ve summarized it ELI5 style to give you an overview of how the official AVAX implementation works. The Avalanche platform whitepaper focuses […]
ELI5 AVAX IOU? Is it the real AVAX coin?
November 2020 Update As of November 18, AVAX price has remained remarkably stable – for cryptocurrency standards. Coincost shows the AVAX IOU slowly depreciating, although it’s unclear how much volume is being traded at these prices. September 22 Update AVAX mainnet has been launched and, as it turns out, IOU price was actually lower than […]
avax-python Implementation Notes
Here you’ll find a few implementation notes about avax-python. This is mainly targeted at developers who wish to work on the Python source code. Python <- Go Golang object orientation is different from the Python OO approach. As a result, we had to make the choice of making the code more pythonic by using idioms […]