From https://docs.aion.network/docs/deployment-initialization
It is stated:
The <clinit> of every class submitted as part of the contract (including all the code within static {} blocks) will be run when the contract is first deployed, and never again. This makes static {} the ideal place to run any contract initialization logic.
The order of the static {} blocks should be specified.
From https://docs.aion.network/docs/deployment-initialization
It is stated:
The order of the
static {}blocks should be specified.