Comment on page
Provider API
You can see below the required structure of the provider API. Please follow the required format so that no difficulties arise during integration!
Please provide the data in JSON format as shown below:
type Provider = {
name: string;
users: number;
balanceUsd: number;
supportedAssets: [
Array<{
name: string; # Asset name
slug: string; # Asset slug, preferred slugs can be found below
nodes: [
Array<{
nodeType: string; # hostingNode/operatorNode/posNode
address: string; # only for pos nodeType
feeUsd: number; # optional
fee: number; # optional
users: number;
balanceUsd: number;
balanceToken: number;
}>;
]
}>;
]
};
We have included detailed descriptions of each data point in General Data, Supported Assets, and Nodes.
Staking Rewards slug and name can be requested here:
Cosmos focused Providers can use the cosmos validator directory to get an API.
Please follow these instructions
-> https://github.com/eco-stake/validator-registry/wiki/Staking-Rewards
Last modified 10h ago