# Gets the list of burn positions by wallet address

`getBurnPositionList` fetches a list of burn positions for a specified account by calling the `sdk.Burn.getBurnPositionList(wallet_address)` method.

```typescript
const wallet_address = '0x...'
const position_ids = await sdk.Burn.getBurnPositionList(wallet_address)

// result:
positionIds: ['0x1b9b4f2271bc69df97ddafcb3f645...']
```
