Skip to content

Upgrade proposal content template

The upgrade includes three parts, the gateway client upgrade, the main chain node upgrade, and the APP upgrade. The gateway and the main chain are divided into two versions, linux and windows, and only support 64-bit systems. The upgrade file package needs to be sha256 encoded, and then spliced ​​to the download link according to the given format for file validity verification. The upgrade_script script is suitable for upgrading data or programs that require additional processing besides the client.

Execute the sha256 command:

sha256sum file
#output:
27a1ed5d502d4148f837f2a74c6d87b574ce52391fda253618e60486e0304c5b file
  • Gateway client upgrade proposal content:
{
  "gateway": {
        "version": "22.09.07",
        "binaries": {
            "linux/amd64": {
                "url": "https://example.com/daodst.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            },
            "windows/amd64": {
                "url": "https://example.com/daodst.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    }

}
  • Main chain node upgrade proposal content:
{
  "blockchain": {
        "version": "22.10.08",
        "binaries": {
            "linux/amd64": {
                "url": "https://example.com/daodst.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            },
            "windows/amd64": {
                "url": "https://example.com/daodst.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    }
}
  • APP upgrade proposal content:
{
    "app": {
        "version": "22.09.07",
        "binaries": {
            "android": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    }
}

Support for one proposal to upgrade multiple programs:

{
  "gateway": {
        "version": "22.09.07",
        "binaries": {
            "linux/amd64": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            },
            "windows/amd64": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    },
  "blockchain": {
        "version": "22.10.08",
        "binaries": {
            "linux/amd64": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            },
            "windows/amd64": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    },
    "app": {
        "version": "22.09.07",
        "binaries": {
            "android": {
                "url": "https://example.com/gaia.zip?checksum=sha256:aec070645fe53ee3b3763059376134f058cc337247c978add178b6ccdfb0019f",
                "size": 123877163
            }
        }
    }
}