Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/api/direct-execution.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ Check the status of a direct execution.
"type": "transfer",
"transactionHash": "0x...",
"transactionLink": "https://etherscan.io/tx/0x...",
"gasUsedWei": "21000000000000",
"result": {...},
"error": null,
"createdAt": "2024-01-01T00:00:00Z",
Expand Down
6 changes: 3 additions & 3 deletions docs/plugins/web3.md
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ Execute state-changing functions on smart contracts using your Para wallet. Requ

**Inputs:** Network, Contract Address, ABI (auto-fetched), Function, Function Arguments, Gas Limit Multiplier (optional, in Advanced section)

**Outputs:** `success`, `transactionHash`, `result`, `error`
**Outputs:** `success`, `transactionHash`, `transactionLink`, `gasUsed`, `result`, `error`

**When to use:** Execute DeFi operations (harvest, compound, rebalance), respond to on-chain events, automate protocol maintenance.

Expand All @@ -407,7 +407,7 @@ Send ETH, MATIC, or other native tokens from your Para wallet to a recipient add

**Inputs:** Network, Amount (ETH), Recipient Address, Gas Limit Multiplier (optional, in Advanced section)

**Outputs:** `success`, `transactionHash`, `error`
**Outputs:** `success`, `transactionHash`, `transactionLink`, `gasUsed`, `error`

**When to use:** Refill bot wallets, distribute funds, automate payroll.

Expand All @@ -421,7 +421,7 @@ Send ERC20 tokens from your Para wallet to a recipient address.

**Inputs:** Network, Token, Amount, Recipient Address, Gas Limit Multiplier (optional, in Advanced section)

**Outputs:** `success`, `transactionHash`, `transactionLink`, `amount`, `symbol`, `recipient`, `error`
**Outputs:** `success`, `transactionHash`, `transactionLink`, `gasUsed`, `amount`, `symbol`, `recipient`, `error`

**When to use:** Distribute tokens, move funds between wallets, automate token transfers based on conditions.

Expand Down