Overview
Displaying your Terms of Service and Privacy Policy are an important step of customer onboarding. We give you the flexibility to display those two documents in our SDK or you can hide the links and display them somewhere else in your site.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 Stablecoin Accounts are live! Learn more

<DynamicContextProvider
settings={{
environmentId: "1234abcd-1234-abcd-1234-abcd12343abc",
appName: "My Cool App",
appLogoUrl: "..."
apiBaseUrl: "https://app.dynamic.xyz/api/v0",
privacyPolicyUrl: "https://example.com/policies/privacy-policy",
termsOfServiceUrl: "https://example.com/policies/terms-of-service",
...
}}
>
<DynamicContextProvider
settings={{
environmentId: "1234abcd-1234-abcd-1234-abcd12343abc",
appName: "My Cool App",
appLogoUrl: "..."
apiBaseUrl: "https://app.dynamic.xyz/api/v0",
displaySiweStatement: false,
...
}}
>
<DynamicContextProvider
settings={{
environmentId: '2995b456-45c1-4326-af24-5f9fca2214cf',
walletConnectors: [ EthereumWalletConnectors ],
policiesConsentInnerComponent: (
<div>
<p>
By checking this box, you agree to our{' '}
<a href="https://www.dynamic.xyz/terms-of-service" target="_blank">
Terms of Service
</a>{' '}
and{' '}
<a href="https://www.dynamic.xyz/privacy-policy" target="_blank">
Privacy Policy
</a>
.
</p>
</div>
)
}}
>
{children}
</DynamicContextProvider>
Was this page helpful?