Skale
Stake flow
Unstake flow
Cancel delegation flow
Claim rewards flow
Get SKL balances
GET
https://stake.nansen.ai/api/v1 /eth/skale/delegator/available_balance/{address}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get delegations
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/delegations/{address}
This endpoint allows you to get all delegations for an address
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get rewards
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/earned_bounty/{address}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get data to build Stake transaction object
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/digest/delegate/{address}?amount={amount}&delegation_period={period}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Query Parameters
Name | Type | Description |
---|---|---|
period | number | Stake period |
amount | number | Amount to stake |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get data to build Unstake transaction object
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/digest/request_undelegation/{address}?delegation_id={delegationId}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Query Parameters
Name | Type | Description |
---|---|---|
delegationId | string | Delegation Id |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get data to build Cancel Request transaction object
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/digest/cancel_pending_delegation/{address}?delegation_id={delegationId}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Query Parameters
Name | Type | Description |
---|---|---|
delegationId | string | Delegation Id |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |
Get data to build Claim Rewards transaction object
GET
https://stake.nansen.ai/api/v1/eth/skale/delegator/digest/withdraw_bounty/{address}?validator_id={validatorId}&to={destAddress}
Path Parameters
Name | Type | Description |
---|---|---|
address | string | Account address |
Query Parameters
Name | Type | Description |
---|---|---|
validatorId | string | Validator Id |
destAddress | string | Account address to receive rewards |
Headers
Name | Type | Description |
---|---|---|
X-UNAGII-AUTH-TOKEN | string | Access token |