The vesting module for the Unigrid network.
The endpoint to set vesting data is https://127.0.0.1:39886/gridspork/vesting-storage/<address>
The header requires privateKey
The body is set with the following data.
is the total amount being added to the vesting schedule
the time the vesting begins
the length between vesting periods ISO 8601 duration format. For one month on average it's P30DT10H
(30 days and 10 hours)
the total vesting periods
{
"amount": "1000000",
"start": "2023-08-29T16:53:46Z",
"duration": "PT3H",
"parts": 24
}