Gets the list of burn pools

getBurnPoolList retrieves a list of existing burn pools by calling sdk.Burn.getBurnPoolList(), then prints the result.

const pool_ids = await sdk.Burn.getBurnPoolList()

// result:
pool_ids: [
  '0x2dea79f17e61f8d02ff02ed75510283...',
  '0x6fd4915e6d8d3e2ba6d81787046eb94...',
  '0xc41621d02d5ee00a7a993b912a8550d...',
  '0xaccdd1c40fdd6abf168def70044a565...',
  '0xc10e379b4658d455ee4b8656213c715...',
  '0x1861771ab3b7f0f6a4252e1c60ed270...',
  '0x1b9b4f2271bc69df97ddafcb3f64599...',
  '0x473ab0306ff8952d473b10bb4c3516c...',
  '0x3a61bd98686e4aa6213fb5b3b535645...',
]

Last updated