Emit Task
Our offchain backend has a job queue builtin. The code for that queue framework can be found in the rescue repository on Github. Our queue processes tasks every second. If the queue is empty, then nothing happens. But if there is a task in that queue, then the `apiserver` will process that task eventually. One of those tasks is created for every user who signs up on the Uvio platform. And for every new user we are minting UVX tokens, so that people can get started right away without having to worry about anything else.
We had a case where a user staked all of their testnet UVX tokens on one claim, not realizing that they couldn't use the platform anymore without UVX tokens. Because this was testnet, we minted more tokens for that user so that they could keep using the platform. Below is the task that we created as sorted set member in the task queue at `rescue.io/api.uvio.network`. The sorted set score should always be the task's object ID.
Once this task was created in the Redis sorted set, the `apiserver` processed it and printed the log below. Note that the `apiserver` could mint UVX tokens because it has the dedicated private key configured which has the `BOT_ROLE` assigned, which is the smart contract role authorized to mint new tokens to addresses.
Last updated