Skip to content

Commit

Permalink
added table for supported networks and tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
vrajdesai78 committed Feb 15, 2025
1 parent f836de0 commit a718c2e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/walletkit/android/experimental/chain-abstraction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ For example, check out implementation of chain abstraction in [sample wallet](ht

## Testing

To test Chain Abstraction, you can use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending USDC/USDT with any chain abstraction supported wallet.
To test Chain Abstraction, you can use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending [USDC/USDT](../../../walletkit/features/experimental/chain-abstraction.mdx#what-are-the-supported-tokens-and-networks) with any chain abstraction supported wallet.
You can also use this [sample wallet](https://appdistribution.firebase.dev/i/076a3bc9669d3bee) for testing.

<video controls width="100%" height="100%" style={{ borderRadius: '10px' }}>
Expand Down
25 changes: 22 additions & 3 deletions docs/walletkit/features/experimental/chain-abstraction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Wrapper from '../../../components/Home/Wrapper'
import androidLogo from '../../../../static/assets/home/androidLogo.png'
import iosLogo from '../../../../static/assets/home/iosLogo.png'
import rnLogo from '../../../../static/assets/home/rnLogo.png'
import Table from '../../../components/Table'

# Chain Abstraction

Expand Down Expand Up @@ -77,10 +78,28 @@ Chain Abstraction is available on the following networks:
- Arbitrum
- OP Mainnet

### What are the supported tokens for Chain Abstraction?
### What are the supported tokens and networks?

Currently, Chain Abstraction supports USDC and USDT but we are working on adding support for more tokens.
Chain Abstraction supports the following stablecoins across different networks:

<Table
headers={['Network', 'Supported tokens']}
data={[
{
network: 'OP Mainnet',
stablecoins: 'USDC, USDT'
},
{
network: 'Base',
stablecoins: 'USDC'
},
{
network: 'Arbitrum',
stablecoins: 'USDC'
},
]}
/>

### What are the limitations?

We currently support 1:1 transfers i.e. sourcing funds from one address to another. Make sure that you're transferring minimum 0.55 USDC/USDT and have enough gas to pay bridging fees.
We currently support 1:1 transfers i.e. sourcing funds from one address to another. Make sure that you're transferring minimum 0.55 [USDC/USDT](../../../walletkit/features/experimental/chain-abstraction.mdx#what-are-the-supported-tokens-and-networks) and have enough gas to pay bridging fees.
2 changes: 1 addition & 1 deletion docs/walletkit/ios/experimental/chain-abstraction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ For example, check out implementation of chain abstraction in [sample wallet](ht
## Testing

Best way to test Chain Abstraction is to use [sample wallet](https://testflight.apple.com/join/09bTAryp).
You can also use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending USDC with any chain abstraction-supported wallet.
You can also use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending [USDC/USDT](../../../walletkit/features/experimental/chain-abstraction.mdx#what-are-the-supported-tokens-and-networks) with any chain abstraction-supported wallet.

<video controls width="100%" height="100%" style={{ borderRadius: '10px' }}>
<source src="/assets/chain-abstraction-demo.mp4" type="video/mp4" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ For example, check out implementation of chain abstraction in [sample wallet](ht

## Testing

To test Chain Abstraction, you can use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending USDC/USDT with any chain abstraction supported wallet.
To test Chain Abstraction, you can use the [AppKit laboratory](https://appkit-lab.reown.com/library/wagmi/) and try sending [USDC/USDT](../../../walletkit/features/experimental/chain-abstraction.mdx#what-are-the-supported-tokens-and-networks) with any chain abstraction supported wallet.
You can also use this [sample wallet](https://appdistribution.firebase.google.com/testerapps/1:222905275039:android:799d1c9291d92ebe8c88aa/releases/7tkfoelis7n08) for testing.

<video controls width="100%" height="100%" style={{ borderRadius: '10px' }}>
Expand Down

0 comments on commit a718c2e

Please sign in to comment.