Skip to content

NomicFoundation/vyper-releases-mirror

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Vyper releases mirror

This is a mirror of the Vyper releases page.

Please, don't use this mirror directly from GitHub. Use its website instead.

Structure of the mirror

  1. The mirror serves the public/ folder present in its repository.
  2. It has a list.json file in its root, which is a simplified version of a the response of this API call.
  3. Each of the assets listed in list.json has been downloaded into the root of the mirror, with the same name.
  4. The mirror gets updated every hour.

list.json format

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;
}

Releases

No releases published

Packages

No packages published