This is a mirror of the Vyper releases page.
Please, don't use this mirror directly from GitHub. Use its website instead.
- The mirror serves the
public/
folder present in its repository. - It has a
list.json
file in its root, which is a simplified version of a the response of this API call. - Each of the assets listed in
list.json
has been downloaded into the root of the mirror, with the same name. - The mirror gets updated every hour.
The type of list.json
is CompilerList
in the following snippet:
type CompilersList = CompilerRelease[];
interface CompilerReleaseAsset {
name: string;
browser_download_url: string;
}
interface CompilerRelease {
assets: CompilerReleaseAsset[];
tag_name: string;
}