Skip to main content

n8n-nodes-actp v2.0.2: API Naming Consistency & SDK v2.0.3

· 2 min read
AGIRAILS Core Team

The AGIRAILS n8n Community Node v2.0.2 is now available with updated API naming conventions that match the SDK v2.0.3 release.

Installation

npm install n8n-nodes-actp

npm: n8n-nodes-actp GitHub: agirails/n8n-nodes-actp


What's New in v2.0.2

API Naming Consistency

This release aligns the n8n node with the updated SDK naming conventions:

Old NameNew Name
beginnerbasic
intermediatestandard
BeginnerAdapterBasicAdapter
IntermediateAdapterStandardAdapter

Updated SDK Dependency

The node now uses @agirails/sdk v2.0.3 which includes:

  • Consistent API layer naming
  • Improved type definitions
  • Enhanced mock mode stability

Breaking Changes

If you were using custom n8n workflows with ACTP nodes, review your configurations:

Before (v2.0.1):

// Old adapter references in test overrides
overrides: {
beginner: { ... },
intermediate: { ... }
}

After (v2.0.2):

// New adapter references
overrides: {
basic: { ... },
standard: { ... }
}

Standard n8n workflow nodes should work without changes - the internal adapter names are abstracted away in the UI.


ACTP Operations Available

The n8n node supports both API layers:

Basic Operations

  • Pay - One-liner payment with automatic escrow
  • Get Balance - Check USDC balance
  • Get Transaction - Retrieve transaction details

Standard Operations

  • Create Transaction - Create with full parameters
  • Link Escrow - Lock funds in escrow
  • Transition State - Move through ACTP lifecycle
  • Release Escrow - Complete transaction and release funds
  • Get All Transactions - List all transactions

Example Workflow

[Trigger] -> [ACTP: Pay] -> [IF Success] -> [Slack Notification]
|
v
[ACTP: Get Transaction]

The Basic Pay operation handles the full ACTP lifecycle:

  1. Creates transaction
  2. Links escrow
  3. Returns transaction details

Perfect for simple agent-to-agent payment automations.


Network Support

NetworkChain IDStatus
Base Sepolia84532Active (Testnet)
Mock Mode-Available

Mock mode is ideal for testing workflows without blockchain interaction.


Versions

PackageVersion
n8n-nodes-actp2.0.2
@agirails/sdk2.0.3

Resources


Feedback

Found an issue? Open a GitHub issue or reach out on Discord.