updateGatewaySettings

updateGatewaySettings is a method on the ARIO class that writes new gateway settings to the caller's gateway configuration.

updateGatewaySettings requires authentication.

Parameters

ParameterTypeDescriptionOptional
autoStakebooleanIf true, automatically stakes gateway rewards.true
allowDelegatedStakingbooleanIf true, allows third parties to delegate stake to the gateway.true
minDelegatedStakenumberMinimum number of tokens, in `mARIO` that can be delegated to the gateway.true
delegateRewardShareRationumberPercentage of gateway rewards to share with delegates. e.g. 10%true
labelstringFriendly name for gateway, min 1 character, max 64 characters.true
notestringA note to be associated with gateway, max 256 characters.true
propertiesstring - ArweaveTxIdArweaveTxId to properties object containing additional gateway configuration details.true
observerWalletstring - WalletAddressPublic wallet address for wallet used to upload network observations.true
fqdnstringFully qualified domain name, must be valid domain owned by gateway operator.true
portnumberPort number to use when accessing gateway, generally 443 (https)true
protocolstring - "http" || "https"Protocol to use when accessing gateway, only "https" is supported for network participation.true
tagsarrayAn 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();