feat(wallet)_: Add base chain support to on ramp (#6343)

This commit adds Base chain support to on-ramp providers

Signed-off-by: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com>
This commit is contained in:
Mohamed Javid 2025-02-14 18:31:41 +05:30 committed by GitHub
parent 747f73e6b1
commit b6b2597457
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ import (
) )
const mercuryoID = "mercuryo" const mercuryoID = "mercuryo"
const mercuryioNoFeesBaseURL = "https://exchange.mercuryo.io/?type=buy&networks=ETHEREUM,ARBITRUM,OPTIMISM&currency=ETH" const mercuryioNoFeesBaseURL = "https://exchange.mercuryo.io/?type=buy&networks=ETHEREUM,ARBITRUM,OPTIMISM,BASE&currency=ETH"
const supportedAssetsUpdateInterval = 24 * time.Hour const supportedAssetsUpdateInterval = 24 * time.Hour
type MercuryoProvider struct { type MercuryoProvider struct {

View File

@ -8,7 +8,7 @@ import (
) )
const rampID = "ramp" const rampID = "ramp"
const rampSiteURL = "https://app.ramp.network/?hostApiKey=zrtf9u2uqebeyzcs37fu5857tktr3eg9w5tffove&hostAppName=Status&swapAsset=ETH_*,ARBITRUM_*,OPTIMISM_*" const rampSiteURL = "https://app.ramp.network/?hostApiKey=zrtf9u2uqebeyzcs37fu5857tktr3eg9w5tffove&hostAppName=Status&swapAsset=ETH_*,ARBITRUM_*,OPTIMISM_*,BASE_*"
type RampProvider struct{} type RampProvider struct{}