-
Notifications
You must be signed in to change notification settings - Fork 4
/
nav.ts
967 lines (953 loc) · 38.6 KB
/
nav.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
import type { Sidebar, TopNav } from 'vocs'
export const topNav = [
{
text: 'Solutions',
items: [
{
text: 'Sequence Builder',
link: '/solutions/builder/overview',
match: '/solutions/builder/overview',
},
{
text: 'Onboard',
link: '/solutions/wallets/overview',
match: '/solutions/wallets/overview',
},
{
text: 'Monetize',
link: '/solutions/monetization-overview',
match: '/solutions/monetization-overview',
},
{ text: 'Power', link: '/solutions/power-overview', match: '/solutions/power-overview' },
// { text: 'Chain Support', link: '/solutions/technical-references/chain-support', match: '/solutions/technical-references/chain-support' },
],
},
{
text: 'Resources',
items: [
{ text: 'Guides', link: '/guides/guide-overview', match: '/guides/guide-overview' },
{ text: 'Templates', link: '/guides/template-overview', match: '/guides/template-overview' },
],
},
{
text: 'SDKs',
items: [
{ text: 'Unity', link: '/sdk/unity/overview', match: '/sdk/unity/overview' },
{ text: 'Unreal', link: '/sdk/unreal/introduction', match: '/sdk/unreal/introduction' },
{
text: 'React',
link: '/solutions/wallets/sequence-kit/overview',
match: '/solutions/wallets/sequence-kit/overview',
},
{
text: 'Typescript',
link: '/sdk/typescript/guides/overview',
match: '/sdk/typescript/guides/overview',
},
{ text: 'Go', link: '/sdk/go/overview', match: '/sdk/go/overview' },
// { text: 'Android', link: '/sdk/android', match: '/sdk/android' },
{ text: 'Mobile', link: '/sdk/mobile', match: '/sdk/mobile' },
// { text: 'iOS', link: '/sdk/iOS', match: '/sdk/iOS' }
],
},
// replace links.
{
text: 'APIs',
items: [
{
text: 'Transactions API',
link: '/api/transactions/overview',
match: '/api/transactions/overview',
},
{ text: 'Analytics API', link: '/api/analytics/overview', match: '/api/analytics/overview' },
{ text: 'Indexer API', link: '/api/indexer/overview', match: '/api/indexer/overview' },
{ text: 'Metadata API', link: '/api/metadata/overview', match: '/api/metadata/overview' },
{
text: 'Marketplace API',
link: '/api/marketplace/overview',
match: '/api/marketplace/overview',
},
{
text: 'Infrastructure API',
link: '/api/infrastructure/overview',
match: '/api/infrastructure/overview',
},
{ text: 'Node Gateway', link: '/api/node-gateway', match: '/api/node-gateway' },
],
},
{
text: 'Support',
items: [
{ text: 'Support', link: '/support' },
{ text: 'Changelog', link: 'https://0xsequence.featurebase.app/' },
{ text: 'Restricted Regions', link: '/support/restricted-regions' },
{ text: 'Token Directory', link: '/support/token-directory' },
{ text: 'FAQ', link: 'https://support.sequence.xyz' },
{ text: 'Discord', link: 'https://discord.gg/sequence' },
{ text: "We're hiring!", link: 'https://horizon.io/careers' },
{ text: 'Contact Us', link: 'https://support.sequence.xyz' },
],
},
] as TopNav
export const sidebar = {
// Overview
'/solutions': [
{
text: 'Overview',
link: '/solutions/builder/overview',
},
{
text: 'Getting Started',
link: '/solutions/builder/getting-started',
},
{
text: 'Onboard',
items: [
{ text: 'Overview', link: '/solutions/wallets/overview' },
{
text: 'Embedded Wallet',
collapsed: false,
items: [
{ text: 'Overview', link: '/solutions/wallets/embedded-wallet/overview' },
{ text: 'Quickstart', link: '/solutions/wallets/embedded-wallet/quickstart' },
{
text: 'Setup',
collapsed: true,
items: [
{ text: 'Configuration', link: '/solutions/builder/embedded-wallet' },
{
text: 'Google Setup',
link: '/solutions/builder/embedded-wallet/google-configuration',
},
{
text: 'Apple Setup',
link: '/solutions/builder/embedded-wallet/apple-configuration',
},
{
text: 'PlayFab Setup',
link: '/solutions/builder/embedded-wallet/playfab-configuration',
},
{
text: 'Stytch Setup',
link: '/solutions/builder/embedded-wallet/stytch-configuration',
},
{
text: 'Guest Wallet Setup',
link: '/solutions/builder/embedded-wallet/guest-wallet-configuration',
},
],
},
{
text: 'Examples',
collapsed: true,
items: [
{
text: 'Authentication',
link: '/solutions/wallets/embedded-wallet/examples/authentication',
},
{
text: 'Use Wallets',
link: '/solutions/wallets/embedded-wallet/examples/use-wallets',
},
{
text: 'Account Federation',
link: '/solutions/wallets/embedded-wallet/examples/account-federation',
},
{
text: 'Manage Sessions',
link: '/solutions/wallets/embedded-wallet/examples/manage-sessions',
},
{ text: 'On-ramp', link: '/solutions/wallets/embedded-wallet/examples/on-ramp' },
{
text: 'Fee Options',
link: '/solutions/wallets/embedded-wallet/examples/fee-options',
},
{
text: 'Token Verification',
link: '/solutions/wallets/embedded-wallet/examples/verification',
},
{
text: 'Transaction Receipts',
link: '/solutions/wallets/embedded-wallet/examples/transaction-receipts',
},
],
},
{
text: 'Architecture',
collapsed: true,
items: [
{
text: 'Overview',
link: '/solutions/wallets/embedded-wallet/architecture/overview',
},
{
text: 'Action Payloads',
link: '/solutions/wallets/embedded-wallet/architecture/action-payloads',
},
{
text: 'Response Payloads',
link: '/solutions/wallets/embedded-wallet/architecture/response-payloads',
},
{
text: 'Trust Contract Recovery Flow',
link: '/solutions/wallets/embedded-wallet/architecture/trust-contract-recovery-flow',
},
{
text: 'Enclave Verification',
link: '/solutions/wallets/embedded-wallet/architecture/enclave-verification',
},
{
text: 'Intents',
link: '/solutions/wallets/embedded-wallet/architecture/intents',
},
],
},
{
text: 'Migrating to Sequence',
link: '/solutions/wallets/embedded-wallet/migration',
},
{ text: 'FAQ', link: '/solutions/wallets/embedded-wallet/faq' },
],
},
{
text: 'Sequence Kit',
collapsed: false,
items: [
{ text: 'Overview', link: '/solutions/wallets/sequence-kit/overview' },
{ text: 'Quickstart', link: '/solutions/wallets/sequence-kit/getting-started' },
{
text: 'Custom Configuration',
link: '/solutions/wallets/sequence-kit/custom-configuration',
},
{
text: 'Sequence Pay',
collapsed: false,
items: [
{ text: 'Checkout', link: '/solutions/wallets/sequence-kit/checkout' },
{ text: 'Smart Swaps', link: '/solutions/wallets/sequence-kit/smart-swaps' },
{ text: 'On-ramp', link: '/solutions/wallets/sequence-kit/on-ramp' },
],
},
{
text: 'Custom Connectors',
link: '/solutions/wallets/sequence-kit/custom-connectors',
},
],
},
{
text: 'Wallet Linking',
collapsed: true,
items: [
{ text: 'Overview', link: '/solutions/wallets/link-wallets/overview' },
{
text: 'Integration Guide',
link: '/solutions/wallets/link-wallets/integration-guide',
},
],
},
{
text: 'Universal Wallet',
collapsed: true,
items: [
{ text: 'Overview', link: '/solutions/wallets/universal-wallet/overview' },
{ text: 'Quickstart', link: '/solutions/wallets/universal-wallet/quickstart' },
{
text: 'Examples',
collapsed: true,
items: [
{
text: 'Connect Wallet',
link: '/solutions/wallets/universal-wallet/examples/connect-wallet',
},
{
text: 'Authenticate Users with Message Signature',
link: '/solutions/wallets/universal-wallet/examples/auth-address',
},
{
text: 'Signing & Verifying Messages',
link: '/solutions/wallets/universal-wallet/examples/sign-message',
},
{
text: 'No-wallet confirmation signatures',
link: '/solutions/wallets/universal-wallet/examples/session-keys',
},
{
text: 'Sending Transactions',
link: '/solutions/wallets/universal-wallet/examples/send-transaction',
},
{
text: 'Sending ERC-20 Tokens',
link: '/solutions/wallets/universal-wallet/examples/send-erc20',
},
{
text: 'Sending ERC-721 (NFT) Tokens',
link: '/solutions/wallets/universal-wallet/examples/send-erc721',
},
{
text: 'Sending ERC-1155 (Collectible) Tokens',
link: '/solutions/wallets/universal-wallet/examples/send-erc1155',
},
{
text: 'Sending a Batch of Transactions',
link: '/solutions/wallets/universal-wallet/examples/send-batch-transactions',
},
{
text: 'Building Backends with Sequence',
link: '/solutions/wallets/universal-wallet/examples/building-backends',
},
],
},
// {text: 'Sequence Kit', link: '/solutions/wallets/universal-wallet/sequence-kit'},
{ text: 'Supported Platforms', link: '/solutions/wallets/universal-wallet/platforms' },
{ text: 'Fiat On-Ramps', link: '/solutions/wallets/universal-wallet/fiat-on-ramps' },
{ text: 'Key Management', link: '/solutions/wallets/universal-wallet/key-management' },
],
},
],
},
{
text: 'Monetize',
// collapsed: true,
items: [
{ text: 'Overview', link: '/solutions/monetization-overview' },
{
text: 'Marketplaces',
collapsed: true,
items: [
{
text: 'White-label Marketplace',
collapsed: true,
items: [
{
text: 'Overview',
link: '/solutions/marketplaces/white-label-marketplace/overview',
collapsed: true,
},
{
text: 'Guide',
link: '/solutions/marketplaces/white-label-marketplace/guide',
collapsed: true,
},
{
text: 'Video Walkthrough',
link: '/solutions/marketplaces/white-label-marketplace/video-walkthrough',
collapsed: true,
},
],
},
{
text: 'Build your Custom Marketplace',
collapsed: true,
items: [
{ text: 'Overview', link: '/solutions/marketplaces/orderbook/overview' },
{ text: 'Starter Template', link: '/solutions/marketplaces/orderbook/starter' },
],
},
],
},
{
text: 'Sequence Pay',
collapsed: false,
items: [
{
text: 'Overview',
link: '/solutions/payments/overview',
},
{ text: 'Checkout', link: '/solutions/wallets/sequence-kit/checkout' },
{ text: 'Smart Swaps', link: '/solutions/wallets/sequence-kit/smart-swaps' },
{ text: 'On-ramp', link: '/solutions/wallets/sequence-kit/on-ramp' },
],
},
],
},
{
text: 'Power',
items: [
{ text: 'Overview', link: '/solutions/power-overview' },
{
text: 'Deployable Contracts',
collapsed: true,
items: [
{ text: 'Overview', link: '/solutions/builder/contracts' },
{
text: 'Deploy a Collectible Contract',
link: '/solutions/collectibles/contracts/deploy-an-item-collection',
},
// {text: 'Mint In-Game Items and Achievements (ERC1155)', link: '/solutions/collectibles/contracts/900-mint-items-from-ERC1155'},
// {text: 'Mint Digital Collectibles (ERC721)', link: '/solutions/collectibles/contracts/902-mint-collectibles-from-ERC721'},
{
text: 'Deploy an In-Game Currency (ERC20)',
link: '/solutions/collectibles/contracts/deploy-ERC20-currency',
},
{
text: 'Deploy a Soulbound Token Contract',
link: '/solutions/collectibles/contracts/deploy-soulbound-token',
},
{
text: 'Deploy a Primary Sales Contract',
link: '/solutions/collectibles/contracts/deploy-primary-sales-contract',
},
],
},
{
text: 'Manage Collections',
link: '/solutions/builder/collections',
},
{
text: 'Querying Blockchain Data',
collapsed: false,
items: [
{ text: 'Indexer', link: '/solutions/builder/indexer' },
{ text: 'Webhooks', link: '/solutions/builder/webhooks' },
],
},
{
text: 'Transaction Manager',
link: '/solutions/transaction-manager/overview',
},
{
text: 'Analytics',
link: '/solutions/builder/analytics',
},
{
text: 'Gas Sponsorship',
link: '/solutions/builder/gas-tank',
},
{
text: 'Node Gateway',
link: '/solutions/builder/node-gateway',
},
// { text: 'Minter', link: '/solutions/minter' }
],
},
// {
// text: 'Sequence Builder',
// link: '/solutions/builder/overview',
// match: '/solutions/builder/overview',
// },
{
text: 'Technical References',
items: [
{ text: 'Chain Support', link: '/solutions/technical-references/chain-support' },
// { text: 'EIP5189 vs. 4337', link: '/solutions/technical-references/5189-4337' },
{
text: 'Why Smart Contract Wallets?',
link: '/solutions/technical-references/wallet-contracts/why',
},
{
text: 'Ethers v6 Support',
link: '/solutions/technical-references/ethers-v6-migration',
},
{
text: 'Contract Internals',
collapsed: true,
items: [
{ text: 'Deployment', link: '/solutions/technical-references/internals/deployment' },
{
text: 'Sequence v1',
collapsed: true,
items: [
{ text: 'Deploy', link: '/solutions/technical-references/internals/v1/deploy' },
{
text: 'Wallet Factory',
link: '/solutions/technical-references/internals/v1/wallet-factory',
},
{
text: 'Wallet Configuration',
link: '/solutions/technical-references/internals/v1/wallet-configuration',
},
// {text: 'Transaction Encoding', link: '/solutions/technical-references/internals/v1/07-transaction-encoding'},
{
text: 'Signature Encoding',
link: '/solutions/technical-references/internals/v1/signature-encoding',
},
{
text: 'Wallet Context',
link: '/solutions/technical-references/internals/v1/wallet-context',
},
],
},
{
text: 'Sequence v2',
collapsed: true,
items: [
{ text: 'Deploy', link: '/solutions/technical-references/internals/v2/deploy' },
{
text: 'Wallet Configuration',
link: '/solutions/technical-references/internals/v2/configuration',
},
],
},
{
text: 'Contract Audits',
link: '/solutions/technical-references/internals/contract-audits',
},
],
},
],
},
],
'/guides': [
{
text: 'Guides',
collapsed: false,
items: [
{
text: 'Build a Game with WebGL',
collapsed: true,
link: '/guides/webgl-guide',
// items: [
// { text: 'Introduction', link: '/guides/webgl-guide#aviator-web3-game-with-webgl' },
// { text: 'Project Setup With Webpack', link: '/guides/webgl-guide#1-project-setup-with-webpack' },
// { text: 'Integrate Sequence Kit With WaaS', link: '/guides/webgl-guide#2-integrate-sequence-kit' },
// { text: 'Deploy a Collectibles Contract', link: '/guides/webgl-guide#3-deploy-a-collectibles-contract' },
// { text: 'Deploy a Remote Minter', link: '/guides/webgl-guide#4-deploy-a-remote-minter--mint-in-game-achievement-tokens' },
// { text: 'Leverage Items In-game', link: '/guides/webgl-guide#5-leverage-items-in-game' },
// { text: 'Burn In-game Achievement Tokens', link: '/guides/webgl-guide#6-burn-in-game-achievement-tokens' },
// { text: '(Optional) Integrate Embedded Wallet Into Sequence Kit', link: '/guides/webgl-guide#7-optional-integrate-embedded-wallet-into-sequence-kit' },
// ]
},
{
text: 'Build a Unity Game',
collapsed: true,
link: '/guides/jelly-forest-unity-guide',
// items: [
// { text: 'Introduction', link: '/guides/jelly-forest-unity-guidee#intro-to-jelly-forest' },
// { text: 'Build a Game Loop', link: '/guides/jelly-forest-unity-guide#build-a-game-loop' },
// { text: 'Integrate Embedded Wallets', link: '/guides/jelly-forest-unity-guide#integrate-social-sign-in-and-sequences-embedded-wallet-solution' },
// { text: 'Deploy Collectibles', link: '/guides/jelly-forest-unity-guide#deploy-a-collectibles-contract' },
// { text: 'Deploy Remote Minter', link: '/guides/jelly-forest-unity-guide#deploy-a-remote-minter'},
// { text: 'Minting Tokens to Inventory', link: '/guides/jelly-forest-unity-guide#mint-in-game-tokens-to-the-players-inventory' },
// { text: 'Purchase Collectibles with ERC20 Tokens', link: '/guides/jelly-forest-unity-guide#burn-in-game-tokens-in-exchange-for-others' },
// { text: 'Building an In-game Shop', link: '/guides/jelly-forest-unity-guide#building-the-shop-pages-and-setting-the-minting-requirements' },
// { text: 'Leverage Purchased Items In-game', link: '/guides/jelly-forest-unity-guide#leverage-purchased-items-in-game' },
// ]
},
{
text: 'Build a Telegram Mini-App with Sequence',
collapsed: true,
link: '/guides/telegram-integration',
},
{
text: 'Building Transaction Heavy Games with Unity',
collapsed: true,
link: '/guides/building-transaction-heavy-games-with-unity',
},
{
text: 'Using Unity IAP to Sell NFTs',
collapsed: true,
link: '/guides/using-unity-iap-to-sell-nfts',
},
{
text: 'How to sell On-Chain Items in your Unreal Project',
collapsed: true,
link: '/guides/unreal-primary-sales',
},
{
text: 'How to do Primary Sales for On-Chain Items in Unity',
collapsed: true,
link: '/guides/unity-primary-sales',
},
{
text: 'How to build a Game with Unreal Engine',
collapsed: true,
link: '/guides/unreal-ew-guide',
},
{
text: 'Build a Collectible Minting Service',
collapsed: true,
link: '/guides/mint-collectibles-serverless',
// items: [
// { text: 'Introduction', link: '/guides/mint-collectibles-serverless#mint-collectibles-using-a-gasless-serverless-transactions-api', match: '/guides/mint-collectibles-serverless#mint-collectibles-using-a-gasless-serverless-transactions-api'},
// { text: 'Setup Cloudflare Environment', link: '/guides/mint-collectibles-serverless#1-setup-cloudflare-environment-with-wrangler-cli-and-deploy-a-test', match: '/guides/mint-collectibles-serverless#1-setup-cloudflare-environment-with-wrangler-cli-and-deploy-a-test'},
// { text: 'Deploy, Sponsor & Update Metadata For an ERC1155', link: '/guides/mint-collectibles-serverless#2-deploy-sponsor-and-update-metadata-for-an-erc1155-contract-with-sequence-builder'},
// { text: 'Use EthAuthProof to Prevent EOA DDoS', link: '/guides/mint-collectibles-serverless#3-use-ethauthproof-to-prevent-eoa-ddos' },
// { text: 'Mint a Collectible To Wallet', link: '/guides/mint-collectibles-serverless#4-mint-a-collectible-to-wallet' },
// ]
},
{
text: 'Manage Collection Metadata',
collapsed: true,
link: '/guides/metadata-guide',
// items: [
// { text: 'Obtain a Secret API Key', link: '/guides/metadata-guide#1-obtain-a-secret-api-key'},
// { text: 'Create Collection', link: '/guides/metadata-guide#2-create-collection-from-a-curl-request' },
// { text: 'Create Token', link: '/guides/metadata-guide#3-create-token-using-tokenid' },
// { text: 'Create Asset', link: '/guides/metadata-guide#4-create-asset-using-tokenid' },
// { text: 'Store an Image', link: '/guides/metadata-guide#5-store-image-asset' },
// { text: 'Update to Non-private', link: '/guides/metadata-guide#6-update-non-private-token' },
// { text: 'Publish Collection', link: '/guides/metadata-guide#7-publish-collection-from-a-curl-request' },
// { text: 'Render Asset from API', link: '/guides/metadata-guide#8-render-asset-from-api-publicly' },
// ]
},
{
text: 'Build a Treasure Chest with AI Minting',
collapsed: true,
link: '/guides/treasure-chest-guide',
// items: [
// { text: 'Sequence Builder Console Signup & Project Creation', link: '/guides/lootbox-guide#1-builder-console-signup--project-creation' },
// { text: 'Access Key Management', link: '/guides/lootbox-guide#2-access-key-management' },
// { text: 'Sequence Kit integration', link: '/guides/lootbox-guide#3-sequence-kit-integration' },
// { text: 'iframe-to-Dapp Communication', link: '/guides/lootbox-guide#4-iframe-to-dapp-communication' },
// { text: 'Deploy a Contract & Sponsor Gas', link: '/guides/lootbox-guide#5-deploy-a-contract--sponsor-gas' },
// { text: 'Deploy a Cloudflare Worker', link: '/guides/lootbox-guide#6-deploy-a-cloudflare-worker' },
// { text: 'Generating AI Prompts & Images', link: '/guides/lootbox-guide#7-generating-ai-prompts--images' },
// { text: 'Store Media To Sequence Metadata Service', link: '/guides/lootbox-guide#8-store-media-to-sequence-metadata-service' },
// { text: 'Securing Your Cloudflare Worker', link: '/guides/lootbox-guide#9-securing-your-cloudflare-worker' },
// { text: '(Optional) Naive Mint Restriction Per Wallet', link: '/guides/lootbox-guide#10-optional-naive-mint-restriction-per-wallet' },
// ]
},
{
text: 'Build a Backend Transaction Service',
collapsed: true,
link: '/guides/building-relaying-server',
},
{
text: 'Leverage Sequence Analytics API in Dune',
collapsed: true,
link: '/guides/analytics-guide',
},
{
text: 'Build an Embedded Wallet Linking Service',
collapsed: true,
link: '/solutions/wallets/link-wallets/integration-guide',
},
{
text: 'Build a Custom Marketplace',
collapsed: true,
link: '/guides/custom-marketplace',
// items: [
// { text: 'Minting', link: '/guides/custom-marketplace#1-minting' },
// { text: 'Wallet Authentication', link: '/guides/custom-marketplace#2-wallet-authentication' },
// { text: 'Blockchain Queries', link: '/guides/custom-marketplace#3-blockchain-queries' },
// { text: 'Multi-wallet types', link: '/guides/custom-marketplace#4-multi-wallet-types' },
// { text: 'Request Creation', link: '/guides/custom-marketplace#5-request-creation' },
// { text: 'Order Accepting', link: '/guides/custom-marketplace#6-order-accepting' },
// { text: '(Optional) Enable Embedded Wallet', link: '/guides/custom-marketplace#7-optional-integrate-embedded-wallet-into-sequence-kit' },
// ]
},
{
text: 'Sell your Game Items via a Web Shop',
collapsed: true,
link: '/guides/primary-sales',
},
{
text: 'Create NFT Drop Sales',
collapsed: true,
link: '/guides/primary-drop-sales-erc721',
},
],
},
// {
// text: 'Integrate token rewards into your Discord server',
// link: '/guides/discord'
// },
{
text: 'Templates',
link: '/guides/template-overview',
// items: [
// { text: 'Embedded Wallet Demo', link: '/guides/templates/template-embedded-wallet' },
// { text: 'Build a Backend Transaction Manager', link: '/guides/templates/building-relaying-server' }
// // { text: 'Marketplace API Demo', link: '/guides/templates/template-marketplace-api' }
// ]
},
],
// SDKs
'/sdk': [
{
text: 'Game Engine',
// collapsed: true,
items: [
{
text: 'Unity',
collapsed: true,
match: '/sdk/unity/overview',
items: [
{ text: 'Overview', link: '/sdk/unity/overview' },
{ text: 'Installation', link: '/sdk/unity/installation' },
{ text: 'Setup', link: '/sdk/unity/setup' },
{
text: 'Authentication',
collapsed: false,
items: [
{ text: 'Introduction', link: '/sdk/unity/authentication/intro' },
{ text: 'Email OTP', link: '/sdk/unity/authentication/email' },
{ text: 'Social Sign In', link: '/sdk/unity/authentication/oidc' },
{ text: 'PlayFab', link: '/sdk/unity/authentication/playfab' },
{ text: 'Guest', link: '/sdk/unity/authentication/guest' },
{
text: 'Federated Accounts',
link: '/sdk/unity/authentication/federated-accounts',
},
],
},
{ text: 'Write to blockchain', link: '/sdk/unity/write-to-blockchain' },
{ text: 'Read from Blockchain', link: '/sdk/unity/read-from-blockchain' },
{ text: 'Sign Messages', link: '/sdk/unity/sign-messages' },
{ text: 'Recovering Sessions', link: '/sdk/unity/recovering-sessions' },
{ text: 'Session Management', link: '/sdk/unity/session-management' },
{ text: 'On-Ramp Funds via Credit Card', link: '/sdk/unity/onboard-user-funds' },
{ text: 'Marketplace', link: '/sdk/unity/marketplace' },
{
text: 'Connect with External Wallets',
link: '/sdk/unity/connecting-external-wallets',
},
{ text: 'Upgrading from v2 to v3', link: '/sdk/unity/v2-to-v3-upgrade-guide' },
{ text: 'Wallet UI', link: '/sdk/unity/wallet-ui' },
{ text: 'Deploy Contracts', link: '/sdk/unity/deploy-contracts' },
{
text: 'Advanced Blockchain Interactions',
collapsed: true,
items: [
{ text: 'Introduction', link: '/sdk/unity/Advanced/introduction' },
{ text: 'Wallets', link: '/sdk/unity/Advanced/wallets' },
{ text: 'Clients', link: '/sdk/unity/Advanced/clients' },
{ text: 'Transfers', link: '/sdk/unity/Advanced/transfers' },
{ text: 'Contracts', link: '/sdk/unity/Advanced/contracts' },
{ text: 'Tokens', link: '/sdk/unity/Advanced/tokens' },
],
},
],
},
{
text: 'Unreal',
collapsed: true,
match: '/sdk/unreal/introduction',
items: [
{ text: 'Introduction', link: '/sdk/unreal/introduction' },
{ text: 'Installation', link: '/sdk/unreal/installation' },
{ text: 'Configuration', link: '/sdk/unreal/configuration' },
{ text: 'Blueprint Subsystems', link: '/sdk/unreal/subsystems' },
{ text: 'Bootstrap your UI', link: '/sdk/unreal/user_interfaces' },
{ text: 'Authenticate Users', link: '/sdk/unreal/authentication' },
{ text: 'Write to Blockchain', link: '/sdk/unreal/write-to-blockchain' },
{ text: 'Read from Blockchain', link: '/sdk/unreal/read-from-blockchain' },
{ text: 'On-Ramp via Credit Card', link: '/sdk/unreal/onboard-user-funds' },
{ text: 'Advanced Blockchain Interactions', link: '/sdk/unreal/advanced' },
{ text: 'Platform Requirements', link: '/sdk/unreal/platforms' },
],
},
],
},
{
text: 'Mobile',
items: [
// { text: 'Android', link: '/sdk/android' },
// { text: 'iOS', link: '/sdk/iOS' },
{ text: 'React Native', link: '/sdk/mobile' },
],
},
{
text: 'Web3',
items: [
{
text: 'TypeScript',
collapsed: true,
items: [
{ text: 'Overview', link: '/sdk/typescript/guides/overview' },
{ text: 'Connect Wallet', link: '/sdk/typescript/guides/connect-wallet' },
{
text: 'Authenticate Users with Message Signature',
link: '/sdk/typescript/guides/auth-address',
},
{ text: 'Signing & Verifying Messages', link: '/sdk/typescript/guides/sign-message' },
{
text: 'No-wallet confirmation signatures',
link: '/sdk/typescript/guides/session-keys',
},
{ text: 'Sending Transactions', link: '/sdk/typescript/guides/send-transaction' },
{ text: 'Sending ERC-20 Tokens', link: '/sdk/typescript/guides/send-erc20' },
{ text: 'Sending ERC-721 (NFT) Tokens', link: '/sdk/typescript/guides/send-erc721' },
{
text: 'Sending ERC-1155 (Collectible) Tokens',
link: '/sdk/typescript/guides/send-erc1155',
},
{
text: 'Sending a Batch of Transactions',
link: '/sdk/typescript/guides/send-batch-transactions',
},
{
text: 'Building Backends with Sequence',
link: '/sdk/typescript/guides/building-backends',
},
{
text: 'Wallet Connectors',
collapsed: true,
items: [
{ text: 'Overview', link: '/sdk/typescript/connectors/overview' },
{ text: 'Wagmi', link: '/sdk/typescript/connectors/wagmi' },
{ text: 'RainbowKit', link: '/sdk/typescript/connectors/rainbow-kit' },
{ text: 'Web3 Onboard', link: '/sdk/typescript/connectors/web3-onboard' },
{ text: 'Web3 React V6', link: '/sdk/typescript/connectors/web3-react-v6' },
{ text: 'Web3Modal', link: '/sdk/typescript/connectors/web3modal' },
{ text: 'FAQ', link: '/sdk/typescript/connectors/FAQ' },
],
},
],
},
{
text: 'Go',
link: '/sdk/go/overview',
items: [{ text: 'Overview', link: '/sdk/go/overview' }],
},
],
},
{
text: 'Common Questions',
collapsed: true,
items: [
{
text: 'How do I do signature validation?',
link: '/solutions/wallets/universal-wallet/examples/auth-address',
},
// ...
],
},
],
// apis
'/api': [
{
text: 'Transactions',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/transactions/overview' },
{ text: 'Installation', link: '/api/transactions/installation' },
{ text: 'Endpoints', link: '/api/transactions/endpoints' },
{
text: 'Examples',
collapsed: false,
items: [
{ text: 'Fetch Fee Options', link: '/api/transactions/examples/fetch-fee-options' },
{ text: 'Send Transactions', link: '/api/transactions/examples/send-transactions' },
{
text: 'Fetch Transaction Receipts',
link: '/api/transactions/examples/fetch-transaction-receipts',
},
],
},
],
},
{
text: 'Indexer',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/indexer/overview' },
{ text: 'Installation', link: '/api/indexer/installation' },
{ text: 'Endpoints', link: '/api/indexer/endpoints' },
{
text: 'Examples',
collapsed: false,
items: [
{ text: 'Fetch Tokens', link: '/api/indexer/examples/fetch-tokens' },
{ text: 'Transaction History', link: '/api/indexer/examples/transaction-history' },
{ text: 'Unique Tokens', link: '/api/indexer/examples/unique-tokens' },
{
text: 'Transaction History Token Contract',
link: '/api/indexer/examples/transation-history-token-contract',
},
{
text: 'Native Network Balance',
link: '/api/indexer/examples/native-network-balance',
},
{ text: 'Metadata Tips', link: '/api/indexer/metadata-tips' },
{ text: 'Webhooks', link: '/api/indexer/examples/webhook-listener' },
{ text: 'Subscriptions', link: '/api/indexer/examples/subscriptions' },
],
},
],
},
{
text: 'Analytics',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/analytics/overview' },
{ text: 'Endpoints', link: '/api/analytics/endpoints' },
{
text: 'Examples',
collapsed: false,
items: [
{ text: 'Wallets', link: '/api/analytics/examples/wallets' },
{ text: 'Marketplaces', link: '/api/analytics/examples/marketplace' },
],
},
],
},
{
text: 'Metadata',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/metadata/overview' },
{ text: 'Endpoints', link: '/api/metadata/endpoints' },
{
text: 'Examples',
collapsed: false,
items: [
{ text: 'Token Metadata', link: '/api/metadata/token-metadata' },
{ text: 'Contract Metadata', link: '/api/metadata/contract-metadata' },
{ text: 'REST API', link: '/api/metadata/rest-api' },
],
},
],
},
{
text: 'Infrastructure',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/infrastructure/overview' },
{ text: 'Endpoints', link: '/api/infrastructure/endpoints' },
],
},
{
text: 'Marketplace',
collapsed: false,
items: [
{ text: 'Overview', link: '/api/marketplace/overview' },
{ text: 'Endpoints', link: '/api/marketplace/endpoints' },
// { text: 'Schema', link: '/api/marketplace/schema' },
// { text: 'Marketplace API', link: '/api/marketplace/api' },
{
text: 'Examples',
collapsed: false,
link: '/api/marketplace/examples/orderbook-transactions',
items: [
{
text: 'Creating Market Orders & Listings',
link: '/api/marketplace/examples/orderbook-transactions',
},
{ text: 'Get Top Orders', link: '/api/marketplace/examples/get-top-orders' },
{ text: 'Get Orderbook', link: '/api/marketplace/examples/get-orderbook' },
{ text: 'Get User Activities', link: '/api/marketplace/examples/get-user-activities' },
],
},
],
},
{
text: 'Node Gateway',
collapsed: false,
items: [{ text: 'Overview', link: '/api/node-gateway' }],
},
],
// Support
'/support': [
{
text: 'Support',
items: [
{ text: 'Support', link: '/support' },
{ text: 'Changelog', link: 'https://0xsequence.featurebase.app/' },
{ text: 'Restricted Regions', link: '/support/restricted-regions' },
{ text: 'FAQ', link: 'https://support.sequence.xyz' },
{ text: 'Token Directory', link: '/support/token-directory' },
{ text: 'Discord', link: 'https://discord.gg/sequence' },
{ text: "We're hiring!", link: 'https://horizon.io/careers' },
{ text: 'Contact Us', link: 'https://support.sequence.xyz' },
],
},
{
text: 'Sequence Builder Admin',
items: [
{ text: 'Project Management', link: '/support/builder/project-management' },
{ text: 'Project Settings', link: '/support/builder/project-settings' },
],
},
],
} as Sidebar