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: resources/config-schema.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -856,7 +856,7 @@
856
856
"additionalProperties": false,
857
857
"description": "Private keys are used to sign API responses.\nSupported algorithms: `ed25519`, `secp256k1`.",
858
858
"properties": {
859
-
"privateKey": {
859
+
"ed25519PrivateKey": {
860
860
"anyOf": [
861
861
{
862
862
"$ref": "#/$defs/PrivateKey"
@@ -866,7 +866,7 @@
866
866
}
867
867
],
868
868
"combine": "replace",
869
-
"description": "To generate, use:\n\n```sh\ndd if=/dev/urandom bs=1 count=32 status=none |\n base64 -w0 |\n tr '+/' '-_' |\ntr -d '=' |\n (echo -n u && cat)\n```\n\nThe command above:\n- Reads 32 random bytes\n- base64-encodes them\n- Converts default base64 encoding to base64url and removes padding\n- Prepends a multibase prefix"
869
+
"description": "Root private key that corresponds to the `authority` and is used to sign\nresponses.\n\nTo generate, use:\n```sh\nod -vN 32 -An -tx1 /dev/urandom | tr -d '\\n' && echo\n```\nor\n```sh\nopenssl rand -hex 32\n```"
870
870
},
871
871
"secp256k1PrivateKey": {
872
872
"anyOf": [
@@ -878,7 +878,7 @@
878
878
}
879
879
],
880
880
"combine": "replace",
881
-
"description": "Secp256k1 private key used to sign EIP-712 typed data.\n\n```sh\ncast wallet new\n```"
0 commit comments