Skip to content

Commit 98476fe

Browse files
committed
Merge branch 'main' into sdk-new-structure
2 parents 360383d + 0af3572 commit 98476fe

File tree

85 files changed

+7569
-4461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+7569
-4461
lines changed

docusaurus.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ const config = {
207207
sidebarCollapsed: false,
208208
includeCurrentVersion: true,
209209
// Set to the latest release.
210-
lastVersion: '0.13.0',
210+
lastVersion: '0.1.0',
211211
versions: {
212212
// Defaults to the ./docs folder.
213213
// Using "development" instead of "next" as path.
@@ -216,8 +216,8 @@ const config = {
216216
path: 'development',
217217
},
218218
// The latest release.
219-
'0.13.0': {
220-
label: 'latest (0.13.0)',
219+
'0.1.0': {
220+
label: 'latest (0.1.0)',
221221
},
222222
},
223223
},

embedded-wallets/dashboard/advanced/key-export.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Private key export functionality allows applications to retrieve users' private
2525

2626
**Programmatic Export (Configurable):**
2727

28-
- Access via `eth_private_key` JSON-RPC method
28+
- Access via `private_key` JSON-RPC method
2929
- Requires explicit user consent
3030
- Can be enabled/disabled per project
3131
- Controlled through dashboard settings
@@ -70,7 +70,7 @@ if ((await web3auth.status) !== 'connected') {
7070
// Request private key (requires user consent)
7171
try {
7272
const privateKey = await web3auth.provider.request({
73-
method: 'eth_private_key',
73+
method: 'private_key',
7474
})
7575

7676
// Handle the private key securely
@@ -99,7 +99,7 @@ class SecureKeyManager {
9999

100100
// Retrieve private key
101101
const privateKey = await web3auth.provider.request({
102-
method: 'eth_private_key',
102+
method: 'private_key',
103103
})
104104

105105
// Process key securely (encrypt, transmit, etc.)

0 commit comments

Comments
 (0)