A react context to provide information to the various paper components
Before using lower level components such as PayWithCard
or VerifyOwnershipWithpaper
, be sure to wrap your app in the PaperSDKProvider
.
This ensures that the Paper components share common data instead of passing the same props around.
return (
<PaperSDKProvider
// Required: string
chainName="Polygon"
>
<App />
</PaperSDKProvider>
);