Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
wriches committed May 3, 2023
0 parents commit c8beb3f
Show file tree
Hide file tree
Showing 91 changed files with 13,888 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Dependencies
/node_modules

# Production
/build

# Generated files
.docusaurus
.cache-loader

# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"tabWidth": 2,
"useTabs": false
}
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Website

This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.

### Installation

```
$ yarn
```

### Local Development

```
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
```

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

### Deployment

Using SSH:

```
$ USE_SSH=true yarn deploy
```

Not using SSH:

```
$ GIT_USER=<Your GitHub username> yarn deploy
```

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.
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/build-and-test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Build and Test Move Packages
slug: /build-and-test
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/custom-upgrade-policies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Custom Upgrade Policies
slug: /custom-upgrade-policies
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/debug-and-publish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Debug and Publish Move Packages
slug: /debug-and-publish
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/move-lock.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Move.lock File
slug: /move-lock
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/move-toml.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Move.toml File
slug: /move-toml
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/sui-move-library.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Move Library
slug: /sui-move-library
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/time.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Accessing Time in Sui Move
slug: /time
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/upgrade-packages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Upgrade Move Packages
slug: /upgrade-packages
---
4 changes: 4 additions & 0 deletions docs/build/create-smart-contracts/write-move-packages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Write Move Packages
slug: /write-move-packages
---
4 changes: 4 additions & 0 deletions docs/build/interact-with-sui/event-query-and-subscription.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Event Query and Subscription
slug: /event-query-and-subscription
---
4 changes: 4 additions & 0 deletions docs/build/interact-with-sui/json-rpc-api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: JSON-RPC API
slug: /json-rpc-api
---
4 changes: 4 additions & 0 deletions docs/build/interact-with-sui/programmable-tx-blocks.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Programmable Transaction Blocks with TypeScript SDK
slug: /programmable-tx-blocks
---
4 changes: 4 additions & 0 deletions docs/build/interact-with-sui/rust-sdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Rust SDK
slug: /rust-sdk
---
4 changes: 4 additions & 0 deletions docs/build/interact-with-sui/ts-js-sdk.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: TypeScript / JavaScript SDK
slug: /ts-js-sdk
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/build-and-test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Build and Test Move Packages
slug: /build-and-test
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/debug-and-publish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Debug and Publish Move Packages
slug: /debug-and-publish
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/immutable-objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Immutable Objects
slug: /immutable-objects
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/object-basics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Object Basics
slug: /object-basics
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/using-objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Using Objects
slug: /using-objects
---
4 changes: 4 additions & 0 deletions docs/build/program-with-objects/write-move-packages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Write Move Packages
slug: /write-move-packages
---
4 changes: 4 additions & 0 deletions docs/build/setup/client-cli.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Client CLI
slug: /client-cli
---
4 changes: 4 additions & 0 deletions docs/build/setup/connect-to-a-network.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Connect to a Sui Network
slug: /connect-to-a-network
---
4 changes: 4 additions & 0 deletions docs/build/setup/faucet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Faucet
slug: /faucet
---
4 changes: 4 additions & 0 deletions docs/build/setup/gas-changes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Gas Changes
slug: /gas-changes
---
4 changes: 4 additions & 0 deletions docs/build/setup/install-sui.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Install Sui
slug: /install-sui
---
4 changes: 4 additions & 0 deletions docs/build/setup/local-network.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Local Network
slug: /local-network
---
4 changes: 4 additions & 0 deletions docs/build/setup/object-display-standard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Object Display Standard
slug: /object-display-standard
---
4 changes: 4 additions & 0 deletions docs/contribute/code-of-conduct.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Code of Conduct
slug: /code-of-conduct
---
4 changes: 4 additions & 0 deletions docs/contribute/contribute-to-sui-repos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Contribute to Sui Repositories
slug: /contribute-to-sui-repos
---
4 changes: 4 additions & 0 deletions docs/contribute/improve-documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Improve Documentation
slug: /improve-documentation
---
4 changes: 4 additions & 0 deletions docs/contribute/localize-sui-docs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Localize Sui Documentation
slug: /localize-sui-docs
---
4 changes: 4 additions & 0 deletions docs/contribute/run-fullnode.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Run a Full Node
slug: /run-fullnode
---
4 changes: 4 additions & 0 deletions docs/contribute/run-validator.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Run a Validator
slug: /run-validator
---
4 changes: 4 additions & 0 deletions docs/contribute/submit-a-sip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Submit a SIP
slug: /submit-a-sip
---
4 changes: 4 additions & 0 deletions docs/learn/about-sui/how-sui-move-differs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: How Sui Move Differs From Core Move
slug: /how-sui-move-differs
---
4 changes: 4 additions & 0 deletions docs/learn/about-sui/sui-glossary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Glossary
slug: /sui-glossary
---
4 changes: 4 additions & 0 deletions docs/learn/about-sui/sui-security.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Security
slug: /sui-security
---
4 changes: 4 additions & 0 deletions docs/learn/about-sui/why-move.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Why Move?
slug: /why-move
---
4 changes: 4 additions & 0 deletions docs/learn/cryptography/intent-signing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Intent Signing
slug: /intent-signing
---
4 changes: 4 additions & 0 deletions docs/learn/cryptography/keys-and-addresses.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Keys and Addresses
slug: /keys-and-addresses
---
4 changes: 4 additions & 0 deletions docs/learn/cryptography/multisig.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Multisig
slug: /multisig
---
4 changes: 4 additions & 0 deletions docs/learn/cryptography/offline-signing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Offline Signing
slug: /offline-signing
---
4 changes: 4 additions & 0 deletions docs/learn/economics/gas-in-sui.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Gas in Sui
slug: /gas
---
4 changes: 4 additions & 0 deletions docs/learn/economics/gas-pricing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Gas Pricing
slug: /gas-pricing
---
4 changes: 4 additions & 0 deletions docs/learn/economics/proof-of-stake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Proof-of-Stake
slug: /proof-of-stake
---
4 changes: 4 additions & 0 deletions docs/learn/economics/sui-storage-fund.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Storage Fund
slug: /storage-fund
---
4 changes: 4 additions & 0 deletions docs/learn/economics/sui-token.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Token
slug: /sui-token
---
4 changes: 4 additions & 0 deletions docs/learn/economics/tokenomics-whitepaper.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Tokenomics Whitepaper
slug: /tokenomics-whitepaper
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/consensus-engine.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Consensus Engine
slug: /consensus-engine
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/object-and-package-versioning.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Object and Package Versioning
slug: /object-package-versioning
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/objects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Objects
slug: /objects
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/single-writer-apps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Single-Writer Apps
slug: /single-writer-apps
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/sponsored-transactions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sponsored Transactions
slug: /sponsored-transactions
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/sui-compared.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Compared to Other Blockchains
slug: /sui-comparison
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/transactions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Transactions
slug: /transactions
---
4 changes: 4 additions & 0 deletions docs/learn/how-sui-works/validators.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Validators
slug: /about-validators
---
4 changes: 4 additions & 0 deletions docs/learn/nodes/database-snapshots.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Database Snapshots
slug: /database-snapshots
---
4 changes: 4 additions & 0 deletions docs/learn/nodes/full-node.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Full Node
slug: /full-node
---
4 changes: 4 additions & 0 deletions docs/learn/nodes/logging.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Logging
slug: /logging
---
4 changes: 4 additions & 0 deletions docs/learn/nodes/validator.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Validator
slug: /run-a-validator
---
5 changes: 5 additions & 0 deletions docs/learn/sui-move/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: About Sui Move
sidebar_label: About
slug: /about-sui-move
---
4 changes: 4 additions & 0 deletions docs/learn/sui-move/the-move-book.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: The Move Book
slug: /move-book
---
4 changes: 4 additions & 0 deletions docs/reference/examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Examples
slug: /examples
---
4 changes: 4 additions & 0 deletions docs/reference/exchange-integration-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Exchange Integration Guide
slug: /exchange-integration-guide
---
4 changes: 4 additions & 0 deletions docs/reference/sui-framework-reference.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Sui Framework Reference
slug: /sui-framework-reference
---
Loading

0 comments on commit c8beb3f

Please sign in to comment.