← All skills
Tencent SkillHub Β· AI

Abstract Toolkit

Deploy smart contracts and bridge assets to Abstract (ZK Stack L2). Use when an agent needs to deploy contracts on Abstract, bridge ETH/tokens to Abstract, trade/swap tokens, check balances, transfer assets, or interact with Abstract mainnet. Covers zksolc compilation, Hardhat deployment, Relay bridging, DEX trading, and key contract addresses.

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

Deploy smart contracts and bridge assets to Abstract (ZK Stack L2). Use when an agent needs to deploy contracts on Abstract, bridge ETH/tokens to Abstract, trade/swap tokens, check balances, transfer assets, or interact with Abstract mainnet. Covers zksolc compilation, Hardhat deployment, Relay bridging, DEX trading, and key contract addresses.

⬇ 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, references/addresses.md, references/agw.md, references/hardhat.config.js, references/troubleshooting.md, scripts/call-contract.js

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 13 sections Open source page

Abstract Onboard

Everything an agent needs to operate on Abstract.

Create Abstract Global Wallet (AGW)

AGW is a smart contract wallet that earns XP on Abstract. Essential for agents! export WALLET_PRIVATE_KEY=0x... node scripts/create-agw.js Your EOA becomes the signer, AGW is a separate smart contract address.

Check Balances

node scripts/check-balances.js <wallet> all

Bridge ETH to Abstract

export WALLET_PRIVATE_KEY=0x... node scripts/relay-bridge.js --from base --amount 0.01

Deploy a Contract

export WALLET_PRIVATE_KEY=0x... node scripts/deploy-abstract.js ./artifacts/MyContract.json "constructor-arg"

Transfer Tokens

export WALLET_PRIVATE_KEY=0x... node scripts/transfer.js --to 0x... --amount 0.01 # ETH node scripts/transfer.js --to 0x... --amount 100 --token USDC # Token

Swap Tokens

export WALLET_PRIVATE_KEY=0x... export DEX_ROUTER=0x... # Set DEX router address node scripts/swap-tokens.js --from ETH --to USDC --amount 0.01

Call Any Contract

# Read node scripts/call-contract.js --address 0x... --abi ./abi.json --function balanceOf --args 0x1234 # Write export WALLET_PRIVATE_KEY=0x... node scripts/call-contract.js --address 0x... --abi ./abi.json --function transfer --args 0x1234,100 --write

Key Information

ItemValueChain ID2741RPChttps://api.mainnet.abs.xyzExplorerhttps://abscan.orgBridgehttps://relay.link/bridge/abstractUSDC0x84A71ccD554Cc1b02749b35d22F684CC8ec987e1WETH0x3439153EB7AF838Ad19d56E1571FBD09333C2809

Scripts

ScriptPurposecreate-agw.jsCreate Abstract Global Wallet (earns XP!)check-balances.jsCheck ETH and token balancesrelay-bridge.jsBridge ETH from other chainsdeploy-abstract.jsDeploy contracts to Abstracttransfer.jsSend ETH or tokensswap-tokens.jsTrade tokens via DEXcall-contract.jsCall any contract function

References

FileContentsagw.mdAbstract Global Wallet guide (XP, activation)hardhat.config.jsWorking Hardhat config for Abstractaddresses.mdKey contract addressestroubleshooting.mdCommon errors and fixes

Common Issues

Gas estimation fails β†’ Use Hardhat, not foundry-zksync Compiler errors β†’ Use Solidity 0.8.x with zksolc TX stuck β†’ Check gas price, verify on abscan.org See references/troubleshooting.md for detailed solutions.

Dependencies

# Core dependencies npm install ethers zksync-ethers viem # For contract deployment npm install @matterlabs/hardhat-zksync # For AGW (Abstract Global Wallet) npm install @abstract-foundation/agw-client

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
4 Docs2 Scripts
  • SKILL.md Primary doc
  • references/addresses.md Docs
  • references/agw.md Docs
  • references/troubleshooting.md Docs
  • references/hardhat.config.js Scripts
  • scripts/call-contract.js Scripts