@@ -40,7 +40,7 @@ func NewConfig() *GraffitiWallWriterConfig {
4040 Name : "Enabled" ,
4141 Description : "Enable the Graffiti Wall Writer" ,
4242 Type : config .ParameterType_Bool ,
43- Default : map [config.Network ]interface {} {config .Network_All : false },
43+ Default : map [config.Network ]any {config .Network_All : false },
4444 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter , config .ContainerID_Validator },
4545 CanBeBlank : false ,
4646 OverwriteOnUpgrade : false ,
@@ -51,7 +51,7 @@ func NewConfig() *GraffitiWallWriterConfig {
5151 Name : "Input URL" ,
5252 Description : "URL or filepath for the input JSON file that contains the graffiti image to write to the wall. By default, this is the Rocket Pool logo.\n \n See https://gist.github.com/RomiRand/dfa1b5286af3e926deff0be2746db2df for info on making your own images.\n \n NOTE: for local files, you must manually put the file into the `addons/gww` folder of your `rocketpool` directory, and then enter the name of it as `/gww/<filename>` here." ,
5353 Type : config .ParameterType_String ,
54- Default : map [config.Network ]interface {} {config .Network_All : "https://cdn-rocketpool.s3.us-west-2.amazonaws.com/graffiti.json" },
54+ Default : map [config.Network ]any {config .Network_All : "https://cdn-rocketpool.s3.us-west-2.amazonaws.com/graffiti.json" },
5555 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
5656 CanBeBlank : true ,
5757 OverwriteOnUpgrade : false ,
@@ -62,7 +62,7 @@ func NewConfig() *GraffitiWallWriterConfig {
6262 Name : "Wall Update Interval" ,
6363 Description : "The time, in seconds, between updating the beaconcha.in graffiti wall canvas" ,
6464 Type : config .ParameterType_Uint ,
65- Default : map [config.Network ]interface {} {config .Network_All : uint64 (600 )},
65+ Default : map [config.Network ]any {config .Network_All : uint64 (600 )},
6666 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
6767 CanBeBlank : true ,
6868 OverwriteOnUpgrade : false ,
@@ -73,7 +73,7 @@ func NewConfig() *GraffitiWallWriterConfig {
7373 Name : "Input Update Interval" ,
7474 Description : "The time, in seconds, between input updates - only if remote URL is used. File will be instantly reloaded when changed." ,
7575 Type : config .ParameterType_Uint ,
76- Default : map [config.Network ]interface {} {config .Network_All : uint64 (600 )},
76+ Default : map [config.Network ]any {config .Network_All : uint64 (600 )},
7777 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
7878 CanBeBlank : true ,
7979 OverwriteOnUpgrade : false ,
@@ -84,7 +84,7 @@ func NewConfig() *GraffitiWallWriterConfig {
8484 Name : "Pixel Update Interval" ,
8585 Description : "The time, in seconds, between output updates." ,
8686 Type : config .ParameterType_Uint ,
87- Default : map [config.Network ]interface {} {config .Network_All : uint64 (60 )},
87+ Default : map [config.Network ]any {config .Network_All : uint64 (60 )},
8888 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
8989 CanBeBlank : true ,
9090 OverwriteOnUpgrade : false ,
@@ -95,7 +95,7 @@ func NewConfig() *GraffitiWallWriterConfig {
9595 Name : "Container Tag" ,
9696 Description : "The tag name of the container you want to use on Docker Hub." ,
9797 Type : config .ParameterType_String ,
98- Default : map [config.Network ]interface {} {config .Network_All : containerTag },
98+ Default : map [config.Network ]any {config .Network_All : containerTag },
9999 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
100100 CanBeBlank : false ,
101101 OverwriteOnUpgrade : true ,
@@ -106,7 +106,7 @@ func NewConfig() *GraffitiWallWriterConfig {
106106 Name : "Additional Flags" ,
107107 Description : "Additional custom command line flags you want to pass to the addon, to take advantage of other settings that the Smartnode's configuration doesn't cover." ,
108108 Type : config .ParameterType_String ,
109- Default : map [config.Network ]interface {} {config .Network_All : "" },
109+ Default : map [config.Network ]any {config .Network_All : "" },
110110 AffectsContainers : []config.ContainerID {ContainerID_GraffitiWallWriter },
111111 CanBeBlank : true ,
112112 OverwriteOnUpgrade : false ,
0 commit comments