Skip to content

Commit

Permalink
feat(wallet)_: Add base chain support to on ramp (#6343)
Browse files Browse the repository at this point in the history
This commit adds Base chain support to on-ramp providers

Signed-off-by: Mohamed Javid <19339952+smohamedjavid@users.noreply.github.com>
  • Loading branch information
smohamedjavid authored Feb 14, 2025
1 parent 747f73e commit b6b2597
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion services/wallet/onramp/provider_mercuryo.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
)

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

type MercuryoProvider struct {
Expand Down
2 changes: 1 addition & 1 deletion services/wallet/onramp/provider_ramp.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

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{}

Expand Down

0 comments on commit b6b2597

Please sign in to comment.