TSN SDK Integration
constrecipient = await tsn.identity.resolve({
identifier: "4872193041",
type: "tin"
});
constquote = await tsn.payments.quote({
recipientTIN: recipient.tin,
amount: 100_000_000,
mint: USDC_MINT
});
constintent = await tsn.payments.createIntent({
quoteId: quote.id,
senderWallet: wallet.publicKey
});