-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for MultiversX #30
Conversation
func Elrond() (int, error) { | ||
votingPowers := make([]big.Int, 0, 1024) | ||
|
||
url := fmt.Sprintf("https://api.elrond.com/nodes?type=validator") |
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.
url := fmt.Sprintf("https://api.elrond.com/nodes?type=validator") | |
url := fmt.Sprintf("https://api.multiversx.com/nodes?type=validator") |
"sort" | ||
) | ||
|
||
type ElrondResponse []struct { |
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.
type ElrondResponse []struct { | |
type MvxResponse []struct { |
Stake string `json:"stake"` | ||
} | ||
|
||
func Elrond() (int, error) { |
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.
func Elrond() (int, error) { | |
func Multiversx() (int, error) { |
Hi, |
Closing this as #44 is merged |
No description provided.