How to see the wallets that has delegated on my stakepool?

Hi Every one im setting up a stake pool and want to know how do i see the address from delegators on my pool and also i want to send them tokens from my pool , there is a way to send to various address at once or i need to send for each one?

thanks

2 Likes

There are many solutions to these problems. You can use pool.pm/search to search for your pool and then see the wallets and find the stake addresses delegated to your pool. You can use an API like koiOS or blockfrost to query the addresses in your pool.

https://api.koios.rest/#get-/pool_delegators

You could use a vending machine like the seal pool token vending machine, or DripDropz, or soon the new freeloaderz token distribution system - Vending Machine

Or you could simply use cardano-cli to send the tokens to your delegates. You can use transaction-build ( cardano-cli transaction build --help) remember native assets are referred to differently than normal utxos.

cardano-cli transaction build \
--tx-in <utxo-in> \
--tx-out $(cat payment.addr)+1800000 \
--tx-out $(cat payment.addr)+1800000 \
--change-address $(cat payment.addr) \
--out-file txsplit.raw \
--mainnet
1 Like

U can send the tokens using this tool if cli is not ur friend :beers:

Cheers,

1 Like