You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: core/commands/name/publish.go
+4
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ const (
28
28
ttlOptionName="ttl"
29
29
keyOptionName="key"
30
30
quieterOptionName="quieter"
31
+
compatibleWithV1="compatible-v1"
31
32
)
32
33
33
34
varPublishCmd=&cmds.Command{
@@ -83,6 +84,7 @@ Alternatively, publish an <ipfs-path> using a valid PeerID (as listed by
83
84
cmds.StringOption(ttlOptionName, "Time duration this record should be cached for. Uses the same syntax as the lifetime option. (caution: experimental)"),
84
85
cmds.StringOption(keyOptionName, "k", "Name of the key to be used or a valid PeerID, as listed by 'ipfs key list -l'.").WithDefault("self"),
85
86
cmds.BoolOption(quieterOptionName, "Q", "Write only final hash."),
87
+
cmds.BoolOption(compatibleWithV1, "Create a V1-compatible IPNS Record.").WithDefault(true),
86
88
ke.OptionIPNSBase,
87
89
},
88
90
Run: func(req*cmds.Request, res cmds.ResponseEmitter, env cmds.Environment) error {
@@ -96,6 +98,7 @@ Alternatively, publish an <ipfs-path> using a valid PeerID (as listed by
0 commit comments