Skip to content

Commit

Permalink
Add auction blog (#2262)
Browse files Browse the repository at this point in the history
* add auction blog

* update blog

* Update blog/2024-10-24.md

---------

Co-authored-by: PiVortex <[email protected]>
Co-authored-by: Damián Parrino <[email protected]>
  • Loading branch information
3 people authored Oct 29, 2024
1 parent 1b342b5 commit 11c2623
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 9 deletions.
29 changes: 29 additions & 0 deletions blog/2024-10-24.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
title: New Tutorial - Master Applications on NEAR
authors: [pivortex]
slug: 2024-10-24-new-tutorial
tags: [updates, tutorial, getting-started]
hide_table_of_contents: true
---

You might have noticed that a [new tutorial](https://docs.near.org/tutorials/auction/introduction) has been added to the docs! This multi-part series is all about learning to build full applications on NEAR; you will see how to build an on-chain auction from start to finish, including the smart contract, deploying it on-chain, and creating a frontend to interact with it.

<!-- truncate -->

Along the way you will learn several key concepts and how to use many key primitives along the way:
- Creating a simple smart contract
- Writing tests for a contract
- Deploying a contract to `testnet`
- Locking a contract
- Creating a frontend to interact with the contract
- Using an indexing API to view historical bids
- Making cross-contract calls
- Using Non-Fungible Tokens
- Using Fungible Tokens
- Modifying a factory contract to deploy your own contracts

This tutorial is a great for beginners to follow all the way through, but each section can also be used as a reference guide for different concepts. If you have any feedback or any questions regarding the tutorial please feel free to reach out in the [Developer Telegram Channel](https://t.me/neardev).

**Start the tutorial [here](https://docs.near.org/tutorials/auction/introduction)**

Let's keep building! 🚀
9 changes: 9 additions & 0 deletions blog/authors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,12 @@ ewiner:
title: CTO & Managing Director, Pagoda
url: https://github.com/ewiner
image_url: https://github.com/ewiner.png

pivortex:
name: Owen Hassall
title: DevRel
url: https://github.com/PiVortex
image_url: https://github.com/PiVortex.png
socials:
x: ThePiVortex
github: PiVortex
2 changes: 1 addition & 1 deletion docs/3.tutorials/auction/0-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Welcome! In this guide we will help you navigate NEAR tech stack, so you can bui

We'll start from a simple auction contract and slowly build on top of it to create a full Web3 application to carry out on-chain auctions.

By the time you finish this tutorial, you will have learned several concepts and how to use many key privitives along the way:
By the time you finish this tutorial, you will have learned several concepts and how to use many key primitives along the way:

- [Creating a simple smart contract](./1.1-basic.md#the-contracts-state)
- [Writing tests for a contract](./1.2-testing.md)
Expand Down
16 changes: 8 additions & 8 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ const config = {
],
themeConfig: {
image: 'docs/assets/welcome-pages/protocol.png',
// announcementBar: {
// id: 'id-0008',
// content:
// '🎉 Ethereum Wallets are here! Read more in our <a href="/blog/hello-ethereum-wallets">blogpost</a> and check our <a href="/tools/ethereum-wallets">tutorial to update your app</a> 🎉',
// backgroundColor: '#fcfbfa',
// textColor: '#333',
// isCloseable: true,
// },
announcementBar: {
id: 'id-0009',
content:
'🎉 Master Application on NEAR - Tutorial! A new multi-part tutorial has landed, read more in our <a href="/blog/2024-10-24-new-tutorial">blogpost</a> and check out the <a href="/tutorials/auction/introduction">tutorial itself</a> 🎉',
backgroundColor: '#fcfbfa',
textColor: '#333',
isCloseable: true,
},
prism: {
additionalLanguages: [
'rust',
Expand Down

0 comments on commit 11c2623

Please sign in to comment.