We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When people come to the app the first pair is an ERC 20 swap to FOX.
we need to change this first land experience to show off the swappers capabilities. Any of these are preferable.
is one liner?
The text was updated successfully, but these errors were encountered:
Absolutely a one-liner-ish!
diff --git a/src/state/slices/tradeInputSlice/tradeInputSlice.ts b/src/state/slices/tradeInputSlice/tradeInputSlice.ts index 5f43ebc15d..8288f08157 100644 --- a/src/state/slices/tradeInputSlice/tradeInputSlice.ts +++ b/src/state/slices/tradeInputSlice/tradeInputSlice.ts @@ -1,5 +1,5 @@ import type { PayloadAction } from '@reduxjs/toolkit' -import { ethAssetId, foxAssetId } from '@shapeshiftoss/caip' +import { btcAssetId, ethAssetId } from '@shapeshiftoss/caip' import { localAssetData } from 'lib/asset-service' import { defaultAsset } from '../assetsSlice/assetsSlice' @@ -14,7 +14,7 @@ export type TradeInputState = { } & TradeInputBaseState const initialState: TradeInputState = { - buyAsset: localAssetData[foxAssetId] ?? defaultAsset, + buyAsset: localAssetData[btcAssetId] ?? defaultAsset, sellAsset: localAssetData[ethAssetId] ?? defaultAsset, sellAccountId: undefined, buyAccountId: undefined,
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When people come to the app the first pair is an ERC 20 swap to FOX.
we need to change this first land experience to show off the swappers capabilities. Any of these are preferable.
is one liner?
The text was updated successfully, but these errors were encountered: