-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathdata.json
More file actions
1489 lines (1489 loc) · 51.6 KB
/
data.json
File metadata and controls
1489 lines (1489 loc) · 51.6 KB
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
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"01_basename_social_dropdown": {
"title": "Create a Basename Profile Component",
"slug": "/create-basename-profile-component",
"description": "Learn how to create a component that displays social media and profile information for a given basename.",
"author": "hughescoin",
"keywords": [
"basename",
"profile",
"component",
"onchain",
"dapp"
],
"tags": [
"frontend",
"identity"
],
"difficulty": "medium",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Dec 6, 2024",
"duration": "9 min read",
"checksum": "df2b47bc5f070da32258d9533d04c1840d5e1ebeb58de4196e57b272b9b1a6b7"
},
"0_accept-crypto-payments": {
"title": "Accept Crypto Payments",
"slug": "/accept-crypto-payments",
"description": "Configure your app to accept crypto payments with Coinbase Commerce and OnchainKit.",
"author": "eric.base.eth",
"keywords": [
"Account Abstraction",
"AA",
"Smart account",
"Smart Wallet",
"Funding",
"Onramps",
"Onchainkit",
"Onboarding",
"Smart contract wallet",
"Smart account"
],
"tags": [
"account abstraction",
"crypto payments"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "8 min read",
"checksum": "5ab221b4918117874c1a1b69983acbe0482e4bad6370f86f4cafb8226c0a776c"
},
"0_deploy-with-foundry": {
"title": "Deploying a smart contract using Foundry",
"slug": "/deploy-with-foundry",
"description": "A tutorial that teaches how to deploy a smart contract on the Base test network using Foundry. Includes instructions for setting up the environment, compiling, and deploying the smart contract.",
"author": "neodaoist",
"keywords": [
"Foundry",
"smart contract",
"ERC-721",
"Base",
"Base test network",
"Base testnet",
"Rust",
"Solidity",
"smart contract deployment",
"deploy a smart contract",
"build on base",
"write smart contract",
"smart contract development"
],
"tags": [
"smart contracts"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Dec 6, 2024",
"duration": "17 min read",
"checksum": "ab181fab0003c30eb98f8b5f7621f8d5cc7bd3bbf4c8357d339b95b7a44d68f1"
},
"0_deploy-with-hardhat": {
"title": "Deploying a smart contract using Hardhat",
"slug": "/deploy-with-hardhat",
"description": "A tutorial that teaches how to deploy a smart contract on the Base test network using Hardhat. Includes instructions for setting up the environment, compiling, and deploying the smart contract.",
"author": "taycaldwell",
"keywords": [
"Hardhat",
"smart contract",
"ERC-721",
"Base",
"Base test network",
"Base testnet",
"Node.js",
"Solidity",
"smart contract deployment",
"deploy a smart contract",
"build on base",
"write smart contract",
"smart contract development"
],
"tags": [
"smart contracts"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "14 min read",
"checksum": "1a4ff0e8fb3bdb19eb31b23839e970328f465ee2b08edb974899c2029e6c8067"
},
"0_deploy-with-remix": {
"title": "Deploying a smart contract using Remix",
"slug": "/deploy-with-remix",
"description": "A tutorial that teaches how to deploy a smart contract on the Base test network using Remix IDE. Includes instructions for setting up the environment, compiling, and deploying the smart contract.",
"author": "briandoyle81",
"keywords": [
"Remix",
"Remix IDE",
"smart contract",
"Base",
"Base test network",
"Base testnet",
"Node.js",
"Solidity",
"smart contract deployment",
"deploy a smart contract",
"build on Base",
"write smart contract",
"smart contract development",
"online IDE"
],
"tags": [
"smart contracts"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "18 min read",
"checksum": "51a373b0edbcf28503e0674e5d7b3e286095bf9b24e68575314f8eca3b864d74"
},
"0_deploy-with-tenderly": {
"title": "Deploying a smart contract using Tenderly",
"slug": "/deploy-with-tenderly",
"description": "A tutorial that teaches how to deploy smart contracts using Tenderly DevNets. This page covers setup, debugging, transaction simulations, and continuous integration for smart contract development on Base Network.",
"author": "tenderly",
"keywords": [
"Tenderly",
"smart contract",
"Tenderly DevNets",
"Base",
"Base Network",
"deployment",
"debugging",
"transaction simulations",
"continuous integration",
"DevNet environment",
"Hardhat integration",
"deploy a smart contract",
"debug a smart contract",
"smart contract on Base",
"build on Base"
],
"tags": [
"smart contracts"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "19 min read",
"checksum": "e1d5cda5b9c402023c6c5f4ab5cd47636ba01880eb3027f44e6bccca5d8fbbf8"
},
"0_deploy-with-thirdweb": {
"title": "Deploying a smart contract using thirdweb",
"slug": "/deploy-with-thirdweb",
"description": "A tutorial that teaches how to deploy and interact with smart contracts using the thirdweb CLI and SDK. Includes instructions for project creation, contract deployment on the Base test network.",
"author": "taycaldwell",
"keywords": [
"thirdweb",
"thirdweb CLI",
"thirdweb SDK",
"Base",
"Base network",
"smart contracts",
"deployment",
"Base testnet",
"CLI",
"Solidity",
"ERC-721",
"web3 development",
"SDKs",
"React",
"deploy a smart contract",
"debug a smart contract",
"smart contract on Base",
"build on Base"
],
"tags": [
"smart contracts"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Jul 11, 2024",
"duration": "10 min read",
"checksum": "f4b7fa789b2c65e00e467c4851857ab2e629f6d8dbed7f8c2d625abf668a124b"
},
"0_gasless-transactions-with-paymaster": {
"title": "Gasless Transactions on Base using a Paymaster",
"slug": "/gasless-transaction-on-base-using-a-paymaster",
"description": "Learn how to leverage the Base Paymaster for seamless, gasless transactions on the Coinbase Cloud Developer Platform.",
"author": "hughescoin",
"keywords": [
"Gas",
"Gasless",
"Transactions",
"Paymaster",
"Sponsor",
"Sponsored Transactions",
"Onchain",
"Coinbase",
"Base",
"Crypto",
"Cloud Platform"
],
"tags": [
"account abstraction",
"Paymaster"
],
"difficulty": "easy",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "27 min read",
"checksum": "d5fae24ccf951790ee64ed24104ec92d63f557b4fbfda73b6df7816d6c4213ea"
},
"0_intro-to-providers": {
"title": "Introduction to Providers",
"slug": "/intro-to-providers",
"description": "A tutorial that teaches what providers are, why you need one, and how to configure several providers and use them to connect to the blockchain.",
"author": "briandoyle81",
"keywords": [
"blockchain providers",
"JSON RPC",
"RainbowKit",
"wagmi React hooks",
"viem",
"frontend",
"smart contract development",
"EVM",
"Next.js",
"Base",
"Base network",
"Base node providers",
"Base providers",
"blockchain development",
"dApps",
"smart contracts",
"providers",
"public providers",
"wallet providers",
"vendor providers",
"rate limits",
"blockchain API",
"Ethereum provider",
"Base",
"Base network",
"Base node providers",
"Base providers",
"QuickNode",
"Alchemy",
"API keys",
"blockchain connection",
"public provider",
"smart contract development"
],
"tags": [
"nodes",
"frontend"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "21 min read",
"checksum": "e8ad9f260741d1bad609de2c417d0ab29b1cdba6fdf71660249f6bae1477f120"
},
"0_run-a-base-node": {
"title": "Running a Base Node",
"slug": "/run-a-base-node",
"description": "A tutorial that teaches how to set up and run a Base Node.",
"author": "taycaldwell & wbnns",
"keywords": [
"Base Node setup",
"running a node",
"Base node",
"run a Base node",
"hardware requirements",
"node synchronization",
"node snapshots",
"Base chain",
"Base blockchain",
"Base network",
"node deployment",
"Ethereum node"
],
"tags": [
"nodes"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "7 min read",
"checksum": "5fab200cf9f312d01648ebf0f508c9eb9dfa4f02fbb770dccb502cb7a0e90a1c"
},
"1_10_farcaster-frames-hyperframes": {
"title": "Farcaster Frames: Building HyperFrames",
"slug": "/farcaster-frames-hyperframes",
"description": "A tutorial that teaches how to make cross-linked HyperFrames in an organized manner.",
"author": "briandoyle81",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"keywords": [
"farcaster",
"frames",
"farcaster frames",
"HyperFrames",
"hyper frames",
"state",
"frame state",
"Base"
],
"difficulty": "intermediate",
"tags": [
"frames",
"OnchainKit"
],
"last_updated": "Aug 14, 2024",
"duration": "16 min read",
"checksum": "8672df8be5f746458154b5908af0fe1ca5445ced73518bcbdfe077c40d3b1585"
},
"1_1_coinbase-smart-wallet": {
"title": "Coinbase Smart Wallet",
"slug": "/coinbase-smart-wallet",
"description": "Learn to create an app that uses the Coinbase Smart Wallet and effectively manages assets and permissions for both native and new users of onchain apps",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"wagmi",
"viem",
"smart wallet"
],
"tags": [
"nft",
"Smart Wallet",
"Paymaster"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "22 min read",
"checksum": "88baf06914053c3358e53eeabae01e2c60f74628eae9944156652d2ab447b4a8"
},
"1_2_smart-wallet-and-eoa-with-onchainkit": {
"title": "Use the Coinbase Smart Wallet and EOAs with OnchainKit",
"slug": "/smart-wallet-and-eoa-with-onchainkit",
"description": "Learn how to use OnchainKit to easily handle the Coinbase Smart Wallet and EOA wallets including the Coinbase wallet, at the same time.",
"author": "briandoyle81",
"keywords": [
"JSON RPC",
"RainbowKit",
"OnchainKit",
"frontend",
"Next.js",
"Base",
"blockchain development",
"dApps",
"Base",
"Base network",
"blockchain connection",
"smart contract development",
"smart wallet",
"Coinbase smart wallet",
"eoa"
],
"tags": [
"account abstraction",
"frontend",
"OnchainKit",
"Smart Wallet"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "10 min read",
"checksum": "4972586b1b3133352ba606cc4ca1a8d6fbb53edd47dc00bcd48cc67ad6b603e0"
},
"1_3_smart-wallet-and-rainbowkit": {
"title": "Coinbase Smart Wallet with RainbowKit",
"slug": "/smart-wallet-and-rainbowkit",
"description": "Learn how to configure RainbowKit to elegantly handle the Coinbase Smart Wallet and EOA wallets including the Coinbase wallet, at the same time.",
"author": "briandoyle81",
"keywords": [
"JSON RPC",
"RainbowKit",
"OnchainKit",
"frontend",
"Next.js",
"Base",
"blockchain development",
"dApps",
"wagmi React hooks",
"frontend",
"Next.js",
"Base",
"Base network",
"Base node providers",
"Base providers",
"blockchain development",
"dApps",
"smart contracts",
"providers",
"Base",
"Base network",
"blockchain connection",
"smart contract development",
"smart wallet",
"Coinbase smart wallet",
"eoa"
],
"tags": [
"account abstraction",
"frontend",
"Smart Wallet"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "11 min read",
"checksum": "570bd7d24eb6a2c7d803cb0a967abf5f8954376dbb72e87b0d3c527fa78d6590"
},
"1_4_farcaster-frames-nft-minting": {
"title": "Farcaster Frames: Building an NFT airdrop Frame",
"slug": "/farcaster-frames-nft-minting",
"description": "A tutorial that teaches how to make a Farcaster Frame that allows you to mint and airdrop NFTs to users.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"farcaster",
"frames",
"farcaster frames"
],
"tags": [
"frames",
"nft",
"OnchainKit"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "23 min read",
"checksum": "88b5e90ac17455267881a0181c6e360bf908efd75e80e0d0999e5aabf9ed7416"
},
"1_5_farcaster-frames-nocode-minting": {
"title": "Farcaster Frames: Building a no-code minting Frame",
"slug": "/farcaster-frames-nocode-minting",
"description": "A tutorial that teaches how to make a Farcaster Frame with an outbound link to an NFT minting website.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"farcaster",
"frames",
"farcaster frames",
"mint"
],
"tags": [
"frames",
"nft",
"OnchainKit"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "6 min read",
"checksum": "a40f321baaaaf938708831ac828bb1145274b632dd4a0b539a25bb8ef8dbaf30"
},
"1_6_farcaster-frames-deploy-to-vercel": {
"title": "Farcaster Frames: Deploying to Vercel",
"slug": "/farcaster-frames-deploy-to-vercel",
"description": "A tutorial that teaches how to deploy a Farcaster Frame using Vercel.",
"author": "briandoyle81",
"keywords": [
"farcaster",
"frames farcaster frames",
"Vercel",
"OnchainKit",
"a frame in 100 lines",
"deploy"
],
"tags": [
"frames",
"OnchainKit"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "9 min read",
"checksum": "197d54aed1eca8f4937a5acb09382009e2e1ca9991a248496b60146b0c5efde3"
},
"1_7_farcaster-frames-gating-and-redirects": {
"title": "Farcaster Frames: Gating content and creating redirects",
"slug": "/farcaster-frames-gating-and-redirects",
"description": "A tutorial that teaches how to create Frames with more advanced behaviors such as gating content based on a user's follows, likes, or recasts, and creating redirect buttons.",
"author": "briandoyle81",
"keywords": [
"farcaster",
"frames",
"farcaster frames"
],
"tags": [
"frames",
"OnchainKit"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "11 min read",
"checksum": "af4e0eee3327f226b5821067cc22b32db5c730078a8d7d163fd36822f45b5e3f"
},
"1_8_farcaster-frames-transactions": {
"title": "Farcaster Frames: Making transactions",
"slug": "/farcaster-frames-transactions",
"description": "A tutorial that teaches how to invoke a wallet transaction from a Farcaster Frame.",
"author": "briandoyle81",
"keywords": [
"farcaster",
"frames",
"farcaster frames",
"wallet",
"transaction",
"Base"
],
"tags": [
"frames",
"OnchainKit"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "17 min read",
"checksum": "1ecf4393dbf01ca51ac07db59858cb3d359685d316451cd42cda2e1ce2685293"
},
"1_9_farcaster-cast-actions-simple": {
"title": "Farcaster Cast Actions: Create a Simple Cast Action",
"slug": "/farcaster-cast-actions-simple",
"description": "A tutorial that teaches how to make a simple Farcaster cast action.",
"author": "briandoyle81",
"keywords": [
"farcaster",
"cast actions",
"farcaster cast actions",
"farcaster actions"
],
"tags": [
"frames",
"actions",
"OnchainKit"
],
"difficulty": "beginner",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "9 min read",
"checksum": "296c34ff0988d0c72ec1a791bb3e48833bb0afa40f0111c3519354562e3350ed"
},
"1_ock-swap-theme": {
"title": "Create a Custom Themed Swap Component with OnchainKit",
"slug": "/create-custom-themed-swap-component",
"description": "Learn how to implement a swap component with a custom theme using OnchainKit in your React application.",
"author": "hughescoin",
"keywords": [
"OnchainKit",
"Swap Component",
"Custom Theme",
"React",
"TypeScript",
"ERC20 Tokens",
"Base Chain"
],
"tags": [
"frontend",
"defi",
"ethereum",
"base"
],
"difficulty": "medium",
"displayed_sidebar": null,
"last_updated": "Dec 6, 2024",
"duration": "6 min read",
"checksum": "6f687231958dc79d5264bcfeadfdb5704b860a7653d788491bdf4c8c41a0e0d3"
},
"1_smart-wallet-spend-permissions": {
"title": "Create Onchain Subscription Payments with Spend Permissions",
"slug": "/create-subscription-payments-with-spend-permissions",
"description": "Implement a smart wallet signer for a subscription payment application.",
"author": "hughescoin",
"keywords": [
"smart wallet",
"onchain",
"spend permissions",
"smart wallet",
"account abstraction"
],
"tags": [
"frontend",
"account abstraction"
],
"difficulty": "medium",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "15 min read",
"checksum": "f73fd21a59033f243172fc120fb3ee456c0063509e5acb6c610bab92669c56ad"
},
"1_verify-contract-with-basescan": {
"title": "Verify a Smart Contract using Basescan API",
"slug": "/verify-smart-contract-using-basescan",
"description": "A tutorial that teaches how to verify a smart contract using Basescan APIs.",
"author": "hughescoin",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"keywords": [
"Base",
"Solidity",
"ERC-721",
"token"
],
"difficulty": "beginner",
"tags": [
"smart contracts"
],
"last_updated": "Feb 6, 2025",
"duration": "12 min read",
"checksum": "81a6956e7124a78de64f9f5363580ddd5fb7563cada84c9981157594958c45bd"
},
"2_1_simple-onchain-nfts": {
"title": "Simple Onchain NFTs",
"slug": "/simple-onchain-nfts",
"description": "A tutorial that teaches how to make simple nfts that are procedurally generated and have onchain metadata and images.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"SVG",
"generative art",
"onchain metadata",
"nft metadata",
"onchain images",
"interfaces",
"pseudorandom numbers",
"deterministic randomness"
],
"tags": [
"nft"
],
"difficulty": "easy",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "26 min read",
"checksum": "5b8b1179209e4dd292b9daac5ebbbcc106f58708c4741f946067ee9e5726a2a1"
},
"2_2_complex-onchain-nfts": {
"title": "Complex Onchain NFTs",
"slug": "/complex-onchain-nfts",
"description": "A tutorial that teaches how to make complex nfts that are procedurally generated and have onchain metadata and images.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"SVG",
"generative art",
"onchain metadata",
"nft metadata",
"onchain images",
"interfaces",
"pseudorandom numbers",
"deterministic randomness"
],
"tags": [
"nft"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "39 min read",
"checksum": "25ef22543ebd7f19a66a912a33667c1378455aff457815800cd1e255f63e0d65"
},
"2_3_signature-mint": {
"title": "Signature Mint NFT",
"slug": "/signature-mint-nft",
"description": "A tutorial that teaches how to create a signature mint, in which minters pay their own gas, but must first be given a valid signed authorization.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"signature mint",
"viem",
"soulbound"
],
"tags": [
"nft"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "19 min read",
"checksum": "88e6db6ecb1ee9f852aa7e414005b3c780f3c12277c18cbe2a2d85bcbc16f263"
},
"2_9_1_build-with-thirdweb": {
"title": "Building an onchain app using thirdweb",
"slug": "/build-with-thirdweb",
"description": "A tutorial that teaches how to build an NFT gallery app using thirdweb, including steps for creating an NFT collection, minting NFTs, and configuring the app for the Base testnet.",
"author": "taycaldwell",
"keywords": [
"thirdweb",
"onchain app",
"dapp",
"NFT",
"NFT collection",
"smart contract",
"Base blockchain",
"Base network",
"Base testnet",
"Base test network",
"mint NFTs",
"web3 wallet",
"app development",
"dapp development",
"build a dapp on Base",
"build on Base"
],
"tags": [
"smart contracts",
"nft"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "8 min read",
"checksum": "527200e33d612b0c76e5eaacddfc23633b57eaa4577f389d4429b8f862c45462"
},
"2_9_2_thirdweb-unreal-nft-items": {
"title": "Thirdweb and Unreal - NFT Items",
"slug": "/thirdweb-unreal-nft-items",
"description": "Learn how to use NFTs as in-game items using Thirdweb and Unreal.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"thirdweb",
"Unreal",
"c++",
"blueprints",
"onchain games"
],
"tags": [
"nft",
"smart contracts"
],
"difficulty": "hard",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Sep 12, 2024",
"duration": "37 min read",
"checksum": "5a5ce14de1c4ea8416346409bec25aa6fb5d65e86f931771a58328d0280d1647"
},
"2_dynamic-nfts": {
"title": "Building dynamic NFTs",
"slug": "/dynamic-nfts",
"description": "A tutorial that teaches how to make dynamic NFTs that evolve based on onchain or offchain actions.",
"author": "lukecd",
"keywords": [
"Irys",
"Permanent data",
"Solidity",
"ERC-721",
"token",
"NFT",
"Dynamic NFT",
"gaming NFT",
"onchain metadata",
"nft metadata",
"onchain nft"
],
"tags": [
"nft"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "14 min read",
"checksum": "b0ff9731c71720e9c60d8715387c402ce481177d1d48ff625cb098e8120f8626"
},
"2_email-campaign-with-resend": {
"title": "Create Email Marketing Campaigns Onchain using Coinbase Smart Wallet + Resend",
"slug": "/onchain-email-campaigns-using-resend",
"description": "A tutorial that teaches how to create a mailing list and email customers using Resend",
"author": "hughescoin",
"keywords": [
"build on base",
"viem",
"wagmi",
"frontend",
"onchain app development"
],
"tags": [
"account abstraction"
],
"difficulty": "beginner",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "21 min read",
"checksum": "8dc4ead004b163995712a5fe9563855f45bb7deb01d5a8f2c478ec31a914e8fe"
},
"2_event-gate-nouns": {
"title": "Gate IRL Events with Nouns",
"slug": "/event-gate-with-nouns",
"description": "Learn how to gate entry to an IRL event for members of a Nounish DAO.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-721",
"token",
"NFT",
"Gate",
"Nouns",
"PFP"
],
"tags": [
"nft",
"smart contracts",
"frontend"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Aug 14, 2024",
"duration": "19 min read",
"checksum": "002c298b985a448313a177066e23133963d9ae5f3c678769343efe5fdd5813aa"
},
"2_nft-minting-with-zora": {
"title": "How to Mint on Zora with an App",
"slug": "/minting-nfts-with-zora",
"description": "Learn to use Zora contracts inside your app to create secure, efficient, and feature-rich minting experiences for your users.",
"author": "briandoyle81",
"keywords": [
"Solidity",
"ERC-1155",
"token",
"NFT",
"wagmi",
"viem",
"Zora"
],
"tags": [
"nft",
"smart wallet"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "18 min read",
"checksum": "13a921259d94befc5320549482f1ba7789c3945049ce4485e3c1577dc3004601"
},
"2_ock-checkout-tutorial": {
"title": "Build a eCommerce App using Coinbase Commerce and OnchainKit",
"slug": "/coinbase-commerce-onchainkit-checkout",
"description": "Learn how to integrate Coinbase Commerce payments into your application using OnchainKit.",
"author": "hughescoin",
"keywords": [
"Account Abstraction",
"AA",
"Smart account",
"Smart Wallet",
"Funding",
"Onramps",
"Onchainkit",
"Onboarding Smart contract wallet",
"Smart account"
],
"tags": [
"account abstraction"
],
"difficulty": "intermediate",
"hide_table_of_contents": false,
"displayed_sidebar": null,
"last_updated": "Dec 6, 2024",
"duration": "10 min read",
"checksum": "d6301d407efde110a3d11bb66aab5275c19fdf490a5c65e1ed76994a5e732181"
},
"2_ock-fund-tutorial": {
"title": "Build a Smart Wallet Funding app with OnchainKit",
"slug": "/build-smart-wallet-funding-app",
"description": "Learn how to create an app that detects if a smart wallet has ETH and prompts users to add funds if needed.",
"author": "hughescoin",
"keywords": [
"Account Abstraction",
"AA",
"Smart account",
"Smart Wallet",
"Funding",
"Onramps",
"Onchainkit",
"Onboarding Smart contract wallet",
"Smart account"
],
"tags": [
"frontend",
"wallet",
"ethereum"
],
"difficulty": "medium",
"displayed_sidebar": null,
"last_updated": "Feb 6, 2025",
"duration": "8 min read",
"checksum": "f5ad128bad310692e6e8e764b8ec9e23b5edd86a72eacfca3ee59d04720b727f"
},
"2_paymaster-erc20-gas-payments": {
"title": "Enable ERC-20 Gas Payments with Coinbase Paymaster",
"slug": "/enable-erc20-gas-payments",
"description": "Learn how to enable ERC-20 tokens as gas payment options for smart wallets using Coinbase Paymaster, improving UX and onboarding for your onchain application.",
"author": "hughescoin",
"keywords": [
"Paymaster",
"ERC20 Gas Payments",
"Wagmi",
"React",
"TypeScript",
"Base",
"cbBTC",
"Bitcoin",
"Smart Wallets",
"Paymaster Policy"
],
"tags": [
"backend",
"ethereum",
"base",
"erc20"
],
"difficulty": "medium",
"displayed_sidebar": null,
"last_updated": "Dec 6, 2024",
"duration": "11 min read",
"checksum": "fba9f07d79bc71831f303b9c85d3748571041e605987bb04a1044d7dcf1d9e28"
},
"2_paymaster-sponsor-using-wagi": {
"title": "How to Implement Base Paymaster into a Wagmi Project",
"slug": "/implement-base-paymaster-wagmi",
"description": "A tutorial to create a Mint button for free NFT minting with Base Paymaster sponsorship",
"author": "hughescoin",
"keywords": [
"Base Paymaster",
"NFT",
"Wagmi",
"WalletConnect",
"Coinbase Wallet"
],
"tags": [
"smart wallets",
"NFT minting",
"Wagmi integration"