View as Markdown
Overledger icon

Overledger ACTION

Execute Signed Transaction

Executes a signed transaction by sending it to a blockchain node via Overledger. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Overledger account once, then configure and run Execute Signed Transaction from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "overledger-execute-signed-transaction",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    overledger: { authProvisionId: "apn_xxxxxxx" },
    environment: "Overledger Instance",
    requestId: "Request ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Execute Signed Transaction inputs
Property Type Description
environment Overledger Instance string
Select the Overledger instance to be used
Required
requestId Request ID string
The Overledger identifier assigned to the related transaction preparation request. This should be set to the requestId parameter found in the response object of the 'Prepare a Smart Contract Transaction' Overledger action.
Required
signedTransaction Signed Transaction string
The raw transaction bytecode after signing. This should be set to the signed parameter found in the response object of the 'Sign a Transaction' Overledger action.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
overledger-execute-signed-transaction
Version
0.0.5
App
Overledger
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes