Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@permissionless/wagmi
Advanced tools
import { PermissionlessProvider } from "@permissionless/wagmi"; // [!code ++] // [!code focus]
function Main() {
return (
<WagmiProvider config={config}>
<QueryClientProvider client={queryClient}>
<PermissionlessProvider // [!code ++] // [!code focus]
capabilities={capabilities} // [!code ++] // [!code focus]
>
// [!code ++] // [!code focus]
{/** ... */}
</PermissionlessProvider>{" "}
// [!code ++] // [!code focus]
</QueryClientProvider>
</WagmiProvider>
);
}
import { useSendTransaction, useWaitForTransactionReceipt } from "wagmi" // [!code --] // [!code focus]
import { // [!code ++] // [!code focus]
useSendTransaction, // [!code ++] // [!code focus]
useWaitForTransactionReceipt // [!code ++] // [!code focus]
} from "@permissionless/wagmi" // [!code ++] // [!code focus]
function App() {
const {
sendTransaction, // [!code focus]
data: transactionReference,
isPending
} = useSendTransaction() // [!code focus]
const { data: receipt, isPending: isReceiptPending } = // [!code focus]
useWaitForTransactionReceipt({ // [!code focus]
hash: "0x1234" // [!code --] // [!code focus]
id: transactionReference // [!code ++] // [!code focus]
}) // [!code focus]
const sendTransactionCallback = useCallback(async () => {
console.log("Sending transaction...")
sendTransaction({ // [!code focus]
to: "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", // [!code focus]
data: "0x1234" // [!code focus]
}) // [!code focus]
}, [sendTransaction])
}
And that's it!
@permissionless/wagmi
is designed to be a thin
wrapper around wagmi, maintaining the same style and overall feel wagmi
provides.The source code for @permissionless/wagmi
is available on
GitHub
@permissionless/wagmi
is distributed under an MIT License.
We welcome contributions from the community. If you would like to contribute, please open an issue or a pull request.
Feel free to ask any questions in our Telegram group
FAQs
A utility library for working with ERC-4337
The npm package @permissionless/wagmi receives a total of 208 weekly downloads. As such, @permissionless/wagmi popularity was classified as not popular.
We found that @permissionless/wagmi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.