Discussions

Ask a Question
ANSWERED

How to integrate whitelabel ?

I want native integration and whitelabel integration
ANSWERED

What cluster should we use when working with Pusher Websockets?

The public API key is listed but there is no info on the cluster provided which is needed for Pusher Websockets to work
ANSWERED

`Add New Card` page not working in staging version

Hi Transak team! I was trying to test integration of the transak onramp into my dapp at staging environment. But after the short KYC, select the fiat & Cryptocurrency, destination wallet, etc... I can't add a new card. The page going round and round in circles, and I can't go to next steps. Can you please identify the issues and provide the solution? Best [block:image] { "images": [ { "image": [ "https://prnt.sc/gDActXOeYxB5", null, "Screenshot" ], "align": "left", "sizing": "499px", "border": true } ] } [/block]
ANSWERED

`Add New Card` page not working in staging version

I was trying to test integration of the transak onramp into my dapp at staging environment. But after the short KYC, select the fiat & Cryptocurrency, destination wallet, etc... I can't add a new card. The page going round and round in circles, and I can't go to next steps. Can you please identify the issues and provide the solution? Best Attached the [Screenshot](https://prnt.sc/gDActXOeYxB5)
ANSWERED

where is my money I wired in with you?

Where is my money I deposited with you? Evolve Bank and Trust Earnings with Juno Top Spend Cashback $0.00 / $25.00 Bonus Bonus Earned $0.00 Recent Transactions Transaction Transfer to transak - $1,500.00 a day ago Transaction RICHARD ARRIGHI - $1,500.0
ANSWERED

Is there any option to pass multiple wallet address for one purchase?

Hi all, I am trying to purchase the USDC or other stable coins via transak inside our app embed. The problem is I have to split the USDC into multiple wallet addresses from one purchase. Is there any option to let the users can provide the multiple wallet addresses for one transaction? I was thinking about the `walletAddressData` Query params option, but it doesn't seem to be working. Best
ANSWERED

transaction échoué

j'aimerai savoir pourquoi ma transaction échoue toujours quand j'achete des ETH
ANSWERED

NFT Checkout

I need guide for NFT check out please show how do I implement nft check out via webview in react native.
ANSWERED

Where can I find out the jwt?

I am trying to decrypt the Webhook data via Access token. I can get the Access token from transak, but not sure where I can get the JWT to verify the data. This is my code snippets. ```javascript javascript // Get Access Token const accessToken = await getAccessToken(); console.log("======================= Access Token ======================", accessToken); if (!accessToken) { // Return response with error res.status(400).json({ error: 'Failed to get Access Token.' }) } // Verify the request is coming from Transak const payload = jwt.verify(req.body.data, accessToken); ``` This code shows me the error. ```markdown ======================= Access Token ====================== eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJBUElfS0VZIjoiY2RlMzVjODktMjViZS00ODE1LWEzMzUtMTAwN2E3NmY4OTUxIiwiaWF0IjoxNjkwMjIwMDU0LCJleHAiOjE2OTA4MjQ4NTR9.hwphSo3iLsw-RzHNzx6QAUCRmoETLhQ8GqUbqo9SSKw JsonWebTokenError: jwt must be provided ``` Can you please give me advice? Best
ANSWERED

Integrate webhook

Hello, I've integrated webhook check like you present here: <https://docs.transak.com/docs/webhooks>, especially this part: let accessToken = 'YOUR_ACCESS_TOKEN'; let decodedData = jwt.verify(body.data, accessToken); where I get a new access token right before verifying the data. However, the jwt.verify call always fails with "invalid signature". Can you check with me?