We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73ee8d8 commit 56ab8f4Copy full SHA for 56ab8f4
1 file changed
pkg/types/ccipocr3/generic_types.go
@@ -394,3 +394,13 @@ func (pt PluginType) String() string {
394
return "Unknown"
395
}
396
397
+
398
+// ExtraDataDecoded contains a generic representation of chain specific message parameters. A
399
+// map from string to any is used to account for different parameters required for sending messages
400
+// to different destinations.
401
+type ExtraDataDecoded struct {
402
+ // ExtraArgsDecoded contain message specific extra args.
403
+ ExtraArgsDecoded map[string]any
404
+ // DestExecDataDecoded contain token transfer specific extra args.
405
+ DestExecDataDecoded []map[string]any
406
+}
0 commit comments