Revert "Circleci project setup" - #94
Conversation
This reverts commit c5ca6c2.
Reviewer's guide (collapsed on small PRs)Reviewer's GuideReverts the previously added MiniKit playground signup, transaction utilities, and template support by deleting the associated hooks, utilities, tests, templates, and signup-related playground state/UI configuration. Class diagram for updated AppProvider context state (class diagram)classDiagram
class State {
number chainId
Record~number,PaymasterConfig~ paymasters
string nftToken
boolean isSponsored
Address vaultAddress
setChainId(chainId number) void
setPaymasters(paymasters Record~number,PaymasterConfig~) void
setNFTToken(nftToken string) void
setIsSponsored(isSponsored boolean) void
setVaultAddress(vaultAddress Address) void
}
class PaymasterConfig {
string url
}
class AppProvider {
ReactNode children
+AppProvider(props ReactNode) void
}
class AppContext {
<<context>>
}
class OnchainKitProvider {
+OnchainKitProvider(config OnchainKitConfig) void
}
class OnchainKitConfig {
number chainId
string apiKey
string rpcUrl
string paymaster
WalletConfig wallet
}
class WalletConfig {
string display
string termsUrl
string privacyUrl
SupportedWallets supportedWallets
}
class SupportedWallets {
boolean coinbaseSmartWallet
boolean coinbaseWallet
boolean embeddedWallet
}
AppProvider --> AppContext : provides
AppProvider --> State : uses
AppProvider --> OnchainKitProvider : wraps
OnchainKitProvider --> OnchainKitConfig : configured_by
OnchainKitConfig --> WalletConfig : has
WalletConfig --> SupportedWallets : has
State --> PaymasterConfig : uses
class RemovedSignupConfig {
boolean isSignUpEnabled
setIsSignUpEnabled(isSignUpEnabled boolean) void
boolean signUpEnabled
}
RemovedSignupConfig .. AppProvider : removed_from
RemovedSignupConfig .. WalletConfig : removed_from
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Summary of ChangesHello @Dargon789, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request performs a complete revert of a previous change, specifically PR #43, which was related to 'Circleci project setup'. The revert effectively removes several experimental features and template configurations that were introduced. This includes an experimental Wagmi hook for batching transactions, various MiniKit template files, a UUID generation utility, and a wallet sign-up enablement feature from the playground. The primary objective is to undo these additions, likely to streamline the codebase or remove features that were not ready for integration. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request reverts the 'Circleci project setup' changes from PR #43. The changes primarily involve removing files and functionality related to MiniKit templates, Farcaster integration, the useWriteContracts hook, and a crypto utility. The modifications in the playground and test files are consistent with these removals. The revert appears clean based on the provided changes.
Reverts #43
Summary by Sourcery
Revert previously added MiniKit and playground features and associated templates and utilities.
Enhancements:
Documentation:
Tests:
Chores: