-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
147 changed files
with
35,392 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
import * as constants from "../common/constants"; | ||
import { Address, BigInt, ethereum } from "@graphprotocol/graph-ts"; | ||
import { Configurations, OracleConfig, OracleContract } from "../common/types"; | ||
|
||
export const NETWORK_STRING = "linea"; | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
///////////////////// CALCULATIONS/ORACLE CONTRACT //////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const YEARN_LENS_CONTRACT_ADDRESS = new OracleContract(); | ||
export const CHAIN_LINK_CONTRACT_ADDRESS = new OracleContract(); | ||
export const AAVE_ORACLE_CONTRACT_ADDRESS = new OracleContract(); | ||
export const SUSHISWAP_CALCULATIONS_ADDRESS = new OracleContract(); | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
///////////////////////////// CURVE CONTRACT ////////////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const CURVE_CALCULATIONS_ADDRESS = new OracleContract(); | ||
|
||
export const CURVE_REGISTRY_ADDRESSES: OracleContract[] = []; | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
/////////////////////////// UNISWAP FORKS CONTRACT //////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const UNISWAP_FORKS_ROUTER_ADDRESSES: OracleContract[] = [ | ||
new OracleContract("0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb", 1440), // Pancakeswap v2 Router2 | ||
]; | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
/////////////////////////// BLACKLISTED TOKENS //////////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const YEARN_LENS_BLACKLIST: Address[] = []; | ||
export const AAVE_ORACLE_BLACKLIST: Address[] = []; | ||
export const CURVE_CALCULATIONS_BLACKSLIST: Address[] = []; | ||
export const SUSHI_CALCULATIONS_BLACKSLIST: Address[] = []; | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
//////////////////////////// HARDCODED STABLES //////////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const HARDCODED_STABLES: Address[] = []; | ||
|
||
/////////////////////////////////////////////////////////////////////////// | ||
///////////////////////////////// HELPERS ///////////////////////////////// | ||
/////////////////////////////////////////////////////////////////////////// | ||
|
||
export const USDC_TOKEN_DECIMALS = BigInt.fromI32(6); | ||
|
||
export const ETH_ADDRESS = constants.NULL.TYPE_ADDRESS; | ||
export const WETH_ADDRESS = Address.fromString( | ||
"0xe5d7c2a44ffddf6b295a15c148167daaaf5cf34f" | ||
); | ||
export const USDC_ADDRESS = Address.fromString( | ||
"0x176211869ca2b568f2a7d4ee941e073a821ee1ff" | ||
); | ||
|
||
export class config implements Configurations { | ||
network(): string { | ||
return NETWORK_STRING; | ||
} | ||
|
||
yearnLens(): OracleContract { | ||
return YEARN_LENS_CONTRACT_ADDRESS; | ||
} | ||
chainLink(): OracleContract { | ||
return CHAIN_LINK_CONTRACT_ADDRESS; | ||
} | ||
yearnLensBlacklist(): Address[] { | ||
return YEARN_LENS_BLACKLIST; | ||
} | ||
|
||
aaveOracle(): OracleContract { | ||
return AAVE_ORACLE_CONTRACT_ADDRESS; | ||
} | ||
aaveOracleBlacklist(): Address[] { | ||
return AAVE_ORACLE_BLACKLIST; | ||
} | ||
|
||
curveCalculations(): OracleContract { | ||
return CURVE_CALCULATIONS_ADDRESS; | ||
} | ||
curveCalculationsBlacklist(): Address[] { | ||
return CURVE_CALCULATIONS_BLACKSLIST; | ||
} | ||
|
||
sushiCalculations(): OracleContract { | ||
return SUSHISWAP_CALCULATIONS_ADDRESS; | ||
} | ||
sushiCalculationsBlacklist(): Address[] { | ||
return SUSHI_CALCULATIONS_BLACKSLIST; | ||
} | ||
|
||
uniswapForks(): OracleContract[] { | ||
return UNISWAP_FORKS_ROUTER_ADDRESSES; | ||
} | ||
curveRegistry(): OracleContract[] { | ||
return CURVE_REGISTRY_ADDRESSES; | ||
} | ||
|
||
hardcodedStables(): Address[] { | ||
return HARDCODED_STABLES; | ||
} | ||
|
||
ethAddress(): Address { | ||
return ETH_ADDRESS; | ||
} | ||
wethAddress(): Address { | ||
return WETH_ADDRESS; | ||
} | ||
usdcAddress(): Address { | ||
return USDC_ADDRESS; | ||
} | ||
|
||
usdcTokenDecimals(): BigInt { | ||
return USDC_TOKEN_DECIMALS; | ||
} | ||
|
||
getOracleOverride( | ||
tokenAddr: Address | null, | ||
block: ethereum.Block | null | ||
): OracleConfig | null { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Cygnus Finance Subgraph | ||
|
||
## Methodology v1.0.0 | ||
|
||
Cygnus Finance is a RWA stablecoin protocol built on pure, short-term U.S. debt assets. It is also the first native interest-bearing stablecoin protocol and the first native RWA protocol on Base. | ||
|
||
Each lending pool represents a pair of 2 tokens of a DEX. Lenders can supply tokens to any lending pool to earn passive yield without impermanent loss. Borrowers can deposit LP tokens in a lending pool to borrow tokens of the token pair. This enables borrowers to leverage their LP tokens and get even more LP tokens, allowing for leveraged yield farming and enhanced LP rewards. | ||
|
||
## Metrics | ||
|
||
### Usage and Transactions | ||
|
||
Following activities count towards usage and transactions of the protocol, | ||
|
||
- Minting and staking cgUSD shares | ||
- Depositing and withdrawing cgUSD shares | ||
|
||
### TVL | ||
|
||
TVL of a market is the value of staked cgUSD tokens. | ||
|
||
## Useful Links | ||
|
||
- Landing Page: https://www.cygnus.finance/ | ||
- Lending App: https://app.cygnus.finance/mint | ||
- Docs: https://wiki.cygnus.finance/ | ||
- Contracts: https://github.com/arks-labs/cygnus-contracts-public |
Oops, something went wrong.