Skip to content

Commit addb95b

Browse files
committed
replace zora with degen chain
1 parent 9147115 commit addb95b

36 files changed

+94
-94
lines changed

abstractions/trending-mints/common-minters.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ If you only prefer fungible token mints, then includes only `ERC20`. If you inst
105105

106106
Choose the chain that you would like to fetch the token mints data.
107107

108-
Currently, Airstack supports Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains).
108+
Currently, Airstack supports Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains).
109109

110110
#### **Limit**
111111

abstractions/trending-mints/onchain-graph.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ If you only prefer fungible token mints, then includes only `ERC20`. If you inst
106106

107107
Choose the chain that you would like to fetch the token mints data.
108108

109-
Currently, Airstack supports Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains).
109+
Currently, Airstack supports Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains).
110110

111111
#### **Limit**
112112

farcaster/farcaster-frames/airstack-frames-sdk/allow-list.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ console.log(data);
228228

229229
## Check If Token(s) Hold By A Farcaster User
230230

231-
You can check if a Farcaster user is holding a given list of tokens across Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenholdbyfarcasteruser) function:
231+
You can check if a Farcaster user is holding a given list of tokens across Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenholdbyfarcasteruser) function:
232232

233233
{% tabs %}
234234
{% tab title="TypeScript" %}
@@ -329,7 +329,7 @@ console.log(data);
329329

330330
## Check If Token(s) Minted By A Farcaster User
331331

332-
You can check if a Farcaster user has minted a given list of tokens across Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenmintedbyfarcasteruser) function:
332+
You can check if a Farcaster user has minted a given list of tokens across Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenmintedbyfarcasteruser) function:
333333

334334
{% tabs %}
335335
{% tab title="TypeScript" %}
@@ -970,7 +970,7 @@ console.log(data);
970970
Video Demo
971971
{% endembed %}
972972

973-
You can check if the Farcaster user transacted on certain blockchain, e.g. Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by providing the Farcaster user's `fid` from the [Frame Signature Packet](https://docs.farcaster.xyz/reference/frames/spec#frame-signature-packet) to the `$farcasterUser` variable and the before date to check to the `$beforeDate` variable using the [`Wallet`](../../../api-references/api-reference/wallet-api.md) API:
973+
You can check if the Farcaster user transacted on certain blockchain, e.g. Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by providing the Farcaster user's `fid` from the [Frame Signature Packet](https://docs.farcaster.xyz/reference/frames/spec#frame-signature-packet) to the `$farcasterUser` variable and the before date to check to the `$beforeDate` variable using the [`Wallet`](../../../api-references/api-reference/wallet-api.md) API:
974974

975975
### Try Demo
976976

farcaster/farcaster-frames/airstack-frames-sdk/onchain-kit.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Here are some onchain data that you can integrate into your Frames:
1212

1313
- Get Trending Mints For Farcaster Users on Base
1414
- Get All POAPs Attended By Farcaster User
15-
- Get Farcaster User's Token Holdings on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
16-
- Get Farcaster User's Token Mints on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
17-
- Get Farcaster User's Token Transfers Sent on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
15+
- Get Farcaster User's Token Holdings on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
16+
- Get Farcaster User's Token Mints on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
17+
- Get Farcaster User's Token Transfers Sent on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
1818
- Get Farcaster User's Followers and Followings
1919
- Get Farcaster Channels Participated and Hosted By Farcaster Users
2020

@@ -414,7 +414,7 @@ console.log(data);
414414

415415
## getFarcasterUserNFTMints
416416

417-
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserNFTMints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusernftmints) function:
417+
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserNFTMints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusernftmints) function:
418418

419419
{% tabs %}
420420
{% tab title="TypeScript" %}
@@ -527,7 +527,7 @@ console.log(data);
527527

528528
## getFarcasterUserERC20Mints
529529

530-
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserERC20Mints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusererc20mints) function:
530+
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserERC20Mints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusererc20mints) function:
531531

532532
{% tabs %}
533533
{% tab title="TypeScript" %}
@@ -616,7 +616,7 @@ console.log(data);
616616

617617
## getFarcasterUserTokenSentFrom
618618

619-
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserTokenSentFrom`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokensentfrom) functions:
619+
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserTokenSentFrom`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokensentfrom) functions:
620620

621621
{% tabs %}
622622
{% tab title="TypeScript" %}
@@ -717,7 +717,7 @@ console.log(data);
717717

718718
## getFarcasterUserTokenReceivedBy
719719

720-
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`getFarcasterUserTokenReceivedBy`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokenreceivedby) function:
720+
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`getFarcasterUserTokenReceivedBy`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokenreceivedby) function:
721721

722722
{% tabs %}
723723
{% tab title="TypeScript" %}

farcaster/farcaster-frames/airstack-framesjs-middleware/allow-list.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ true
414414

415415
## Check If User Hold Certain Token
416416

417-
You can use the [`allowListFramesjsMiddleware`](https://www.npmjs.com/package/@airstack/frames#allow-list-middleware-1) to check if a user is holding certain token on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the `TOKEN_HOLD` and specify the token's `address` and `chain`:
417+
You can use the [`allowListFramesjsMiddleware`](https://www.npmjs.com/package/@airstack/frames#allow-list-middleware-1) to check if a user is holding certain token on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the `TOKEN_HOLD` and specify the token's `address` and `chain`:
418418

419419
{% tabs %}
420420
{% tab title="TypeScript" %}
@@ -514,7 +514,7 @@ true
514514

515515
## Check If User Minted Certain Token
516516

517-
You can use the [`allowListFramesjsMiddleware`](https://www.npmjs.com/package/@airstack/frames#allow-list-middleware-1) to check if a user has minted certain token on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the `TOKEN_HOLD` and specify the token's `address` and `chain`:
517+
You can use the [`allowListFramesjsMiddleware`](https://www.npmjs.com/package/@airstack/frames#allow-list-middleware-1) to check if a user has minted certain token on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the `TOKEN_HOLD` and specify the token's `address` and `chain`:
518518

519519
{% tabs %}
520520
{% tab title="TypeScript" %}

farcaster/farcaster-frames/airstack-frog-recipes-and-middleware/allow-list.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ console.log(data);
228228

229229
## checkTokenHoldByFarcasterUser
230230

231-
You can check if a Farcaster user is holding a given list of tokens across Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenholdbyfarcasteruser) function:
231+
You can check if a Farcaster user is holding a given list of tokens across Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenholdbyfarcasteruser) function:
232232

233233
{% tabs %}
234234
{% tab title="TypeScript" %}
@@ -326,7 +326,7 @@ console.log(data);
326326

327327
## checkTokenMintedByFarcasterUser
328328

329-
You can check if a Farcaster user has minted a given list of tokens across Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenmintedbyfarcasteruser) function:
329+
You can check if a Farcaster user has minted a given list of tokens across Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`checkTokenHoldByFarcasterUser`](https://github.com/Airstack-xyz/airstack-frames-sdk?tab=readme-ov-file#checktokenmintedbyfarcasteruser) function:
330330

331331
{% tabs %}
332332
{% tab title="TypeScript" %}

farcaster/farcaster-frames/airstack-frog-recipes-and-middleware/onchain-data.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Here are some onchain data that you can integrate into your Frames:
1212

1313
- Get Trending Mints For Farcaster Users on Base
1414
- Get All POAPs Attended By Farcaster User
15-
- Get Farcaster User's Token Holdings on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
16-
- Get Farcaster User's Token Mints on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
17-
- Get Farcaster User's Token Transfers Sent on Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains)
15+
- Get Farcaster User's Token Holdings on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
16+
- Get Farcaster User's Token Mints on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
17+
- Get Farcaster User's Token Transfers Sent on Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains)
1818
- Get Farcaster User's Followers and Followings
1919
- Get Farcaster Channels Participated and Hosted By Farcaster Users
2020

@@ -414,7 +414,7 @@ console.log(data);
414414

415415
## getFarcasterUserNFTMints
416416

417-
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserNFTMints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusernftmints) function:
417+
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserNFTMints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusernftmints) function:
418418

419419
{% tabs %}
420420
{% tab title="TypeScript" %}
@@ -527,7 +527,7 @@ console.log(data);
527527

528528
## getFarcasterUserERC20Mints
529529

530-
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserERC20Mints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusererc20mints) function:
530+
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserERC20Mints`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusererc20mints) function:
531531

532532
{% tabs %}
533533
{% tab title="TypeScript" %}
@@ -616,7 +616,7 @@ console.log(data);
616616

617617
## getFarcasterUserTokenSentFrom
618618

619-
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserTokenSentFrom`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokensentfrom) functions:
619+
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`getFarcasterUserTokenSentFrom`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokensentfrom) functions:
620620

621621
{% tabs %}
622622
{% tab title="TypeScript" %}
@@ -717,7 +717,7 @@ console.log(data);
717717

718718
## getFarcasterUserTokenReceivedBy
719719

720-
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`getFarcasterUserTokenReceivedBy`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokenreceivedby) function:
720+
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains) by using the [`getFarcasterUserTokenReceivedBy`](https://github.com/Airstack-xyz/airstack-frames-sdk/tree/main?tab=readme-ov-file#getfarcasterusertokenreceivedby) function:
721721

722722
{% tabs %}
723723
{% tab title="TypeScript" %}

farcaster/farcaster/activate-kit-for-farcaster-auth-kit.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ Show me Farcaster user with address 0xD7029BDEa1c17493893AAfE29AAD69EF892B8ff2 h
10661066

10671067
## Get NFT Mints By A Farcaster User
10681068

1069-
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
1069+
You can fetch all NFTs minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
10701070

10711071
{% hint style="info" %}
10721072
For fetching NFT mints data from multiple chains, check out [Cross-Chain Queries](../../guides/basics/cross-chain-queries.md).
@@ -1159,7 +1159,7 @@ Show me all NFTs minted by a Farcaster user with address 0xeaf55242a90bb3289dB81
11591159

11601160
## Get ERC20 Token Mints By A Farcaster User
11611161

1162-
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
1162+
You can fetch all ERC20 tokens minted by a Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
11631163

11641164
{% hint style="info" %}
11651165
For fetching ERC20 mints data from multiple chains, check out [Cross-Chain Queries](../../guides/basics/cross-chain-queries.md).
@@ -1234,7 +1234,7 @@ Show me all ERC20 tokens minted by Farcaster user with address 0xB59Aa5Bb9270d44
12341234

12351235
## Get Token Transfers Sent From A Farcaster User
12361236

1237-
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
1237+
You can fetch all token transfers sent by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
12381238

12391239
{% hint style="info" %}
12401240
For fetching token transfers data sent from a Farcaster user from multiple chains, check out [Cross-Chain Queries](../../guides/basics/cross-chain-queries.md).
@@ -1326,7 +1326,7 @@ Show me token transfers sent from Farcaster usre with address 0xeaf55242a90bb328
13261326

13271327
## Get Token Transfers Received By A Farcaster User
13281328

1329-
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Zora, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
1329+
You can fetch all token transfers received by a given Farcaster user across multiple chains, such as Ethereum, Base, Degen Chain, and other [Airstack-supported chains](overview.md#supported-chains), by using the [`TokenTransfers`](../../api-references/api-reference/tokentransfers-api.md) API:
13301330

13311331
{% hint style="info" %}
13321332
For fetching token transfers data received by a Farcaster user from multiple chains, check out [Cross-Chain Queries](../../guides/basics/cross-chain-queries.md).

0 commit comments

Comments
 (0)