Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions apps/llp-performance-snapshot/arbitrum/subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,32 @@ dataSources:
- event: EmergencyWithdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleEmergencyWithdraw
network: arbitrum-one
- kind: ethereum
name: LevelMasterV3
source:
abi: LevelMaster
address: "0xC18c952F800516E1eef6aB482F3d331c84d43d38"
startBlock: 125986600
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
file: ./mappings/levelmaster.ts
entities:
- WalletTranche
- WalletTrancheHistory
abis:
- name: Pool
file: ./abis/Pool.json
- name: LevelMaster
file: ./abis/LevelMaster.json
- name: PoolLens
file: ./abis/PoolLens.json
eventHandlers:
- event: Deposit(indexed address,indexed uint256,uint256,indexed address)
handler: handleDeposit
- event: Withdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleWithdraw
- event: EmergencyWithdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleEmergencyWithdraw
network: arbitrum-one
3 changes: 2 additions & 1 deletion apps/llp-performance-snapshot/arbitrum/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ export const config: Config = {
],
excludeTrackLp: [
Address.fromString('0x0000000000000000000000000000000000000000'),
Address.fromString('0x0180dee5Df18eBF76642e50FaaEF426f7b2874f7'), // farm
Address.fromString('0x0180dee5Df18eBF76642e50FaaEF426f7b2874f7'), // farm v2
Address.fromString('0xC18c952F800516E1eef6aB482F3d331c84d43d38'), // farm v3
Address.fromString('0x1E46Ab9D3D9e87b95F2CD802208733C90a608805'), // Liquidity Router
Address.fromString('0xf37DAc12B916356c44585333F33Cd2dF366dA487'), // LlpRewardDistributor
],
Expand Down
1 change: 1 addition & 0 deletions apps/llp-performance-snapshot/bsc/src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const config: Config = {
Address.fromString('0x0000000000000000000000000000000000000000'),
Address.fromString('0x1Ab33A7454427814a71F128109fE5B498Aa21E5d'), // farm
Address.fromString('0x5aE081b6647aEF897dEc738642089D4BDa93C0e7'), // farm v2
Address.fromString('0x506137d1Ae62685506FCcb7E55457c976425F13a'), // farm v3
Address.fromString('0xBD8638C1fF477275E49aaAe3E4691b74AE76BeCd'), // Liquidity Router
Address.fromString('0x70f1555889dD1bD458A430bD57D22c12C6FCF9a4'), // LockDrop Old
Address.fromString('0xd804ea7306abe2456bdd04a31f6f6a2f55dc0d21'), // LockDrop
Expand Down
27 changes: 27 additions & 0 deletions apps/llp-performance-snapshot/bsc/subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -269,3 +269,30 @@ dataSources:
- event: EmergencyWithdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleEmergencyWithdraw
network: bsc
- kind: ethereum
name: LevelMasterV3
source:
abi: LevelMaster
address: '0x506137d1Ae62685506FCcb7E55457c976425F13a'
startBlock: 31270083
mapping:
kind: ethereum/events
apiVersion: 0.0.7
language: wasm/assemblyscript
file: ./src/mappings/levelmaster.ts
entities:
- WalletTranche
- WalletTrancheHistory
abis:
- name: Pool
file: ./abis/Pool.json
- name: LevelMaster
file: ./abis/LevelMaster.json
eventHandlers:
- event: Deposit(indexed address,indexed uint256,uint256,indexed address)
handler: handleDeposit
- event: Withdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleWithdraw
- event: EmergencyWithdraw(indexed address,indexed uint256,uint256,indexed address)
handler: handleEmergencyWithdraw
network: bsc
4 changes: 2 additions & 2 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- "apps/*"
- "packages/*"
- "apps/**"
- "packages/**"