increaseOperatorStake
increaseOperatorStake
is a method on the ARIO
class that increases the caller's operator stake. This method must be executed with a wallet registered as a gateway operator.
increaseOperatorStake
requires authentication.
Parameters
Parameter | Type | Description | Required |
---|---|---|---|
qty | number | Amount in mARIO to add to operator stake | Yes |
tags | array | An array of GQL tag objects to attach to the transaction | No |
Examples
increaseOperatorStake
const fs = require("fs");
const { ARIO, ArweaveSigner, ARIOToken } = require("@ar.io/sdk");
async function main() {
const jwk = JSON.parse(fs.readFileSync("KeyFile.json"));
const ario = ARIO.init({
signer: new ArweaveSigner(jwk),
});
const { id: txId } = await ario.increaseOperatorStake(
{
qty: new ARIOToken(100).toMARIO(),
},
{
tags: [{ name: 'App-Name', value: 'My-Awesome-App' }],
},
);
}
main();