-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
[SPE-246] Add support for EVM wallets, separate source and destination wallets #51
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
"@wagmi/core", | ||
"@wagmi/connectors", | ||
"viem", | ||
"abitype", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is all just due to weird CJS vs ESM interactions when running Jest. I think I'm going to add a task to migrate to vitest since it doesn't have these problems and I've had a good experience with it in the skip-router repo
src/solve/context.tsx
Outdated
@@ -18,7 +18,7 @@ export const SkipContext = createContext< | |||
export const SkipProvider: FC<PropsWithChildren> = ({ children }) => { | |||
const { client: walletClient } = useWalletClient(); | |||
|
|||
const skipClient = new SkipRouter(SKIP_API_URL, { | |||
const skipClient = new SkipRouter("https://solve-dev.skip.money", { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thoughts on moving to env based vars?
Remove Chain context
Finish evm integration
This PR does not address: getting EVM asset balances, making EVM transactions, anything other than connecting your wallet.