@openfort/openfort-node 0.7.0 → 0.7.2
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/CHANGELOG.md +12 -0
- package/dist/index.d.mts +499 -389
- package/dist/index.d.ts +499 -389
- package/dist/index.js +193 -147
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +185 -143
- package/dist/index.mjs.map +1 -1
- package/examples/.env.example +1 -1
- package/examples/README.md +20 -17
- package/examples/contracts/createContract.ts +3 -3
- package/examples/{iam/pregenerateUser.ts → evm/embedded/pregenerate.ts} +2 -2
- package/examples/exchange/createSwap.ts +2 -1
- package/examples/transactions/createTransactionIntent.ts +13 -8
- package/examples/transactions/estimateGas.ts +14 -4
- package/examples/transactions/getTransactionIntent.ts +14 -3
- package/openapi-auth.json +86 -53
- package/openapi.json +336 -52
- package/package.json +2 -2
- package/examples/contracts/readContract.ts +0 -29
package/openapi-auth.json
CHANGED
|
@@ -258,17 +258,12 @@
|
|
|
258
258
|
"url": "https://api.openfort.io/iam/v2/auth"
|
|
259
259
|
}
|
|
260
260
|
],
|
|
261
|
-
"tags": [
|
|
262
|
-
{
|
|
263
|
-
"name": "Default",
|
|
264
|
-
"description": "Authentication endpoints."
|
|
265
|
-
}
|
|
266
|
-
],
|
|
267
261
|
"paths": {
|
|
268
262
|
"/sign-in/social": {
|
|
269
263
|
"post": {
|
|
270
|
-
"tags": ["
|
|
264
|
+
"tags": ["auth v2"],
|
|
271
265
|
"description": "Sign in with a social provider",
|
|
266
|
+
"summary": "Sign in with a social provider.",
|
|
272
267
|
"operationId": "socialSignIn",
|
|
273
268
|
"security": [
|
|
274
269
|
{
|
|
@@ -521,8 +516,9 @@
|
|
|
521
516
|
},
|
|
522
517
|
"/get-session": {
|
|
523
518
|
"get": {
|
|
524
|
-
"tags": ["
|
|
519
|
+
"tags": ["auth v2"],
|
|
525
520
|
"description": "Get the current session",
|
|
521
|
+
"summary": "Get the current session.",
|
|
526
522
|
"security": [
|
|
527
523
|
{
|
|
528
524
|
"bearerAuth": []
|
|
@@ -665,8 +661,9 @@
|
|
|
665
661
|
},
|
|
666
662
|
"/sign-out": {
|
|
667
663
|
"post": {
|
|
668
|
-
"tags": ["
|
|
664
|
+
"tags": ["auth v2"],
|
|
669
665
|
"description": "Sign out the current user",
|
|
666
|
+
"summary": "Sign out.",
|
|
670
667
|
"security": [
|
|
671
668
|
{
|
|
672
669
|
"bearerAuth": []
|
|
@@ -796,8 +793,9 @@
|
|
|
796
793
|
},
|
|
797
794
|
"/sign-up/email": {
|
|
798
795
|
"post": {
|
|
799
|
-
"tags": ["
|
|
796
|
+
"tags": ["auth v2"],
|
|
800
797
|
"description": "Sign up a user using email and password",
|
|
798
|
+
"summary": "Sign up with email and password.",
|
|
801
799
|
"security": [
|
|
802
800
|
{
|
|
803
801
|
"bearerAuth": []
|
|
@@ -974,8 +972,9 @@
|
|
|
974
972
|
},
|
|
975
973
|
"/sign-in/email": {
|
|
976
974
|
"post": {
|
|
977
|
-
"tags": ["
|
|
975
|
+
"tags": ["auth v2"],
|
|
978
976
|
"description": "Sign in with email and password",
|
|
977
|
+
"summary": "Sign in with email and password.",
|
|
979
978
|
"security": [
|
|
980
979
|
{
|
|
981
980
|
"bearerAuth": []
|
|
@@ -1173,8 +1172,9 @@
|
|
|
1173
1172
|
},
|
|
1174
1173
|
"/forget-password": {
|
|
1175
1174
|
"post": {
|
|
1176
|
-
"tags": ["
|
|
1175
|
+
"tags": ["auth v2"],
|
|
1177
1176
|
"description": "Send a password reset email to the user",
|
|
1177
|
+
"summary": "Forget password.",
|
|
1178
1178
|
"security": [
|
|
1179
1179
|
{
|
|
1180
1180
|
"bearerAuth": []
|
|
@@ -1319,8 +1319,9 @@
|
|
|
1319
1319
|
},
|
|
1320
1320
|
"/reset-password": {
|
|
1321
1321
|
"post": {
|
|
1322
|
-
"tags": ["
|
|
1322
|
+
"tags": ["auth v2"],
|
|
1323
1323
|
"description": "Reset the password for a user",
|
|
1324
|
+
"summary": "Reset password.",
|
|
1324
1325
|
"security": [
|
|
1325
1326
|
{
|
|
1326
1327
|
"bearerAuth": []
|
|
@@ -1457,8 +1458,9 @@
|
|
|
1457
1458
|
},
|
|
1458
1459
|
"/verify-email": {
|
|
1459
1460
|
"get": {
|
|
1460
|
-
"tags": ["
|
|
1461
|
-
"description": "Verify the email of the user",
|
|
1461
|
+
"tags": ["auth v2"],
|
|
1462
|
+
"description": "Verify the email of the user.\nUsually this endpoint is called when user clicks 'Verify email' link from the letter.",
|
|
1463
|
+
"summary": "Verify email.",
|
|
1462
1464
|
"security": [
|
|
1463
1465
|
{
|
|
1464
1466
|
"bearerAuth": []
|
|
@@ -1641,8 +1643,9 @@
|
|
|
1641
1643
|
},
|
|
1642
1644
|
"/send-verification-email": {
|
|
1643
1645
|
"post": {
|
|
1644
|
-
"tags": ["
|
|
1646
|
+
"tags": ["auth v2"],
|
|
1645
1647
|
"description": "Send a verification email to the user",
|
|
1648
|
+
"summary": "Send verification email.",
|
|
1646
1649
|
"security": [
|
|
1647
1650
|
{
|
|
1648
1651
|
"bearerAuth": []
|
|
@@ -1788,7 +1791,9 @@
|
|
|
1788
1791
|
},
|
|
1789
1792
|
"/change-email": {
|
|
1790
1793
|
"post": {
|
|
1791
|
-
"
|
|
1794
|
+
"description": "Change user's email",
|
|
1795
|
+
"summary": "Change email.",
|
|
1796
|
+
"tags": ["auth v2"],
|
|
1792
1797
|
"security": [
|
|
1793
1798
|
{
|
|
1794
1799
|
"bearerAuth": []
|
|
@@ -1953,8 +1958,9 @@
|
|
|
1953
1958
|
},
|
|
1954
1959
|
"/change-password": {
|
|
1955
1960
|
"post": {
|
|
1956
|
-
"tags": ["
|
|
1961
|
+
"tags": ["auth v2"],
|
|
1957
1962
|
"description": "Change the password of the user",
|
|
1963
|
+
"summary": "Change password.",
|
|
1958
1964
|
"security": [
|
|
1959
1965
|
{
|
|
1960
1966
|
"bearerAuth": []
|
|
@@ -2106,8 +2112,9 @@
|
|
|
2106
2112
|
},
|
|
2107
2113
|
"/reset-password/{token}": {
|
|
2108
2114
|
"get": {
|
|
2109
|
-
"tags": ["
|
|
2115
|
+
"tags": ["auth v2"],
|
|
2110
2116
|
"description": "Redirects the user to the callback URL with the token",
|
|
2117
|
+
"summary": "Reset password callback.",
|
|
2111
2118
|
"security": [
|
|
2112
2119
|
{
|
|
2113
2120
|
"bearerAuth": []
|
|
@@ -2245,8 +2252,9 @@
|
|
|
2245
2252
|
},
|
|
2246
2253
|
"/request-password-reset": {
|
|
2247
2254
|
"post": {
|
|
2248
|
-
"tags": ["
|
|
2255
|
+
"tags": ["auth v2"],
|
|
2249
2256
|
"description": "Send a password reset email to the user",
|
|
2257
|
+
"summary": "Request password reset.",
|
|
2250
2258
|
"security": [
|
|
2251
2259
|
{
|
|
2252
2260
|
"bearerAuth": []
|
|
@@ -2391,8 +2399,9 @@
|
|
|
2391
2399
|
},
|
|
2392
2400
|
"/list-sessions": {
|
|
2393
2401
|
"get": {
|
|
2394
|
-
"tags": ["
|
|
2402
|
+
"tags": ["auth v2"],
|
|
2395
2403
|
"description": "List all active sessions for the user",
|
|
2404
|
+
"summary": "List sessions.",
|
|
2396
2405
|
"security": [
|
|
2397
2406
|
{
|
|
2398
2407
|
"bearerAuth": []
|
|
@@ -2510,8 +2519,9 @@
|
|
|
2510
2519
|
},
|
|
2511
2520
|
"/revoke-session": {
|
|
2512
2521
|
"post": {
|
|
2513
|
-
"tags": ["
|
|
2522
|
+
"tags": ["auth v2"],
|
|
2514
2523
|
"description": "Revoke a single session",
|
|
2524
|
+
"summary": "Revoke session.",
|
|
2515
2525
|
"security": [
|
|
2516
2526
|
{
|
|
2517
2527
|
"bearerAuth": []
|
|
@@ -2649,8 +2659,9 @@
|
|
|
2649
2659
|
},
|
|
2650
2660
|
"/revoke-sessions": {
|
|
2651
2661
|
"post": {
|
|
2652
|
-
"tags": ["
|
|
2662
|
+
"tags": ["auth v2"],
|
|
2653
2663
|
"description": "Revoke all sessions for the user",
|
|
2664
|
+
"summary": "Revoke sessions.",
|
|
2654
2665
|
"security": [
|
|
2655
2666
|
{
|
|
2656
2667
|
"bearerAuth": []
|
|
@@ -2782,8 +2793,9 @@
|
|
|
2782
2793
|
},
|
|
2783
2794
|
"/revoke-other-sessions": {
|
|
2784
2795
|
"post": {
|
|
2785
|
-
"tags": ["
|
|
2796
|
+
"tags": ["auth v2"],
|
|
2786
2797
|
"description": "Revoke all other sessions for the user except the current one",
|
|
2798
|
+
"summary": "Revoke other sessions.",
|
|
2787
2799
|
"security": [
|
|
2788
2800
|
{
|
|
2789
2801
|
"bearerAuth": []
|
|
@@ -2915,8 +2927,9 @@
|
|
|
2915
2927
|
},
|
|
2916
2928
|
"/link-social": {
|
|
2917
2929
|
"post": {
|
|
2918
|
-
"tags": ["
|
|
2930
|
+
"tags": ["auth v2"],
|
|
2919
2931
|
"description": "Link a social account to the user",
|
|
2932
|
+
"summary": "Link social account.",
|
|
2920
2933
|
"security": [
|
|
2921
2934
|
{
|
|
2922
2935
|
"bearerAuth": []
|
|
@@ -3117,8 +3130,9 @@
|
|
|
3117
3130
|
},
|
|
3118
3131
|
"/list-accounts": {
|
|
3119
3132
|
"get": {
|
|
3120
|
-
"tags": ["
|
|
3133
|
+
"tags": ["auth v2"],
|
|
3121
3134
|
"description": "List all accounts linked to the user",
|
|
3135
|
+
"summary": "List lined accounts.",
|
|
3122
3136
|
"security": [
|
|
3123
3137
|
{
|
|
3124
3138
|
"bearerAuth": []
|
|
@@ -3274,8 +3288,9 @@
|
|
|
3274
3288
|
},
|
|
3275
3289
|
"/unlink-account": {
|
|
3276
3290
|
"post": {
|
|
3277
|
-
"tags": ["
|
|
3291
|
+
"tags": ["auth v2"],
|
|
3278
3292
|
"description": "Unlink an account",
|
|
3293
|
+
"summary": "Unlink account.",
|
|
3279
3294
|
"security": [
|
|
3280
3295
|
{
|
|
3281
3296
|
"bearerAuth": []
|
|
@@ -3410,8 +3425,9 @@
|
|
|
3410
3425
|
},
|
|
3411
3426
|
"/refresh-token": {
|
|
3412
3427
|
"post": {
|
|
3413
|
-
"tags": ["
|
|
3428
|
+
"tags": ["auth v2"],
|
|
3414
3429
|
"description": "Refresh the access token using a refresh token",
|
|
3430
|
+
"summary": "Refresh access token.",
|
|
3415
3431
|
"security": [
|
|
3416
3432
|
{
|
|
3417
3433
|
"bearerAuth": []
|
|
@@ -3562,8 +3578,9 @@
|
|
|
3562
3578
|
},
|
|
3563
3579
|
"/get-access-token": {
|
|
3564
3580
|
"post": {
|
|
3565
|
-
"tags": ["
|
|
3581
|
+
"tags": ["auth v2"],
|
|
3566
3582
|
"description": "Get a valid access token, doing a refresh if needed",
|
|
3583
|
+
"summary": "Get access token.",
|
|
3567
3584
|
"security": [
|
|
3568
3585
|
{
|
|
3569
3586
|
"bearerAuth": []
|
|
@@ -3714,8 +3731,9 @@
|
|
|
3714
3731
|
},
|
|
3715
3732
|
"/account-info": {
|
|
3716
3733
|
"post": {
|
|
3717
|
-
"tags": ["
|
|
3734
|
+
"tags": ["auth v2"],
|
|
3718
3735
|
"description": "Get the account info provided by the provider",
|
|
3736
|
+
"summary": "Get account info.",
|
|
3719
3737
|
"security": [
|
|
3720
3738
|
{
|
|
3721
3739
|
"bearerAuth": []
|
|
@@ -3877,8 +3895,9 @@
|
|
|
3877
3895
|
},
|
|
3878
3896
|
"/sign-in/anonymous": {
|
|
3879
3897
|
"post": {
|
|
3880
|
-
"tags": ["
|
|
3898
|
+
"tags": ["auth v2"],
|
|
3881
3899
|
"description": "Sign in anonymously",
|
|
3900
|
+
"summary": "Anonymous sign in.",
|
|
3882
3901
|
"security": [
|
|
3883
3902
|
{
|
|
3884
3903
|
"bearerAuth": []
|
|
@@ -4003,8 +4022,9 @@
|
|
|
4003
4022
|
},
|
|
4004
4023
|
"/sign-in/phone-number": {
|
|
4005
4024
|
"post": {
|
|
4006
|
-
"tags": ["
|
|
4025
|
+
"tags": ["auth v2"],
|
|
4007
4026
|
"description": "Use this endpoint to sign in with phone number",
|
|
4027
|
+
"summary": "Sign in with phone.",
|
|
4008
4028
|
"security": [
|
|
4009
4029
|
{
|
|
4010
4030
|
"bearerAuth": []
|
|
@@ -4142,8 +4162,9 @@
|
|
|
4142
4162
|
},
|
|
4143
4163
|
"/phone-number/send-otp": {
|
|
4144
4164
|
"post": {
|
|
4145
|
-
"tags": ["
|
|
4165
|
+
"tags": ["auth v2"],
|
|
4146
4166
|
"description": "Use this endpoint to send OTP to phone number",
|
|
4167
|
+
"summary": "Send OTP to phone number.",
|
|
4147
4168
|
"security": [
|
|
4148
4169
|
{
|
|
4149
4170
|
"bearerAuth": []
|
|
@@ -4280,8 +4301,9 @@
|
|
|
4280
4301
|
},
|
|
4281
4302
|
"/phone-number/verify": {
|
|
4282
4303
|
"post": {
|
|
4283
|
-
"tags": ["
|
|
4304
|
+
"tags": ["auth v2"],
|
|
4284
4305
|
"description": "Use this endpoint to verify phone number",
|
|
4306
|
+
"summary": "Verify phone OTP.",
|
|
4285
4307
|
"security": [
|
|
4286
4308
|
{
|
|
4287
4309
|
"bearerAuth": []
|
|
@@ -4485,8 +4507,9 @@
|
|
|
4485
4507
|
},
|
|
4486
4508
|
"/phone-number/forget-password": {
|
|
4487
4509
|
"post": {
|
|
4488
|
-
"tags": ["
|
|
4510
|
+
"tags": ["auth v2"],
|
|
4489
4511
|
"description": "Request OTP for password reset via phone number",
|
|
4512
|
+
"summary": "Reset password reset with phone(forget password flow).",
|
|
4490
4513
|
"security": [
|
|
4491
4514
|
{
|
|
4492
4515
|
"bearerAuth": []
|
|
@@ -4626,8 +4649,9 @@
|
|
|
4626
4649
|
},
|
|
4627
4650
|
"/phone-number/request-password-reset": {
|
|
4628
4651
|
"post": {
|
|
4629
|
-
"tags": ["
|
|
4652
|
+
"tags": ["auth v2"],
|
|
4630
4653
|
"description": "Request OTP for password reset via phone number",
|
|
4654
|
+
"summary": "Request password reset with phone.",
|
|
4631
4655
|
"security": [
|
|
4632
4656
|
{
|
|
4633
4657
|
"bearerAuth": []
|
|
@@ -4766,8 +4790,9 @@
|
|
|
4766
4790
|
},
|
|
4767
4791
|
"/phone-number/reset-password": {
|
|
4768
4792
|
"post": {
|
|
4769
|
-
"tags": ["
|
|
4793
|
+
"tags": ["auth v2"],
|
|
4770
4794
|
"description": "Reset password using phone number OTP",
|
|
4795
|
+
"summary": "Reset password with phone OTP.",
|
|
4771
4796
|
"security": [
|
|
4772
4797
|
{
|
|
4773
4798
|
"bearerAuth": []
|
|
@@ -4907,8 +4932,9 @@
|
|
|
4907
4932
|
},
|
|
4908
4933
|
"/email-otp/send-verification-otp": {
|
|
4909
4934
|
"post": {
|
|
4910
|
-
"tags": ["
|
|
4935
|
+
"tags": ["auth v2"],
|
|
4911
4936
|
"description": "Send verification OTP",
|
|
4937
|
+
"summary": "Request email verification with OTP.",
|
|
4912
4938
|
"security": [
|
|
4913
4939
|
{
|
|
4914
4940
|
"bearerAuth": []
|
|
@@ -5050,8 +5076,9 @@
|
|
|
5050
5076
|
"/email-otp/check-verification-otp": {
|
|
5051
5077
|
"post": {
|
|
5052
5078
|
"operationId": "checkVerificationOtp",
|
|
5053
|
-
"tags": ["
|
|
5079
|
+
"tags": ["auth v2"],
|
|
5054
5080
|
"description": "Check if a verification OTP is valid",
|
|
5081
|
+
"summary": "Check email OTP.",
|
|
5055
5082
|
"security": [
|
|
5056
5083
|
{
|
|
5057
5084
|
"bearerAuth": []
|
|
@@ -5201,8 +5228,9 @@
|
|
|
5201
5228
|
},
|
|
5202
5229
|
"/email-otp/verify-email": {
|
|
5203
5230
|
"post": {
|
|
5204
|
-
"tags": ["
|
|
5231
|
+
"tags": ["auth v2"],
|
|
5205
5232
|
"description": "Verify email with OTP",
|
|
5233
|
+
"summary": "Verify email with OTP.",
|
|
5206
5234
|
"security": [
|
|
5207
5235
|
{
|
|
5208
5236
|
"bearerAuth": []
|
|
@@ -5354,8 +5382,9 @@
|
|
|
5354
5382
|
},
|
|
5355
5383
|
"/sign-in/email-otp": {
|
|
5356
5384
|
"post": {
|
|
5357
|
-
"tags": ["
|
|
5385
|
+
"tags": ["auth v2"],
|
|
5358
5386
|
"description": "Sign in with OTP",
|
|
5387
|
+
"summary": "Sign in with email OTP.",
|
|
5359
5388
|
"security": [
|
|
5360
5389
|
{
|
|
5361
5390
|
"bearerAuth": []
|
|
@@ -5501,8 +5530,9 @@
|
|
|
5501
5530
|
},
|
|
5502
5531
|
"/forget-password/email-otp": {
|
|
5503
5532
|
"post": {
|
|
5504
|
-
"tags": ["
|
|
5533
|
+
"tags": ["auth v2"],
|
|
5505
5534
|
"description": "Send a password reset OTP to the user",
|
|
5535
|
+
"summary": "Request password reset with email OTP.",
|
|
5506
5536
|
"security": [
|
|
5507
5537
|
{
|
|
5508
5538
|
"bearerAuth": []
|
|
@@ -5640,8 +5670,9 @@
|
|
|
5640
5670
|
},
|
|
5641
5671
|
"/email-otp/reset-password": {
|
|
5642
5672
|
"post": {
|
|
5643
|
-
"tags": ["
|
|
5673
|
+
"tags": ["auth v2"],
|
|
5644
5674
|
"description": "Reset user password with OTP",
|
|
5675
|
+
"summary": "Reset password with email OTP.",
|
|
5645
5676
|
"security": [
|
|
5646
5677
|
{
|
|
5647
5678
|
"bearerAuth": []
|
|
@@ -5781,8 +5812,9 @@
|
|
|
5781
5812
|
},
|
|
5782
5813
|
"/siwe/nonce": {
|
|
5783
5814
|
"post": {
|
|
5784
|
-
"tags": ["
|
|
5815
|
+
"tags": ["auth v2"],
|
|
5785
5816
|
"description": "Generate a nonce for Sign-In With Ethereum (SIWE) authentication",
|
|
5817
|
+
"summary": "Initialize SIWE login.",
|
|
5786
5818
|
"security": [
|
|
5787
5819
|
{
|
|
5788
5820
|
"bearerAuth": []
|
|
@@ -5886,8 +5918,9 @@
|
|
|
5886
5918
|
},
|
|
5887
5919
|
"/siwe/verify": {
|
|
5888
5920
|
"post": {
|
|
5889
|
-
"tags": ["
|
|
5921
|
+
"tags": ["auth v2"],
|
|
5890
5922
|
"description": "Verify a signed SIWE message and authenticate the user",
|
|
5923
|
+
"summary": "Login with SIWE.",
|
|
5891
5924
|
"security": [
|
|
5892
5925
|
{
|
|
5893
5926
|
"bearerAuth": []
|
|
@@ -6035,8 +6068,8 @@
|
|
|
6035
6068
|
},
|
|
6036
6069
|
"/link-siwe/nonce": {
|
|
6037
6070
|
"post": {
|
|
6038
|
-
"tags": ["
|
|
6039
|
-
"summary": "
|
|
6071
|
+
"tags": ["auth v2"],
|
|
6072
|
+
"summary": "Initialize SIWE link.",
|
|
6040
6073
|
"description": "Generates a cryptographically secure nonce for creating a SIWE message to link a wallet to the current authenticated user. Requires active session.",
|
|
6041
6074
|
"security": [
|
|
6042
6075
|
{
|
|
@@ -6141,8 +6174,8 @@
|
|
|
6141
6174
|
},
|
|
6142
6175
|
"/link-siwe/verify": {
|
|
6143
6176
|
"post": {
|
|
6144
|
-
"tags": ["
|
|
6145
|
-
"summary": "Verify and link SIWE wallet",
|
|
6177
|
+
"tags": ["auth v2"],
|
|
6178
|
+
"summary": "Verify and link SIWE wallet.",
|
|
6146
6179
|
"description": "Verifies the SIWE signature and links the wallet to the currently authenticated user. Requires active session.",
|
|
6147
6180
|
"security": [
|
|
6148
6181
|
{
|
|
@@ -6316,8 +6349,8 @@
|
|
|
6316
6349
|
},
|
|
6317
6350
|
"/link-siwe/list-wallets": {
|
|
6318
6351
|
"get": {
|
|
6319
|
-
"tags": ["
|
|
6320
|
-
"summary": "List linked wallets",
|
|
6352
|
+
"tags": ["auth v2"],
|
|
6353
|
+
"summary": "List linked wallets.",
|
|
6321
6354
|
"description": "Get all SIWE wallets linked to the authenticated user with full wallet metadata including primary status and chain information. Requires active session.",
|
|
6322
6355
|
"security": [
|
|
6323
6356
|
{
|
|
@@ -6410,8 +6443,8 @@
|
|
|
6410
6443
|
},
|
|
6411
6444
|
"/link-siwe/unlink": {
|
|
6412
6445
|
"post": {
|
|
6413
|
-
"tags": ["
|
|
6414
|
-
"summary": "Unlink SIWE wallet",
|
|
6446
|
+
"tags": ["auth v2"],
|
|
6447
|
+
"summary": "Unlink SIWE wallet.",
|
|
6415
6448
|
"description": "Remove a linked wallet from the authenticated user account. If the wallet being unlinked is the primary wallet, another wallet will be automatically promoted to primary. Requires active session.",
|
|
6416
6449
|
"security": [
|
|
6417
6450
|
{
|