@volr/react 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,11 +19,8 @@ function App() {
|
|
|
19
19
|
return (
|
|
20
20
|
<VolrProvider
|
|
21
21
|
config={{
|
|
22
|
-
apiBaseUrl: 'https://api.volr.io',
|
|
23
22
|
defaultChainId: 8453,
|
|
24
|
-
|
|
25
|
-
8453: '0x...',
|
|
26
|
-
},
|
|
23
|
+
projectApiKey: 'your-project-api-key',
|
|
27
24
|
}}
|
|
28
25
|
>
|
|
29
26
|
<YourApp />
|
|
@@ -115,10 +112,3 @@ The SDK surfaces these in console for convenience:
|
|
|
115
112
|
- Relay errors: `[volr][relay] developerDiagnostics: ...`
|
|
116
113
|
|
|
117
114
|
Use these to pinpoint which call failed and why (e.g., EOA target, ERC20 returned false, custom revert).
|
|
118
|
-
|
|
119
|
-
## Documentation
|
|
120
|
-
|
|
121
|
-
- **[React Integration Guide](./REACT_INTEGRATION.md)** - Complete guide for integrating Volr React SDK
|
|
122
|
-
- **[Contract Integration Guide](../CONTRACT_INTEGRATION.md)** - Guide for SDK engineers
|
|
123
|
-
- [Volr Documentation](https://docs.volr.io) - Detailed API reference
|
|
124
|
-
|