All Projects â†’ maticnetwork â†’ matic-docs

maticnetwork / matic-docs

Licence: other
The official documentation for all Polygon products.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to matic-docs

typescript-eth-starter
🔌 Ethereum Dapp Basic Typescript Starter
Stars: ✭ 125 (-30.94%)
Mutual labels:  polygon, web3, matic
nft-swap-sdk
Ethereum's missing p2p NFT and token swap library for web3 developers. Written in TypeScript. Powered by 0x.
Stars: ✭ 200 (+10.5%)
Mutual labels:  polygon, web3, matic
nft-collection-scaffold
Production-ready code for an NFT Collection sale and minting on Ethereum, Polygon, Arbitrum or Binance Smart Chain
Stars: ✭ 53 (-70.72%)
Mutual labels:  polygon, matic
gooseberry
A command line utility to generate a knowledge base from Hypothesis annotations
Stars: ✭ 103 (-43.09%)
Mutual labels:  wiki, knowledge-base
TheRoadOfSO
学习安全运营的记录 | The knowledge base of security operation
Stars: ✭ 286 (+58.01%)
Mutual labels:  wiki, knowledge-base
Bogged-Token-List
Multichain token lists by Bogged Finance
Stars: ✭ 106 (-41.44%)
Mutual labels:  polygon, matic
OpenLoginSdk
Pluggable auth infrastructure for Web3 wallets and dapps
Stars: ✭ 108 (-40.33%)
Mutual labels:  polygon, web3
uniswap-arbitrage-flash-swap
Uniswap flash swap arbitrage solidity contracts
Stars: ✭ 341 (+88.4%)
Mutual labels:  polygon, web3
digital-garden
당근마켓 공개 지식 저장소
Stars: ✭ 309 (+70.72%)
Mutual labels:  wiki, knowledge-base
til
Personal Wiki of Interesting things I learn every day at the intersection of software, life & stuff aka my second brain 🧠️
Stars: ✭ 41 (-77.35%)
Mutual labels:  wiki, knowledge-base
Community
Modern Confluence alternative designed for internal & external docs, built with Golang + EmberJS
Stars: ✭ 1,286 (+610.5%)
Mutual labels:  wiki, knowledge-base
launch
Matic network mainnet v1 launch
Stars: ✭ 56 (-69.06%)
Mutual labels:  web3, matic
farm-army-backend
Track your farming and pool performance on the Binance Smart Chain, Polygon, Fantom, KuCoin Community Chain, Harmony, Celo - https://farm.army - nodejs backend
Stars: ✭ 86 (-52.49%)
Mutual labels:  polygon, matic
mind-flow
Another try of blogging or personal knowledge base
Stars: ✭ 22 (-87.85%)
Mutual labels:  wiki, knowledge-base
gatsby-theme-primer-wiki
A Gatsby Theme for Wiki/Docs/Knowledge Base, which using Primer style as the UI theme, can work well with Foam or Obsibian or just markdown files.
Stars: ✭ 85 (-53.04%)
Mutual labels:  wiki, knowledge-base
poly-flash
Flashloan on Polygon
Stars: ✭ 233 (+28.73%)
Mutual labels:  polygon, matic
messages
A python package designed to make sending messages easy and efficient!
Stars: ✭ 38 (-79.01%)
Mutual labels:  wiki
geth-connector
This repository served as an experiment playground for the alpha version of AKASHA desktop application. Now it is considered deprecated and seen as a stepping stone in the R&D of the AKASHA world framework. 🚀🌍🚀
Stars: ✭ 52 (-71.27%)
Mutual labels:  web3
pos
Point of sale system targeted towards pharmacies in India.
Stars: ✭ 46 (-74.59%)
Mutual labels:  pos
documentation
The LibreELEC wiki on GitBooks https://libreelec.wiki
Stars: ✭ 30 (-83.43%)
Mutual labels:  wiki

Polygon Wiki

Previously Matic Network


Polygon is a scaling solution for public blockchains that combines the best of Ethereum and sovereign blockchains to offer a full-stack scaling solution.

The Polygon Wiki is built using Docusaurus, a modern static website generator to build optimized websites quickly.

How to Contribute to Polygon Wiki

We believe one of the things that makes Polygon unique is its coherent design, and we seek to retain this defining characteristic. We have defined some guidelines to ensure new contributions only ever enhance the Wiki from the outset.

Requirements

  • Install Node.js version >= 12.13
  • Install Yarn version >= 1.5

Note that on macOS you also need Xcode and Command Line Tools.

Run the Wiki locally

  1. Fork the repo.

    For help, refer to GitHub Docs: Fork a repo.

  2. Clone your forked repo.

    git clone [email protected]:[your_github_handle]/matic-docs
    
  3. Navigate into the cloned folder.

    cd matic-docs
    
  4. Link your cloned repo to the upstream repo.

    For help, see GitHub Docs: Configuring a remote for a fork.

    git remote add upstream https://github.com/maticnetwork/matic-docs
    
  5. If you have already cloned the repository, be sure to sync your fork with the latest changes.

    For help, refer to GitHub Docs: Syncing a fork.

    git checkout master
    git fetch upstream
    git merge upstream/master
    
  6. Install the dependencies.

    yarn install
    

    The site is built using Docusaurus. You may need to install Docusaurus before running the Wiki locally.

    yarn add docusaurus
    

    Alternatively, you can upgrade Docusaurus.

    yarn upgrade @docusaurus/core@latest @docusaurus/preset-classic@latest
    
  7. Run the Wiki locally. The following command will start a local development server and open a browser window. Most changes are reflected live without having to restart the server.

    yarn start
    

Make changes using Git GUI and code editor

After running the Wiki locally on your machine, use a code editor to apply your changes before submitting your PR. Note that you must have a GitHub account and an understanding of Markdown syntax.

  1. Create a new branch for your changes.

    git checkout -b [new_branch_name]
    
  2. Commit your changes. Please be sure to review our Git Rules. In the commit message, please reference the issue it resolves. For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

    git commit -m "brief description of changes [Fixes #1234]"
    
  3. Push to your forked repository.

    git push
    
  4. Submit a PR against the master branch of the maticnetwork/matic-docs repo

  5. Add a title to your PR.

    For example, if you want to suggest edits to the "Getting Started" page, name your PR: Update /docs/develop/getting-started.md.

  6. Add a description to your PR. Please reference the issue it resolves.

    For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

  7. Write a brief description of the changes you have made. If possible, include screenshots and references.

You can apply UI changes, sidebar, and configuration design through the following files:

  • To modify the Sidebar navigation, edit sidebars.js
  • To modify the website page layout, edit docusaurus.config.js
  • To modify the blocks structure and the footer links, edit src/pages/index.js

Making changes using the Wiki website

You can easily submit an edit suggestion. Note that you must have a GitHub account and good knowledge of Markdown syntax.

  1. Navigate to the Polygon Wiki page that you want to edit.
  2. Scroll down until the end of that page
  3. Click on the link: Edit this page. It will forward you to the same page (Markdown format) hosted on GitHub.
  4. On the related GitHub page, click the pencil icon (similar to ) near the upper right corner of the file
  5. Apply your edits by modifying the Markdown file
  6. After you finish, scroll down until the end of that page to create a pull request
  7. Add a title to your PR. For example, if you want to suggest edits to the "Getting Started" page, name your PR: Update /docs/develop/getting-started.md.
  8. Add a description to your PR. Please reference the issue it resolves.

    For help, see GitHub Docs: Linking a pull request to an issue using a keyword.

  9. Write a brief description of the changes you have made. If possible, include screenshots and references.
  10. Click on the green button Propose changes to submit your changes. Note that submitting a change will write it to a new branch in your fork.

One of the Wiki maintainers will review your PR and either accept it or submit our review. Acceptable PRs will be approved & merged into the master branch.

Submit an Issue

  • Create a new issue to report a bug, request a feature, or suggest changes.
  • Comment on the issue if you want to be assigned to it so our team can assign the issue to you.
  • If you do not have a specific contribution in mind, you can also browse current issues.
  • Issues that additionally have the good first issue label are considered ideal for first-timers.

Build

This command generates static content into the build directory and can be served using any static content hosting service:

yarn build

Deployment

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the gh-pages branch.

GIT_USER=[your_github_handle] USE_SSH=true yarn deploy
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].