ICP Dashboard

Add a new custom SNS function for upgrading World canisters

Summary

Adding custom function upgrade_worlds to World Deployer canister of the Game Launcher.

This upgrade_worlds function will be executed via sns proposal to push latest features, changes and bug fixes to all World canisters, which are directly under control of the World Deployer canister.

Payload

Proposal to add new NervousSystemFunction:

Function:

NervousSystemFunction { id: 1100, name: "Upgrade all World canisters", description: Some( "Execute upgrade_worlds function in World Deployer to upgrade all World canisters", ), function_type: Some( GenericNervousSystemFunction( GenericNervousSystemFunction { target_canister_id: Some( js5r2-paaaa-aaaap-abf7q-cai, ), target_method_name: Some( "upgrade_worlds", ), validator_canister_id: Some( js5r2-paaaa-aaaap-abf7q-cai, ), validator_method_name: Some( "validate_upgrade_worlds", ), }, ), ), }

Overview