You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defi contracts on flow testnet
- renamed defi contracts to defi contract mainnet
- fixed broken links due to name change
- added redirection due to name change
- moved testnet contracts from defi contracts mainnet
- added new testnet contracts
Copy file name to clipboardExpand all lines: docs/blockchain-development-tutorials/forte/flow-actions/intro-to-flow-actions.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ We are reviewing and finalizing Flow Actions in [FLIP 339]. The specific impleme
36
36
We will update these tutorials, but you may need to refactor your code if the implementation changes.
37
37
38
38
:::
39
+
39
40
## Overview
40
41
41
42
_Actions_ are a suite of standardized Cadence interfaces that allow developers to compose complex workflows, starting with decentralized finance (DeFi) workflows, by connecting small, reusable components. Actions provide a "LEGO" framework of blocks where each component performs a single operation (deposit, withdraw, swap, price lookup, flash loan) while maintaining composability with other components. This creates sophisticated workflows executable in a single atomic transaction.
@@ -125,8 +126,6 @@ Many Flow Actions use these types to provide a safer method of working with toke
125
126
126
127
## Flow Actions
127
128
128
-
129
-
130
129
The following Flow Actions standardize **usage** patterns for common defi-related tasks. By working with them, you - or Artificial Intelligence (AI) agents - can more easily write transactions and functionality regardless of the myriad of different ways each protocol works to accomplish these tasks.
131
130
132
131
:::info
@@ -622,7 +621,7 @@ Now that you have completed this tutorial, you can:
Copy file name to clipboardExpand all lines: docs/ecosystem/defi-liquidity/defi-contracts-mainnet.md
+19-31Lines changed: 19 additions & 31 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,28 +1,32 @@
1
1
---
2
-
id: defi-contracts
3
-
title: DeFi Contracts on Flow
2
+
id: defi-contracts-mainnet
3
+
title: DeFi Contracts on Flow Mainnet
4
4
description: A reference table of frequently used DeFi contracts on Flow, including their addresses for both Flow EVM and Flow Cadence.
5
5
keywords:
6
6
- DeFi contracts
7
7
- Flow blockchain
8
8
- Flow EVM
9
9
- Flow Cadence
10
+
- Flow EVM Mainnet
11
+
- Flow Cadence Mainnet
10
12
- stablecoins
11
13
- wrapped assets
12
14
- AMMs
13
15
- DEXs
14
16
- KittyPunch
15
17
- PunchSwap
16
18
sidebar_position: 1
17
-
sidebar_label: DeFi Contracts
19
+
sidebar_label: DeFi Contracts Mainnet
18
20
---
19
21
20
22
import StablecoinsWrappedAssetsTable from '@site/src/components/defi-contracts/StablecoinsWrappedAssetsTable';
21
23
import CopyButton from '@site/src/components/CopyButton';
22
24
23
25
Flow is a Layer 1 blockchain that supports EVM equivalency, offering two environments Flow EVM and Flow Cadence. Fungible and non-fungible tokens can seamlessly transfer between these environments via the native VM token bridge. As a result, many tokens have both a Flow EVM mainnet contract address and a Flow Cadence mainnet contract address, allowing developers to choose their preferred environment.
24
26
25
-
Below is a list of commonly used DeFi contracts on Flow:
27
+
Below is a list of commonly used DeFi contracts on Flow Mainnet:
28
+
29
+
[Switch to DeFi Contracts on Testnet](./defi-contracts-testnet.md)
26
30
27
31
## Stablecoins & Wrapped Assets
28
32
@@ -42,8 +46,8 @@ Below is a list of commonly used DeFi contracts on Flow:
0 commit comments