updateGatewaySettings
updateGatewaySettings
is a method on the ARIO
class that writes new gateway settings to the caller's gateway configuration.
updateGatewaySettings
requires authentication.
Parameters
Parameter | Type | Description | Optional |
---|---|---|---|
autoStake | boolean | If true, automatically stakes gateway rewards. | true |
allowDelegatedStaking | boolean | If true, allows third parties to delegate stake to the gateway. | true |
minDelegatedStake | number | Minimum number of tokens, in `mARIO` that can be delegated to the gateway. | true |
delegateRewardShareRatio | number | Percentage of gateway rewards to share with delegates. e.g. 10% | true |
label | string | Friendly name for gateway, min 1 character, max 64 characters. | true |
note | string | A note to be associated with gateway, max 256 characters. | true |
properties | string - ArweaveTxId | ArweaveTxId to properties object containing additional gateway configuration details. | true |
observerWallet | string - WalletAddress | Public wallet address for wallet used to upload network observations. | true |
fqdn | string | Fully qualified domain name, must be valid domain owned by gateway operator. | true |
port | number | Port number to use when accessing gateway, generally 443 (https) | true |
protocol | string - "http" || "https" | Protocol to use when accessing gateway, only "https" is supported for network participation. | true |
tags | array | An array of GQL tag objects to attach to the joinNetwork AO message. | true |
Example
updateGatewaySettings
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.updateGatewaySettings(
{
// any other settings you want to update
minDelegatedStake: new ARIOToken(100).toMARIO(),
},
// optional additional tags
{ tags: [{ name: 'App-Name', value: 'My-Awesome-App' }] },
);
}
main();