Add a new fiat onboarding option via MoonPay (#13934)
parent
64d35458b0
commit
95f830438a
@ -1 +1,2 @@ |
||||
export const TRANSAK_API_KEY = '25ac1309-a49b-4411-b20e-5e56c61a5b1c'; // It's a public key, which will be included in a URL for Transak.
|
||||
export const MOONPAY_API_KEY = 'pk_live_WbCpe6PxSIcGPCSd6lKCbJNRht7uy'; // Publishable key.
|
||||
|
@ -1,2 +1,2 @@ |
||||
export const METASWAP_BASE_URL = 'https://api2.metaswap.codefi.network'; |
||||
export const METASWAP_BASE_URL = 'https://swap.metaswap.codefi.network'; |
||||
export const GAS_API_URL = 'https://gas-api.metaswap.codefi.network'; |
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,11 @@ |
||||
import React from 'react'; |
||||
|
||||
import { renderWithProvider } from '../../../../test/jest'; |
||||
import LogoMoonPay from './logo-moonpay'; |
||||
|
||||
describe('LogoMoonPay', () => { |
||||
it('renders the LogoMoonPay component', () => { |
||||
const { container } = renderWithProvider(<LogoMoonPay />); |
||||
expect(container).toMatchSnapshot(); |
||||
}); |
||||
}); |
Loading…
Reference in new issue