You can get all information about a Link by calling the getLinkDetails
function.
Copy
await peanut.getLinkDetails({
link: '<https://peanut.to/claim?c=137&v=v4.3&i=2160&t=ui#p=0JObAtHfeDX7HI7K>',
})
The above function will return the following values:
Copy
interface IGetLinkDetailsResponse {
link: string
chainId: string
depositIndex: number
contractVersion: string
password: string
sendAddress: string
tokenType: string
tokenAddress: string
tokenDecimals: number
tokenSymbol: string
TokenName: string
tokenAmount: number
tokenId: number
claimed: boolean
depositDate: string
tokenURI: string
}