sending proposal, signing certificates? #3099
-
Hello again, I've created a single node using
Output:
I'm now currently attempting to change the JS application through proposal using the curl wrapper in a second terminal using Output:
I seem to be missing signing cert/keys, isn't the wrapper supposed to handle these and if not how do I generate the signing certificates used to send proposals? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The args you need to pass to |
Beta Was this translation helpful? Give feedback.
The args you need to pass to
scurl.sh
are--signing-key
and--signing-key
. These are required arguments, which set the identity used to do HTTP signing of the request. The--key
and--cert
args you're currently passing are optional, and are used to do TLS-client authentication, but not HTTP signing. We provide both so that callers can test signed-but-unauthed commands (sufficient for CCF governance endpoints), or signed-and-authed-with-a-different-identity commands (not used by any builtin CCF endpoint, but could be desired in application logic), or some other combination.