Sponsor a token intent with ETH.
import { uplinkClient } from './config' const signedIntent = { ... } const { event } = await uplinkClient.sponsorTokenWithETH({ channelAddress: '0x123...', sponsoredToken: signedIntent, to: '0x123...', amount: 1n, mintReferral: '0x123...', data: '0x00..', })
{ tokenId: bigint, // the token ID of the newly created token event: Log }
string
const { event } = await uplinkClient.sponsorTokenWithETH({ channelAddress: '0x1234567890123456789012345678901234567890', ... })
const { event } = await uplinkClient.sponsorTokenWithETH({ to: '0x1234567890123456789012345678901234567890', ... })
bigint
const { event } = await uplinkClient.sponsorTokenWithETH({ tokenId: 1n, ... })
const { event } = await uplinkClient.sponsorTokenWithETH({ amount: 1n, ... })
const { event } = await uplinkClient.sponsorTokenWithETH({ mintReferral: '0x1234567890123456789012345678901234567890', ... })
const { event } = await uplinkClient.sponsorTokenWithETH ({ data: '0x00...', ... })
TransactionOverrides
type TransactionOverrides = { accessList?: AccessList gas?: bigint maxFeePerGas?: bigint maxPriorityFeePerGas?: bigint nonce?: number value?: bigint }
const { event } = await uplinkClient.sponsorTokenWithETH({ ... transactionOverrides: { value: parseEther('0.000666') } })
const { address, data } = await uplinkClient.calldata.sponsorTokenWithETH({...})
{ address: string, // address of the target contract data: string // calldata for the transaction }
const gas = await uplinkClient.estimateGas.sponsorTokenWithETH({...})
bigint // gas estimate in wei