Difference between revisions of "Welcome"

From RunWiki
Jump to: navigation, search
 
(97 intermediate revisions by the same user not shown)
Line 1: Line 1:
= Welcome to RunCraft.io RUN wiki =
+
<p style="text-align: center;"><span style="font-size: 24pt;">'''Learn to build on Bitcoin with a token protocol for whatever you can dream up.'''</span></p>
  
 +
= Welcome to runWiki =
  
 +
[[File:Run logo.png|300px|alt=run's original logo|right|top|thumb|run's original logo]]
  
This wiki can be used by any developper that uses RUN from [https://run.network/ run.network]
+
This wiki is a community-driven platform where users can '''share and collaborate''' on information related to the '''RUN token protocol''' (also known as RUN-on-Bitcoin) which has been running on the Bitcoin protocol since 2019.
  
Please note that RunCraft is not affiliated with the owners of RUN but is an independant venture.
+
The goal of this Wiki is to provide a '''central repository of knowledge and resources''' for the RUN-on-Bitcoin community. We encourage all users to contribute their expertise and experiences to help grow and improve the wiki. It is hosted by RunCraft, which is an independant venture. The implementation of the Bitcoin protocol that we use in the examples provided is Bitcoin SV (BSV) for its low fees and onchain-data ecosystem, but the protocol could be adapted to work on any Bitcoin-like blockchain, including BTC.
  
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User's Guide] for information on using the wiki software.
+
This Wiki is '''created and maintained by a team of dedicated volunteers'''. If you have any questions or need assistance, please don't hesitate to contact us at [https://runcraft.io/ runcraft.io]
  
 
== Getting started ==
 
== Getting started ==
  
coming soon
+
=== install Run and use it ===
 +
 
 +
*[[Installing the_run_sdk|install the run SDK]] and then&nbsp;[[Creating_and_loading_jigs|learn about creating jigs]]
 +
*check the '''[[Tutorials|tutorials]]''' or the '''[[Documentation|documentation]]'''
 +
*check [[Special:AllPages|all the wiki pages.]]
 +
 
 +
=== contribute to this Wiki ===
 +
 
 +
 
 +
*refer to the [[Contributing|contributing]] page
 +
 
 +
== Why was this Wiki created? ==
 +
This wiki is a community effort to have a community maintained documentation of the RUN protocol and library.
 +
 
 +
Since the original creators decided to leave the project, we have reuploaded and improved the documentation for the RUN library on this wiki.
 +
 
 +
'''Our goal is to port and improve the doc by cleverly leveraging wiki's ability to link pages to make it easier to search. If you want to help, check out the [[Contributing|contributing]] page.'''
 +
 
 +
What's more, some members of the RUN community are already willing to build tools and to explore expanding the protocol, so this wiki is a place for them to share their efforts and collaborate in public.
 +
= What is RUN? =
 +
Run's website originally described it this way:<pre>Imagine. Then, Build. A token protocol for whatever you can dream up.
 +
jigs // interactive objects
 +
</pre>[[File:Relayx amm.png|300px|alt=RelayX's AMM is built based on RUN tokens|right|top|thumb|RelayX's AMM is built based on RUN tokens]]<p>'''Run is a protocol and SDK to build apps and tokens on Bitcoin'''. Developers create applications using interactive objects, called jigs. Jigs allow you to build almost anything you can dream up: tokens, contracts, artwork, elections, games, digital pets, and more — all run on Bitcoin.</p>
 +
<p>'''Run supports full object-oriented programming''' and arbitrary code today. It is secure and performant for real applications. These docs will help you get started!</p>
 +
In a more technical language, RUN is a '''Bitcoin based UTXO-enforced layer2 protocol similar to javascript''' that allows you to create interactive objects. It can allow you to create NFTs or blockchain tokens that can be used to build pretty much anything.
 +
 
 +
Copyrights notice: the RUN protocol was created by Brenton Gunning under the MIT license.
 +
 
 +
== Examples of projects that have been built ==
 +
Here are a few of the projects that have already been built using Run:
 +
*game objects that users own and can resell<br>
 +
*[[NFT|NFTs]] for art, music and 3D<br>
 +
*[[DEX|DEXs]] and [[AMM|AMMs]]<br>
 +
*social media platforms<br>
 +
*[[Wrapped]] dollars ([[Stablecoins]])
 +
*voting tokens
 +
*tracing products on the blockchain<br>
 +
*handling permissions
 +
*loyalty cards
 +
 
 +
== How it looks ==
 +
Here is how some Run code looks. In this example we create an Axe NFT that causes 9001 damage. You can find other [[basic examples|basic examples]]
 +
 
 +
<syntaxhighlight lang="javascript">
 +
class Weapon extends Jig {
 +
    init(damage) {
 +
        this.damage = damage
 +
    }
 +
}
 +
 
 +
class Axe extends Weapon {
 +
    init() {
 +
        super.init(9001)
 +
    }
 +
}
 +
 
 +
new Axe() instanceof Weapon  // is true
 +
</syntaxhighlight>
 +
 
 +
<p>Feeling ready to get started ? then head over to the [[Installing the_run_sdk|installation and setup]].</p>

Latest revision as of 06:10, 27 February 2025

Learn to build on Bitcoin with a token protocol for whatever you can dream up.

Welcome to runWiki

run's original logo
run's original logo

This wiki is a community-driven platform where users can share and collaborate on information related to the RUN token protocol (also known as RUN-on-Bitcoin) which has been running on the Bitcoin protocol since 2019.

The goal of this Wiki is to provide a central repository of knowledge and resources for the RUN-on-Bitcoin community. We encourage all users to contribute their expertise and experiences to help grow and improve the wiki. It is hosted by RunCraft, which is an independant venture. The implementation of the Bitcoin protocol that we use in the examples provided is Bitcoin SV (BSV) for its low fees and onchain-data ecosystem, but the protocol could be adapted to work on any Bitcoin-like blockchain, including BTC.

This Wiki is created and maintained by a team of dedicated volunteers. If you have any questions or need assistance, please don't hesitate to contact us at runcraft.io

Getting started

install Run and use it

contribute to this Wiki

Why was this Wiki created?

This wiki is a community effort to have a community maintained documentation of the RUN protocol and library.

Since the original creators decided to leave the project, we have reuploaded and improved the documentation for the RUN library on this wiki.

Our goal is to port and improve the doc by cleverly leveraging wiki's ability to link pages to make it easier to search. If you want to help, check out the contributing page.

What's more, some members of the RUN community are already willing to build tools and to explore expanding the protocol, so this wiki is a place for them to share their efforts and collaborate in public.

What is RUN?

Run's website originally described it this way:

Imagine. Then, Build. A token protocol for whatever you can dream up.
jigs // interactive objects
RelayX's AMM is built based on RUN tokens
RelayX's AMM is built based on RUN tokens

Run is a protocol and SDK to build apps and tokens on Bitcoin. Developers create applications using interactive objects, called jigs. Jigs allow you to build almost anything you can dream up: tokens, contracts, artwork, elections, games, digital pets, and more — all run on Bitcoin.

Run supports full object-oriented programming and arbitrary code today. It is secure and performant for real applications. These docs will help you get started!

In a more technical language, RUN is a Bitcoin based UTXO-enforced layer2 protocol similar to javascript that allows you to create interactive objects. It can allow you to create NFTs or blockchain tokens that can be used to build pretty much anything.

Copyrights notice: the RUN protocol was created by Brenton Gunning under the MIT license.

Examples of projects that have been built

Here are a few of the projects that have already been built using Run:

  • game objects that users own and can resell
  • NFTs for art, music and 3D
  • DEXs and AMMs
  • social media platforms
  • Wrapped dollars (Stablecoins)
  • voting tokens
  • tracing products on the blockchain
  • handling permissions
  • loyalty cards

How it looks

Here is how some Run code looks. In this example we create an Axe NFT that causes 9001 damage. You can find other basic examples

class Weapon extends Jig {
    init(damage) {
        this.damage = damage
    }
}

class Axe extends Weapon {
    init() {
        super.init(9001)
    }
}

new Axe() instanceof Weapon  // is true

Feeling ready to get started ? then head over to the installation and setup.