Skip to content

getAirdropIdsByOwner

Get airdrop ids by owner address.

Usage

example.ts
import { mintclub } from 'mint.club-v2-sdk'
 
const ids = await mintclub.network('base').airdrop.getAirdropIdsByOwner({
	owner: '0x...',
	start: 0,
	end: 1000
}) 

Return Value

Promise<bigint[]>

Parameters

  • Type: object

owner

  • Type: '0x${string}'

Owner address.

start (optional)

  • Type: number
  • Default: 0

Start id.

end (optional)

  • Type: number
  • Default: 1000

End id.