Route Actions,
Not Liquidity.

Transactions anywhere by paying with tokens you already own.

UGF

Value here.
a action there.

01

Authenticate the signer

02

Quote the destination action

03

Pay from any asset on any chain

04

UGF completes execution on the target chain

Remote Transactions.

Source-chain value can trigger destination-chain action without moving liquidity first. It turns trapped liquidity into usable transaction capability across supported networks.

One integration.

Ethereum
Base
Optimism
Polygon
Avalanche
BNB
Arbitrum
Solana
Sui
opBNB
TRON
TON

Three places it lands.

01

Wallet integration

Make wallets so simple for your users that they forget what gas is.

02

dApp enhancement

Let your dApp complete cross-chain actions without stopping for gas.

03

AI agent execution

Let AI agents act across chains without managing gas.

50 million AI agents just got the ability to transact.

Agents should not have to manage gas across 12 chains. UGF gives teams flexible ways to trigger cross-chain actions, with SDK, API, REST, and MCP depending on the workflow.

  • Supports SDK, API, REST, and MCP integrations
  • No gas inventory required on destination chains
  • Works across EVM, Solana, Sui, Tron from one integration

Not a paymaster.
Not a bundler.

Particle / Biconomy / Coinbase paymaster-style flow

Ethereum-based setup, smart wallet patterns, bundlers, or per-chain paymaster logic

Universal Gas Framework avoids that stack

Chain-limited gas abstraction

Per-chain support and deeper blockchain infrastructure assumptions

Universal Gas Framework stays simpler to integrate

Bridge first, then act

Move assets before the transaction can even start

Universal Gas Framework routes the action directly

Universal Gas Framework

Existing wallet, supported asset, and one integration across EVM, Solana, Sui, Tron, and TON.

Cross-chain execution without paymasters, bundlers, or smart wallets.

“The concept of UGF is interesting and could be another option besides paymasters. Paymasters need each chain to support, which is more complex. UGF can be a sidecar for multiple chains with a more elegant design.”

JZ — Tech Team, BNB Chain

Live on mainnet.
Proven in production.

50k+

Mainnet transactions

12+

Blockchains

5

Chain families

Route value to action.

  1. 01Install the SDK
  2. 02Authenticate the signer
  3. 03Quote the destination action
  4. 04Route payment from source value
  5. 05Complete execution on the target chain
import { UGFClient } from "@tychilabs/ugf-sdk";
import { ethers } from "ethers";

const client = new UGFClient({
  baseUrl: "https://gateway.universalgasframework.com",
});
const wallet = new ethers.Wallet(PRIVATE_KEY, provider);

// 1. Authenticate
await client.auth.login(wallet);

// 2. Get quote (source value on Base, destination action on BNB Chain)
const quote = await client.quote.get({
  payment_coin: "USDC",
  payer_address: wallet.address,
  payment_chain: "8453",        // Base
  payment_chain_type: "evm",
  tx_object: JSON.stringify({ from, to, data, value }),
  dest_chain_id: "56",          // BNB Chain
  dest_chain_type: "evm",
});

// 3. Route payment via x402
await client.payment.x402.execute({ quote, signer: wallet, token: "USDC" });

// 4. Complete destination action
await client.chains.evm.execute({ quote, signer: wallet.connect(destProvider) });

Builders are using it.

“Really a great product can make a solid impact on web3 industry”

Balaji Srinivasan — Founder of ns

Build remote
transactions.

Universal Gas Framework enables remote transactions by routing payment intent to the destination action.

$npm install @tychilabs/ugf-sdk