-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #261 from OlympusDAO/block-handler-fantom
Implement Block Handler for Fantom
- Loading branch information
Showing
6 changed files
with
23 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# protocol-metrics-fantom | ||
|
||
## v1.0.4 (2023-10-09) | ||
|
||
- Shift to polling block handler | ||
- Deploy on Graph Protocol Decentralized Network |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"id": "QmSBMNhnzbe4c4cwznLUsFkE4H5XZfiVqLHnNZYA48EPwy", | ||
"version": "0.1.0", | ||
"id": "QmNUJtrE5Hiwj5eBeF5gSubY2vhuMdjaZnZsaq6vVY2aba", | ||
"version": "1.0.4", | ||
"org": "olympusdao", | ||
"name": "protocol-metrics-fantom" | ||
} |
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,9 @@ | ||
import { CROSS_CHAIN_FANTOM, DAO_WALLET } from "../../../shared/src/Wallets"; | ||
|
||
/** | ||
* The addresses relevant on Fantom. | ||
*/ | ||
export const FANTOM_PROTOCOL_ADDRESSES: string[] = [ | ||
CROSS_CHAIN_FANTOM, // Everything is contained in one wallet - no need to iterate over other addresses. | ||
DAO_WALLET, // Just in case there is a snapshot during a bridging action | ||
]; |
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