-
Notifications
You must be signed in to change notification settings - Fork 31
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
3 changed files
with
32 additions
and
2 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,19 @@ | ||
package main | ||
|
||
import "github.com/yearn/ydaemon/common/env" | ||
|
||
var STATUS_FOR_CHAINID = map[uint64]string{} | ||
|
||
func init() { | ||
for _, chainID := range env.SUPPORTED_CHAIN_IDS { | ||
setStatusForChainID(chainID, "Not Started") | ||
} | ||
} | ||
|
||
func setStatusForChainID(chainID uint64, status string) { | ||
STATUS_FOR_CHAINID[chainID] = status | ||
} | ||
|
||
func getStatusForChainID(chainID uint64) string { | ||
return STATUS_FOR_CHAINID[chainID] | ||
} |
75a5dae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
ydaemon – ./docs
ydaemon.yearn.farm
ydaemon-git-main.yearn.farm