From 2f2966b2d35f0138734a6102f9d5edf9467b5bd3 Mon Sep 17 00:00:00 2001 From: alt <84208222+a1ttech@users.noreply.github.com> Date: Thu, 2 Jan 2025 06:56:26 -0800 Subject: [PATCH] Update processing-validation.md --- docs/sdk/serverless-signing/processing-validation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sdk/serverless-signing/processing-validation.md b/docs/sdk/serverless-signing/processing-validation.md index 36c8183a..a6ca64a1 100644 --- a/docs/sdk/serverless-signing/processing-validation.md +++ b/docs/sdk/serverless-signing/processing-validation.md @@ -151,12 +151,12 @@ You can call Lit Actions from inside Lit Actions and any signatures or decryptio You do this by passing an IPFS ID to the Lit.Actions.call() function like so:  ```jsx -Lit.Actions.call({ ipfsId: "Qmb2sJtVLXiNNXnerWB7zjSpAhoM8AxJF2uZsU2iednTtT", params: {})  +Lit.Actions.call({ ipfsId: "QmRwN9GKHvCn4Vk7biqtr6adjXMs7PzzYPCzNCRjPFiDjm", params: {})  ``` which would call the Lit Action at the given IPFS ID with the params you pass in to the `params` key. -Check out that action code here to see how it works: https://ipfs.io/ipfs/Qmb2sJtVLXiNNXnerWB7zjSpAhoM8AxJF2uZsU2iednTtT +Check out that action code here to see how it works: https://ipfs.io/ipfs/QmRwN9GKHvCn4Vk7biqtr6adjXMs7PzzYPCzNCRjPFiDjm Below is an action that takes a function name to run, and runs a "child" Lit Action accordingly. This example only has 1 function ("signEcdsa") but it could have many.