โ† All skills
Tencent SkillHub ยท Productivity

SaucerSwap Arbitrage

Perform triangular arbitrage on Hedera using SaucerSwap to find, calculate, and execute profitable multi-hop token swaps atomically.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Perform triangular arbitrage on Hedera using SaucerSwap to find, calculate, and execute profitable multi-hop token swaps atomically.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Overview

SaucerSwap is the main DEX on Hedera. Triangular arbitrage: profit from price differences between 3 tokens.

Key Contracts (Mainnet)

SaucerSwap V1: 0xcaec9706a4622D356d2D3aEd8f8D40c51f0C0dF SaucerSwap V2: 0xA6F4E11E5D8A3F62A7D4E3E6B1E7F3C9E8F2A1B4

Get Quotes (V1)

const axios = require('axios'); async function getQuote(amountIn, path) { const [tokenA, tokenB, tokenC] = path; const url = `https://mainnet-api.saucerswap.fi/route?from=${tokenA}&to=${tokenB}&amount=${amountIn}`; const response = await axios.get(url); return response.data; }

Token Addresses (Hedera)

HBAR: 0.0.1000 (wrapped: 0x... in EVM format) USDC: 0.0.456719 USDT: 0.0.456720 ETH: 0.0.456721 WBTC: 0.0.456722 SAUCE: 0.0.456723

1. Check Prices

// Get prices for potential paths const paths = [ ['USDC', 'HBAR', 'USDC'], ['USDC', 'SAUCE', 'USDC'], ['HBAR', 'USDC', 'HBAR'] ]; for (const path of paths) { const out = await getQuote(1000, path); const profit = out - 1000; console.log(`${path.join(' โ†’ ')}: ${profit}`); }

2. Execute Swap

// Via HashPack or direct contract call const tx = new ContractExecuteTransaction() .setContractId(poolAddress) .setFunction("swap") .setParameters([...]);

Safety Checks

Slippage: Set min output = expected * 0.97 Gas: Estimate network fees (tinybars) Pool Depth: Check liquidity before large trades Hedera Gossip: Account for network latency

Key Differences from EVM

No EOA signatures: Must use Hedera native signing Network fees: Paid in tinybars (not gas) Transaction types: Use HAPI, not EVM Token format: Use 0.0.xxxxx not 0x...

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc