diff --git a/docs/2.develop/testing/integration.md b/docs/2.develop/testing/integration.md index becbfb47e40..61113357a27 100644 --- a/docs/2.develop/testing/integration.md +++ b/docs/2.develop/testing/integration.md @@ -38,7 +38,7 @@ Lets take a look at the test of our [Quickstart Project](../quickstart.md) [👋 ## Snippet II: Testing Donations -In most cases we will want to test complex methods involving multiple users and money transfers. A perfect example for this is our [Donation Example](https://github.com/near-examples/donation-js), which enables users to `donate` money to a beneficiary. Lets see its integration tests: +In most cases we will want to test complex methods involving multiple users and money transfers. A perfect example for this is our [Donation Example](https://github.com/near-examples/donation-examples), which enables users to `donate` money to a beneficiary. Lets see its integration tests diff --git a/docs/3.tutorials/examples/count-near.md b/docs/3.tutorials/examples/count-near.md index 88c5c561b96..e55a09fc625 100644 --- a/docs/3.tutorials/examples/count-near.md +++ b/docs/3.tutorials/examples/count-near.md @@ -2,6 +2,7 @@ id: count-near title: Count on NEAR --- + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {CodeTabs, Language, Github} from "@site/src/components/codetabs" @@ -13,64 +14,109 @@ Our counter example is a friendly decentralized app that stores a number and exp --- -## Starting the Counter +## Obtaining the Counter Example + +You have two options to start the Counter Example. + +1. You can use the app through `GitHub Codespaces`, which will open a web-based interactive environment. +2. Clone the repository locally and use it from your computer. + +| Codespaces | Clone locally | +| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | +| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/near-examples/counters) | 🌐 `https://github.com/near-examples/counters` | + +--- -You have two options to start the Counter: +## Structure of the Example -1. **Recommended:** use the app through Gitpod (a web-based interactive environment) -2. Clone the project locally . +The example is divided in two main components: + +1. The smart contract, available in two flavors: Rust and JavaScript +2. The frontend, that interacts with an already deployed contract. + + - -| Codespaces | Clone locally | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | -| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/near-examples/counters) | 🌐 `https://github.com/near-examples/js-counter.git` | +```bash +┌── sandbox-ts # sandbox testing +│ ├── src +│ │ └── main.ava.ts +│ ├── ava.config.cjs +│ └── package.json +├── src # contract's code +│ └── contract.ts +├── package.json # package manager +├── README.md +└── tsconfig.json # test script +``` -| Codespaces | Clone locally | -| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | -| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/near-examples/counters) | 🦀 `https://github.com/near-examples/rust-counter.git` | +```bash +┌── sandbox-ts # sandbox testing +│ ├── src +│ │ └── main.ava.ts +│ ├── ava.config.cjs +│ └── package.json +├── src # contract's code +│ └── lib.rs +├── build.sh # build script +├── Cargo.toml # package manager +├── README.md +└── rust-toolchain.toml +``` -If you choose Gitpod, a new browser window will open automatically with the code. Give it a minute, and the frontend will pop up (ensure the pop-up window is not blocked). +--- + +## Frontend + +The counter example includes a frontend interface designed to interact seamlessly with an existing smart contract that has been deployed. This interface allows users to increase or decrease the counter as needed. + +
+ +### Running the Frontend -If you are running the app locally, enter the directory where you cloned it and use `yarn` to install dependencies, and `yarn start` to start it. +To start the frontend you will need to install the dependencies and start the server. ```bash -cd counter +cd frontend yarn -yarn deploy yarn start ``` -Your contract will then be **compiled** and **deployed** to an **account** in the `testnet` network. When done, a browser window should open. +Go ahead and login with your NEAR account. If you don't have one, you will be able to create one in the moment. Once logged in, use the `+` and `-` buttons to increase and decrease the counter. Then, use the Gameboy buttons to reset it and make the counter blink an eye! ---- +![img](/docs/assets/examples/count-on-near.png) +_Frontend of the Counter_ -## Interacting With the Counter +
-Go ahead and login with your NEAR account. If you don't have one, you will be able to create one in the moment. Once logged in, use the `+` and `-` buttons to increase and decrease the counter. Then, use the Gameboy buttons to reset it and make the counter blink an eye! +### Understanding the Frontend -![img](/docs/assets/examples/count-on-near.png) -*Frontend of the Counter* +The frontend is composed by a single HTML file (`/index.html`). This file defines the components displayed in the screen. ---- +The website's logic lives in `/index.js`, which communicates with the contract through `/near-wallet.js`. You will notice in `/index.js` the following code: -## Structure of a dApp + + + + + -Now that you understand what the dApp does, let us take a closer look to its structure: +It indicates our app, when it starts, to check if the user is already logged in and execute either `signedInFlow()` or `signedOutFlow()`. -1. The frontend code lives in the `/frontend` folder. -2. The smart contract code is in the `/contract` folder. +--- -### Contract +## Smart Contract The contract presents 4 methods: `get_num`, `increment`, `decrement`, and `reset`. The method `get_num` retrieves the current value, and the rest modify it. @@ -87,56 +133,102 @@ The contract presents 4 methods: `get_num`, `increment`, `decrement`, and `reset
-### Frontend +--- -The frontend is composed by a single HTML file (`/index.html`). This file defines the components displayed in the screen. +### Testing the Contract -The website's logic lives in `/assets/js/index.js`, which communicates with the contract through `/near-interface.js`. You will notice in `/assets/js/index.js` the following code: +The contract readily includes a set of unit and sandbox testing to validate its functionality. To execute the tests, run the following commands: - - - - - + + -It indicates our app, when it starts, to check if the user is already logged in and execute either `signedInFlow()` or `signedOutFlow()`. +```bash +cd contract-ts +yarn +yarn test +``` ---- + + + + ```bash + cd contract-rs + ./test.sh + ``` -## Testing + -When writing smart contracts it is very important to test all methods exhaustively. In this -project you have two types of tests: unit and integration. Before digging in them, -go ahead and perform the tests present in the dApp through the command `yarn test`. + -### Unit test +:::tip +The `integration tests` use a sandbox to create NEAR users and simulate interactions with the contract. +::: -Unit tests check individual functions in the smart contract. Right now only Rust implements unit testing. +
- - - - - +### Deploying the Contract to the NEAR network -### Integration test +In order to deploy the contract you will need to [create a NEAR account](/develop/contracts/quickstart#create-a-testnet-account). -Integration tests are generally written in javascript. They automatically deploy a new -contract and execute methods on it. In this way, integration tests simulate interactions -from users in a realistic scenario. You will find the integration tests for the `counter` -in `tests/integration-tests`. + + - - - - - +```bash +# Optional - create an account +near create-account --useFaucet + +# Deploy the contract +cd contract-ts +yarn build +near deploy ./build/counter.wasm +``` + + + + +```bash + # Optional - create an account + near create-account --useFaucet + + # Deploy the contract +cd contract-rs +./build.sh +near deploy ./target/wasm32-unknown-unknown/release/counter.wasm +``` + + + + +:::tip +To interact with your contract from the [frontend](#frontend), simply replace the variable `CONTRACT_NAME` in the `index.js` file. +::: + +
+ +### CLI: Interacting with the Contract + +To interact with the contract through the console, you can use the following commands + +```bash +# Get the current number of the counter +near view counter.near-examples.testnet get_num + +# Increment the counter +# Replace with your account ID +near call counter.near-examples.testnet increment --accountId + +# Decrement the counter +# Replace with your account ID +near call counter.near-examples.testnet decrement --accountId + +# Reset the counter to zero +# Replace with your account ID +near call counter.near-examples.testnet reset --accountId +``` + +:::tip +If you're using your own account, replace `counter.near-examples.testnet` with your `accountId`. +::: --- diff --git a/docs/3.tutorials/examples/donation.md b/docs/3.tutorials/examples/donation.md index 56e0f918408..893bb8bdb29 100644 --- a/docs/3.tutorials/examples/donation.md +++ b/docs/3.tutorials/examples/donation.md @@ -44,7 +44,6 @@ The example is divided in two main components: │ │ └── main.ava.ts │ ├── ava.config.cjs │ └── package.json -├── package.json ├── src # contract's code │ ├── contract.ts │ ├── model.ts @@ -103,7 +102,7 @@ Go ahead and login with your NEAR account. If you don't have one, you will be ab ### Understanding the Frontend -The frontend is composed by a single HTML file (`/index.html`), while the logic lives in `/assets/js/index.js`, which communicates with the contract through `/assets/js/near/utils.js`. +The frontend is composed by a single HTML file (`/index.html`), while the logic lives in `/index.js`, which communicates with the contract through `/near-interface.js`. ```bash +# Optional - create an account +near create-account --useFaucet + +# Deploy the contract cd contract-ts yarn build -near deploy ./build/contract.wasm +near deploy ./build/donation.wasm ``` ```bash +# Optional - create an account +near create-account --useFaucet + +# Deploy the contract cd contract-rs ./build.sh -near deploy ./target/wasm32-unknown-unknown/release/contract.wasm +near deploy ./target/wasm32-unknown-unknown/release/donation.wasm ``` @@ -205,11 +212,33 @@ To interact with your contract from the [frontend](#frontend), simply replace th ### CLI: Interacting with the Contract +To interact with the contract through the console, you can use the following commands + ```bash -near view donation.near-examples.testnet get_donations -near call donation.near-examples.testnet donate --accountId --deposit 0.1 --> +# Get donations +# Optional arguments for pagination +near view donation.near-examples.testnet get_donations --args='{"from_index": "0","limit": "10"}' + +# Get beneficiary +near view donation.near-examples.testnet get_beneficiary + +# Get number of donors +near view donation.near-examples.testnet number_of_donors + +# Get donation for an account +# Require accountId +near view donation.near-examples.testnet get_donation_for_account --args='{"account_id":}' + +# Donate to the contract +# Replace with your account ID +# Require deposit +near call donation.near-examples.testnet donate --accountId --deposit 0.1 ``` +:::tip +If you're using your own account, replace `donation.near-examples.testnet` with your `accountId`. +::: + --- ## Moving Forward diff --git a/docs/3.tutorials/examples/guest-book.md b/docs/3.tutorials/examples/guest-book.md index e69b3319714..cd8121fbc85 100644 --- a/docs/3.tutorials/examples/guest-book.md +++ b/docs/3.tutorials/examples/guest-book.md @@ -2,76 +2,125 @@ id: guest-book title: Guest Book --- + import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import {CodeTabs, Language, Github} from "@site/src/components/codetabs" Our Guest Book example is a simple app composed by two main components: - 1. A smart contract that stores messages from users, allowing to attach money to them. - 2. A simple web-based frontend that displays the last 10 messages posted. +1. A smart contract that stores messages from users, allowing to attach money to them. +2. A simple web-based frontend that displays the last 10 messages posted. ![img](/docs/assets/examples/guest-book.png) --- -## Starting the Project +## Obtaining the Guest book Example + +You have two options to start the Guest book Example. + +1. You can use the app through `GitHub Codespaces`, which will open a web-based interactive environment. +2. Clone the repository locally and use it from your computer. + +| Codespaces | Clone locally | +| --------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------- | +| [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/near-examples/guest-book-examples) | 🌐 `https://github.com/near-examples/guest-book-examples` | + +--- + +## Structure of the Example + +The example is divided in two main components: + +1. The smart contract, available in two flavors: Rust and JavaScript +2. The frontend, that interacts with an already deployed contract. -You have two options to start using the project. The first and recommended is to use the app through Gitpod, which will open a web-based interactive environment. The second option is to clone the repository locally, for which you will need to install all the [Prerequisites](../../2.develop/prerequisites.md). + - - + - | Gitpod | Clone locally | - | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------- | - | Open in Gitpod | 🌐 `https://github.com/near-examples/guest-book-js` | +```bash +┌── sandbox-ts # sandbox testing +│ ├── src +│ │ └── main.ava.ts +│ ├── ava.config.cjs +│ └── package.json +├── src # contract's code +│ ├── contract.ts +│ └── model.ts +├── package.json # package manager +├── README.md +└── tsconfig.json # test script +``` + - | Gitpod | Clone locally | - | ------------------- | --------------------- | - | Open in Gitpod | 🦀 `https://github.com/near-examples/guest-book-rust` | +```bash +┌── sandbox-ts # sandbox testing +│ ├── src +│ │ └── main.ava.ts +│ ├── ava.config.cjs +│ └── package.json +├── src # contract's code +│ └── lib.rs +├── build.sh # build script +├── Cargo.toml # package manager +├── README.md +├── rust-toolchain.toml +└── test.sh # test script +``` + -If you choose Gitpod a new browser window will open automatically with the code, give it a minute and the frontend will pop-up (make sure the pop-up window is not blocked). +--- + +## Frontend + +The guest book example includes a frontend that interacts with an already deployed smart contract, allowing user to sign a message. -If you are running the app locally, enter the directory where you cloned it and use `yarn` to install dependencies, and `yarn start` to start it. +
+ +### Running the Frontend + +To start the frontend you will need to install the dependencies and start the server. ```bash -cd guest-book +cd frontend yarn -yarn deploy yarn start ``` -Your contract will then be **compiled** and **deployed** to an **account** in the `testnet` network. When done, a browser window should open. +Go ahead and login with your NEAR account. If you don't have one, you will be able to create one in the moment. Once logged in, you will be able to sign a message in the guest book. You can further send some money alongside your message. If you attach more than 0.01Ⓝ then your message will be marked as "premium". ---- +
-## Interacting With the Guest Book - -![img](/docs/assets/examples/guest-book.png) -*Frontend of the Guest Book app* +### Understanding the Frontend -Go ahead and login with your NEAR account. If you don't have one, you will be able to create one in the moment. Once logged in, -you will be able to sign a message in the guest book. You can further send some money alongside your message. If you attach -more than 0.01Ⓝ then your message will be marked as "premium". +The frontend is composed by a single HTML file (`/index.html`) and uses REACT. Check `/App.js` and `/index.js` to understand how +components are displayed in the screen. ---- +You will notice in `/index.js` the following code: -## Structure of a dApp + + + + + -Now that you understand what the dApp does, let us take a closer look to its structure: +It setups the necessary variables and starts the app. -1. The frontend code lives in the `/frontend` folder. -2. The smart contract code is in the `/contract` folder. +--- -### Contract +## Smart Contract -The contract presents 2 methods: `add_message` and `get_message`. +The contract presents 3 methods: `add_message`, `get_message` and `total_messages`. @@ -82,56 +131,107 @@ The contract presents 2 methods: `add_message` and `get_message`. + start="29" end="53" /> -### Frontend +
-The frontend is composed by a single HTML file (`/index.html`) and uses REACT. Check `/App.js` and `/index.js` to understand how -components are displayed in the screen. +### Testing the Contract -You will notice in `/assets/js/index.js` the following code: +The contract readily includes a set of unit and sandbox testing to validate its functionality. To execute the tests, run the following commands: - - - - - + + -It setups the necessary variables and starts the app. +```bash +cd contract-ts +yarn +yarn test +``` ---- + + + + ```bash + cd contract-rs + ./test.sh + ``` -## Testing + -When writing smart contracts it is very important to test all methods exhaustively. In this -project you have two types of tests: unit and integration. Before digging in them, -go ahead and perform the tests present in the dApp through the command `yarn test`. + -### Unit test +:::tip +The `integration tests` use a sandbox to create NEAR users and simulate interactions with the contract. +::: -Unit tests check individual functions in the smart contract. Right now only rust implements unit testing. +
- - - - - +### Deploying the Contract to the NEAR network -### Integration test +In order to deploy the contract you will need to [create a NEAR account](/develop/contracts/quickstart#create-a-testnet-account). -Integration tests are generally written in JavaScript. They automatically deploy your contract and execute methods on it. In this way, integration tests simulate interactions between the contract and the users in a realistic scenario. You will find the integration tests for `hello-near` in `integration-tests/`. + + - - - - - +```bash +# Optional - create an account +near create-account --useFaucet + +# Deploy the contract +cd contract-ts +yarn build +near deploy ./build/guestbook.wasm +``` + + + + +```bash +# Optional - create an account +near create-account --useFaucet + +# Deploy the contract +cd contract-rs +./build.sh +near deploy ./target/wasm32-unknown-unknown/release/guestbook.wasm +``` + + + + +:::tip +To interact with your contract from the [frontend](#frontend), simply replace the variable `CONTRACT_NAME` in the `index.js` file. +::: + +
+ +### CLI: Interacting with the Contract + +To interact with the contract through the console, you can use the following commands + +```bash +# Get messages with optional arguments for pagination +near view guestbook.near-examples.testnet get_messages --args='{"from_index": "0","limit": "10"}' + +# Get total number of messages +near view guestbook.near-examples.testnet total_messages + +# Add a message +# Replace with your account ID +# Required a text +# Optional deposit to make the message premium +near call guestbook.near-examples.testnet add_message '{"text":"Hello Near"}' --accountId --deposit 0.1 +``` + +:::tip +If you're using your own account, replace `guestbook.near-examples.testnet` with your `accountId`. +::: + +--- + +## Moving Forward + +A nice way to learn is by trying to expand a contract. You can modify the guestbook example to incorporate a feature where users can give likes to messages. Additionally, implement a method to toggle the like. diff --git a/docs/4.tools/cli.md b/docs/4.tools/cli.md index 6f7d76acc97..ed1e6e23830 100644 --- a/docs/4.tools/cli.md +++ b/docs/4.tools/cli.md @@ -333,7 +333,7 @@ Saving key to '~/.near-credentials/testnet/example.testnet.json' #### 3a) `near generate-key --fromSeedPhrase="your seed phrase"` -> Uses a seed phrase to display a public key and [implicit account](http://docs.near.org/docs/roles/integrator/implicit-accounts) +> Uses a seed phrase to display a public key and [implicit account](../1.concepts/basics/accounts/account-id.md#implicit-accounts-implicit-accounts) ```bash near generate-key --seedPhrase="antique attitude say evolve ring arrive hollow auto wide bronze usual unfold" diff --git a/website/static/docs/assets/NEAR-Wallet.jpg b/website/static/docs/assets/NEAR-Wallet.jpg deleted file mode 100644 index 0af41656c00..00000000000 Binary files a/website/static/docs/assets/NEAR-Wallet.jpg and /dev/null differ diff --git a/website/static/docs/assets/SOLogoSm.svg b/website/static/docs/assets/SOLogoSm.svg deleted file mode 100644 index b267768b7d4..00000000000 --- a/website/static/docs/assets/SOLogoSm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/website/static/docs/assets/accounts-compare-ethereum-v-near.png b/website/static/docs/assets/accounts-compare-ethereum-v-near.png deleted file mode 100644 index 67c6f2ca40c..00000000000 Binary files a/website/static/docs/assets/accounts-compare-ethereum-v-near.png and /dev/null differ diff --git a/website/static/docs/assets/as-getData-gasBurnt.png b/website/static/docs/assets/as-getData-gasBurnt.png deleted file mode 100644 index 0840a40b7d7..00000000000 Binary files a/website/static/docs/assets/as-getData-gasBurnt.png and /dev/null differ diff --git a/website/static/docs/assets/as-setData-gasBurnt.png b/website/static/docs/assets/as-setData-gasBurnt.png deleted file mode 100644 index 0eba6764114..00000000000 Binary files a/website/static/docs/assets/as-setData-gasBurnt.png and /dev/null differ diff --git a/website/static/docs/assets/authorize-near-cli.png b/website/static/docs/assets/authorize-near-cli.png deleted file mode 100644 index 92cd7acf628..00000000000 Binary files a/website/static/docs/assets/authorize-near-cli.png and /dev/null differ diff --git a/website/static/docs/assets/concepts/transaction-atomicity.png b/website/static/docs/assets/concepts/transaction-atomicity.png deleted file mode 100644 index 6ae295fb1a6..00000000000 Binary files a/website/static/docs/assets/concepts/transaction-atomicity.png and /dev/null differ diff --git a/website/static/docs/assets/concepts/transaction-structure.png b/website/static/docs/assets/concepts/transaction-structure.png deleted file mode 100644 index 066cca08647..00000000000 Binary files a/website/static/docs/assets/concepts/transaction-structure.png and /dev/null differ diff --git a/website/static/docs/assets/create-account/account-funded.png b/website/static/docs/assets/create-account/account-funded.png deleted file mode 100644 index e75ecc55a98..00000000000 Binary files a/website/static/docs/assets/create-account/account-funded.png and /dev/null differ diff --git a/website/static/docs/assets/create-account/email-text-recovery.jpg b/website/static/docs/assets/create-account/email-text-recovery.jpg deleted file mode 100644 index c891cbd219d..00000000000 Binary files a/website/static/docs/assets/create-account/email-text-recovery.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/fund-your-account.jpg b/website/static/docs/assets/create-account/fund-your-account.jpg deleted file mode 100644 index 69ebdc6bb5b..00000000000 Binary files a/website/static/docs/assets/create-account/fund-your-account.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/local-storage.png b/website/static/docs/assets/create-account/local-storage.png deleted file mode 100644 index 618cbf35398..00000000000 Binary files a/website/static/docs/assets/create-account/local-storage.png and /dev/null differ diff --git a/website/static/docs/assets/create-account/mainnet-create-account.jpg b/website/static/docs/assets/create-account/mainnet-create-account.jpg deleted file mode 100644 index 4e816ab4d1a..00000000000 Binary files a/website/static/docs/assets/create-account/mainnet-create-account.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/mainnet-success.jpg b/website/static/docs/assets/create-account/mainnet-success.jpg deleted file mode 100644 index fc353c9ac97..00000000000 Binary files a/website/static/docs/assets/create-account/mainnet-success.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/mainnet-wallet-dashboard.jpg b/website/static/docs/assets/create-account/mainnet-wallet-dashboard.jpg deleted file mode 100644 index 8d2bb39565e..00000000000 Binary files a/website/static/docs/assets/create-account/mainnet-wallet-dashboard.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/mainnet-wallet-landing.jpg b/website/static/docs/assets/create-account/mainnet-wallet-landing.jpg deleted file mode 100644 index a25fac32601..00000000000 Binary files a/website/static/docs/assets/create-account/mainnet-wallet-landing.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/purchase_near.jpg b/website/static/docs/assets/create-account/purchase_near.jpg deleted file mode 100644 index e57a8fc0def..00000000000 Binary files a/website/static/docs/assets/create-account/purchase_near.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/security-method.jpg b/website/static/docs/assets/create-account/security-method.jpg deleted file mode 100644 index 520454fe877..00000000000 Binary files a/website/static/docs/assets/create-account/security-method.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/seed-phrase.jpg b/website/static/docs/assets/create-account/seed-phrase.jpg deleted file mode 100644 index 9894b2b80b4..00000000000 Binary files a/website/static/docs/assets/create-account/seed-phrase.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/testnet-create-account.jpg b/website/static/docs/assets/create-account/testnet-create-account.jpg deleted file mode 100644 index 67324aefcd3..00000000000 Binary files a/website/static/docs/assets/create-account/testnet-create-account.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/testnet-success.jpg b/website/static/docs/assets/create-account/testnet-success.jpg deleted file mode 100644 index c867da77eca..00000000000 Binary files a/website/static/docs/assets/create-account/testnet-success.jpg and /dev/null differ diff --git a/website/static/docs/assets/create-account/url-breakdown.png b/website/static/docs/assets/create-account/url-breakdown.png deleted file mode 100644 index 7f9a9b56253..00000000000 Binary files a/website/static/docs/assets/create-account/url-breakdown.png and /dev/null differ diff --git a/website/static/docs/assets/create-near-app--output-variants.png b/website/static/docs/assets/create-near-app--output-variants.png deleted file mode 100644 index 882b88f4a2a..00000000000 Binary files a/website/static/docs/assets/create-near-app--output-variants.png and /dev/null differ diff --git a/website/static/docs/assets/cross-contract-call-jest-test.png b/website/static/docs/assets/cross-contract-call-jest-test.png deleted file mode 100644 index 9c6260b7a1f..00000000000 Binary files a/website/static/docs/assets/cross-contract-call-jest-test.png and /dev/null differ diff --git a/website/static/docs/assets/default-token-contract-test.png b/website/static/docs/assets/default-token-contract-test.png deleted file mode 100644 index 8dee40e97f8..00000000000 Binary files a/website/static/docs/assets/default-token-contract-test.png and /dev/null differ diff --git a/website/static/docs/assets/develop/develop.png b/website/static/docs/assets/develop/develop.png deleted file mode 100644 index b7e2aeec32b..00000000000 Binary files a/website/static/docs/assets/develop/develop.png and /dev/null differ diff --git a/website/static/docs/assets/develop/examples.png b/website/static/docs/assets/develop/examples.png deleted file mode 100644 index 35b10cf04a7..00000000000 Binary files a/website/static/docs/assets/develop/examples.png and /dev/null differ diff --git a/website/static/docs/assets/develop/quickstart.png b/website/static/docs/assets/develop/quickstart.png deleted file mode 100644 index e1f9e20fbb1..00000000000 Binary files a/website/static/docs/assets/develop/quickstart.png and /dev/null differ diff --git a/website/static/docs/assets/develop/secure.png b/website/static/docs/assets/develop/secure.png deleted file mode 100644 index 507f5636e64..00000000000 Binary files a/website/static/docs/assets/develop/secure.png and /dev/null differ diff --git a/website/static/docs/assets/develop/test.png b/website/static/docs/assets/develop/test.png deleted file mode 100644 index 23948cecacf..00000000000 Binary files a/website/static/docs/assets/develop/test.png and /dev/null differ diff --git a/website/static/docs/assets/develop/tutorials.png b/website/static/docs/assets/develop/tutorials.png deleted file mode 100644 index f88e22f04d5..00000000000 Binary files a/website/static/docs/assets/develop/tutorials.png and /dev/null differ diff --git a/website/static/docs/assets/docker-logs.png b/website/static/docs/assets/docker-logs.png deleted file mode 100644 index 9ccca52349f..00000000000 Binary files a/website/static/docs/assets/docker-logs.png and /dev/null differ diff --git a/website/static/docs/assets/entercode.png b/website/static/docs/assets/entercode.png deleted file mode 100644 index d5f68308834..00000000000 Binary files a/website/static/docs/assets/entercode.png and /dev/null differ diff --git a/website/static/docs/assets/entry-point.gif b/website/static/docs/assets/entry-point.gif deleted file mode 100644 index e96a70dab70..00000000000 Binary files a/website/static/docs/assets/entry-point.gif and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png deleted file mode 100644 index f93d48f833b..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-1024x1016.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png deleted file mode 100644 index eb965ed4be4..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-150x150.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png deleted file mode 100644 index 0471d0abb2e..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-300x298.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png deleted file mode 100644 index 3391fa60822..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM-768x762.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM.png deleted file mode 100644 index ad6fcdc865c..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-11.07.17-AM.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png deleted file mode 100644 index 329779f7075..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-1024x318.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png deleted file mode 100644 index b7141f00733..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-300x93.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png deleted file mode 100644 index 7542e7f8b9c..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM-768x238.png and /dev/null differ diff --git a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM.png b/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM.png deleted file mode 100644 index 09d1447bea6..00000000000 Binary files a/website/static/docs/assets/evm/Screen-Shot-2021-01-01-at-2.57.49-PM.png and /dev/null differ diff --git a/website/static/docs/assets/evm/adoption-artifact-improved-1024x257.jpg b/website/static/docs/assets/evm/adoption-artifact-improved-1024x257.jpg deleted file mode 100644 index d2bc336f252..00000000000 Binary files a/website/static/docs/assets/evm/adoption-artifact-improved-1024x257.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/adoption-artifact-improved-1536x385.jpg b/website/static/docs/assets/evm/adoption-artifact-improved-1536x385.jpg deleted file mode 100644 index cb4e3dba092..00000000000 Binary files a/website/static/docs/assets/evm/adoption-artifact-improved-1536x385.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/adoption-artifact-improved-2048x514.jpg b/website/static/docs/assets/evm/adoption-artifact-improved-2048x514.jpg deleted file mode 100644 index 7926d51f44d..00000000000 Binary files a/website/static/docs/assets/evm/adoption-artifact-improved-2048x514.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/adoption-artifact-improved-300x75.jpg b/website/static/docs/assets/evm/adoption-artifact-improved-300x75.jpg deleted file mode 100644 index 536a8853ecf..00000000000 Binary files a/website/static/docs/assets/evm/adoption-artifact-improved-300x75.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/adoption-artifact-improved-768x193.jpg b/website/static/docs/assets/evm/adoption-artifact-improved-768x193.jpg deleted file mode 100644 index 46f287fa1a2..00000000000 Binary files a/website/static/docs/assets/evm/adoption-artifact-improved-768x193.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved-1024x324.jpg b/website/static/docs/assets/evm/dev-tools-improved-1024x324.jpg deleted file mode 100644 index b58ada9dfb3..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved-1024x324.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved-1536x486.jpg b/website/static/docs/assets/evm/dev-tools-improved-1536x486.jpg deleted file mode 100644 index 88fc53aea63..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved-1536x486.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved-2048x648.jpg b/website/static/docs/assets/evm/dev-tools-improved-2048x648.jpg deleted file mode 100644 index 692864a8780..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved-2048x648.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved-300x95.jpg b/website/static/docs/assets/evm/dev-tools-improved-300x95.jpg deleted file mode 100644 index b56631bc798..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved-300x95.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved-768x243.jpg b/website/static/docs/assets/evm/dev-tools-improved-768x243.jpg deleted file mode 100644 index 1ee7676d619..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved-768x243.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/dev-tools-improved.jpg b/website/static/docs/assets/evm/dev-tools-improved.jpg deleted file mode 100644 index ac5875c3825..00000000000 Binary files a/website/static/docs/assets/evm/dev-tools-improved.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1024x482.jpg b/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1024x482.jpg deleted file mode 100644 index e4b2add052e..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1024x482.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1536x723.jpg b/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1536x723.jpg deleted file mode 100644 index fc8ea2513b5..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-1536x723.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-2048x964.jpg b/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-2048x964.jpg deleted file mode 100644 index 5c3b3ad0165..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-2048x964.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-300x141.jpg b/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-300x141.jpg deleted file mode 100644 index 0fcd0c46058..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-300x141.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-768x362.jpg b/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-768x362.jpg deleted file mode 100644 index 2dbba3635c2..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-callEvm-collapsed-768x362.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1024x978.jpg b/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1024x978.jpg deleted file mode 100644 index d0ac5c1bfe3..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1024x978.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1536x1467.jpg b/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1536x1467.jpg deleted file mode 100644 index 7a9f14352cf..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-1536x1467.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-2048x1956.jpg b/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-2048x1956.jpg deleted file mode 100644 index 26f9a5ce042..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-2048x1956.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-300x286.jpg b/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-300x286.jpg deleted file mode 100644 index c04fbe172e5..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-300x286.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-768x733.jpg b/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-768x733.jpg deleted file mode 100644 index 02849389330..00000000000 Binary files a/website/static/docs/assets/evm/evm-simple-with-sections-numbers-improved-768x733.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/josh.betanet-eth-address-1024x442.jpg b/website/static/docs/assets/evm/josh.betanet-eth-address-1024x442.jpg deleted file mode 100644 index 082ffe0a1ee..00000000000 Binary files a/website/static/docs/assets/evm/josh.betanet-eth-address-1024x442.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/josh.betanet-eth-address-1536x663.jpg b/website/static/docs/assets/evm/josh.betanet-eth-address-1536x663.jpg deleted file mode 100644 index b49f71e88ec..00000000000 Binary files a/website/static/docs/assets/evm/josh.betanet-eth-address-1536x663.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/josh.betanet-eth-address-300x130.jpg b/website/static/docs/assets/evm/josh.betanet-eth-address-300x130.jpg deleted file mode 100644 index 73261898ce6..00000000000 Binary files a/website/static/docs/assets/evm/josh.betanet-eth-address-300x130.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/josh.betanet-eth-address-768x332.jpg b/website/static/docs/assets/evm/josh.betanet-eth-address-768x332.jpg deleted file mode 100644 index 70d92d31bef..00000000000 Binary files a/website/static/docs/assets/evm/josh.betanet-eth-address-768x332.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/josh.betanet-eth-address.jpg b/website/static/docs/assets/evm/josh.betanet-eth-address.jpg deleted file mode 100644 index c47b19adcd8..00000000000 Binary files a/website/static/docs/assets/evm/josh.betanet-eth-address.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-1024x591.jpg b/website/static/docs/assets/evm/pet-shop-1024x591.jpg deleted file mode 100644 index 90133a9781c..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-1024x591.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-1536x887.jpg b/website/static/docs/assets/evm/pet-shop-1536x887.jpg deleted file mode 100644 index d7221b3247d..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-1536x887.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-2048x1182.jpg b/website/static/docs/assets/evm/pet-shop-2048x1182.jpg deleted file mode 100644 index 0afb5d03230..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-2048x1182.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-300x173.jpg b/website/static/docs/assets/evm/pet-shop-300x173.jpg deleted file mode 100644 index 40f9ef9d480..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-300x173.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-768x443.jpg b/website/static/docs/assets/evm/pet-shop-768x443.jpg deleted file mode 100644 index 74cf5e4cfd3..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-768x443.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-1024x527.jpg b/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-1024x527.jpg deleted file mode 100644 index 4249b6e367f..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-1024x527.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-300x154.jpg b/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-300x154.jpg deleted file mode 100644 index d7d1f4d1f97..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-300x154.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-768x395.jpg b/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-768x395.jpg deleted file mode 100644 index 8f1ae453b1a..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er-768x395.jpg and /dev/null differ diff --git a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er.jpg b/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er.jpg deleted file mode 100644 index b52b355d707..00000000000 Binary files a/website/static/docs/assets/evm/pet-shop-nearprovider-sma11er.jpg and /dev/null differ diff --git a/website/static/docs/assets/figment-learn-color.png b/website/static/docs/assets/figment-learn-color.png deleted file mode 100644 index bee4ebc1ea8..00000000000 Binary files a/website/static/docs/assets/figment-learn-color.png and /dev/null differ diff --git a/website/static/docs/assets/figment-learn-compact.png b/website/static/docs/assets/figment-learn-compact.png deleted file mode 100644 index ba65317d299..00000000000 Binary files a/website/static/docs/assets/figment-learn-compact.png and /dev/null differ diff --git a/website/static/docs/assets/gitpod-create-fresh-workspace.png b/website/static/docs/assets/gitpod-create-fresh-workspace.png deleted file mode 100644 index 5b4ec5bc706..00000000000 Binary files a/website/static/docs/assets/gitpod-create-fresh-workspace.png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo (1).svg b/website/static/docs/assets/gray_near_logo (1).svg deleted file mode 100644 index e3babd2836b..00000000000 --- a/website/static/docs/assets/gray_near_logo (1).svg +++ /dev/null @@ -1 +0,0 @@ -near_logo \ No newline at end of file diff --git a/website/static/docs/assets/gray_near_logo.svg b/website/static/docs/assets/gray_near_logo.svg deleted file mode 100644 index e3babd2836b..00000000000 --- a/website/static/docs/assets/gray_near_logo.svg +++ /dev/null @@ -1 +0,0 @@ -near_logo \ No newline at end of file diff --git a/website/static/docs/assets/gray_near_logo_bigger.png b/website/static/docs/assets/gray_near_logo_bigger.png deleted file mode 100644 index 0260e912111..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_bigger.png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo_md (1).png b/website/static/docs/assets/gray_near_logo_md (1).png deleted file mode 100644 index d8b5ce304a6..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_md (1).png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo_md (2).png b/website/static/docs/assets/gray_near_logo_md (2).png deleted file mode 100644 index d8b5ce304a6..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_md (2).png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo_md (3).png b/website/static/docs/assets/gray_near_logo_md (3).png deleted file mode 100644 index d8b5ce304a6..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_md (3).png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo_md-1.png b/website/static/docs/assets/gray_near_logo_md-1.png deleted file mode 100644 index d8b5ce304a6..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_md-1.png and /dev/null differ diff --git a/website/static/docs/assets/gray_near_logo_md.png b/website/static/docs/assets/gray_near_logo_md.png deleted file mode 100644 index d8b5ce304a6..00000000000 Binary files a/website/static/docs/assets/gray_near_logo_md.png and /dev/null differ diff --git a/website/static/docs/assets/guest-book_as_unit-test.jpg b/website/static/docs/assets/guest-book_as_unit-test.jpg deleted file mode 100644 index eb2d622d7f6..00000000000 Binary files a/website/static/docs/assets/guest-book_as_unit-test.jpg and /dev/null differ diff --git a/website/static/docs/assets/guest-book_fe_build_success.jpg b/website/static/docs/assets/guest-book_fe_build_success.jpg deleted file mode 100644 index b2c8a922c4b..00000000000 Binary files a/website/static/docs/assets/guest-book_fe_build_success.jpg and /dev/null differ diff --git a/website/static/docs/assets/guest-book_fe_deployment_fail_compile.jpg b/website/static/docs/assets/guest-book_fe_deployment_fail_compile.jpg deleted file mode 100644 index 19d6d689080..00000000000 Binary files a/website/static/docs/assets/guest-book_fe_deployment_fail_compile.jpg and /dev/null differ diff --git a/website/static/docs/assets/guest-book_fe_form_donation.jpg b/website/static/docs/assets/guest-book_fe_form_donation.jpg deleted file mode 100644 index 3c091f3af38..00000000000 Binary files a/website/static/docs/assets/guest-book_fe_form_donation.jpg and /dev/null differ diff --git a/website/static/docs/assets/guest-book_fe_logged-in.jpg b/website/static/docs/assets/guest-book_fe_logged-in.jpg deleted file mode 100644 index e1dc2cde5e5..00000000000 Binary files a/website/static/docs/assets/guest-book_fe_logged-in.jpg and /dev/null differ diff --git a/website/static/docs/assets/guest-book_fe_tests_complete.jpg b/website/static/docs/assets/guest-book_fe_tests_complete.jpg deleted file mode 100644 index badc8114200..00000000000 Binary files a/website/static/docs/assets/guest-book_fe_tests_complete.jpg and /dev/null differ diff --git a/website/static/docs/assets/header.svg b/website/static/docs/assets/header.svg deleted file mode 100644 index c41073658aa..00000000000 --- a/website/static/docs/assets/header.svg +++ /dev/null @@ -1 +0,0 @@ -illo-careers \ No newline at end of file diff --git a/website/static/docs/assets/icons/GitHub.png b/website/static/docs/assets/icons/GitHub.png deleted file mode 100644 index 081af6c5218..00000000000 Binary files a/website/static/docs/assets/icons/GitHub.png and /dev/null differ diff --git a/website/static/docs/assets/image (7).png b/website/static/docs/assets/image (7).png deleted file mode 100644 index 4927037f1f8..00000000000 Binary files a/website/static/docs/assets/image (7).png and /dev/null differ diff --git a/website/static/docs/assets/image-5.png b/website/static/docs/assets/image-5.png deleted file mode 100644 index 4927037f1f8..00000000000 Binary files a/website/static/docs/assets/image-5.png and /dev/null differ diff --git a/website/static/docs/assets/image-shell.png b/website/static/docs/assets/image-shell.png deleted file mode 100644 index c29ac4989b3..00000000000 Binary files a/website/static/docs/assets/image-shell.png and /dev/null differ diff --git a/website/static/docs/assets/image.png b/website/static/docs/assets/image.png deleted file mode 100644 index 03d6ef07a26..00000000000 Binary files a/website/static/docs/assets/image.png and /dev/null differ diff --git a/website/static/docs/assets/integrate/cli.png b/website/static/docs/assets/integrate/cli.png deleted file mode 100644 index e890754faf4..00000000000 Binary files a/website/static/docs/assets/integrate/cli.png and /dev/null differ diff --git a/website/static/docs/assets/integrate/events.png b/website/static/docs/assets/integrate/events.png deleted file mode 100644 index 71cdd984741..00000000000 Binary files a/website/static/docs/assets/integrate/events.png and /dev/null differ diff --git a/website/static/docs/assets/integrate/indexer.png b/website/static/docs/assets/integrate/indexer.png deleted file mode 100644 index 2c4998dd161..00000000000 Binary files a/website/static/docs/assets/integrate/indexer.png and /dev/null differ diff --git a/website/static/docs/assets/integrate/website.png b/website/static/docs/assets/integrate/website.png deleted file mode 100644 index 39782e6e042..00000000000 Binary files a/website/static/docs/assets/integrate/website.png and /dev/null differ diff --git a/website/static/docs/assets/jasmine-tests-for-token-smart-contract.png b/website/static/docs/assets/jasmine-tests-for-token-smart-contract.png deleted file mode 100644 index 6593c3ec456..00000000000 Binary files a/website/static/docs/assets/jasmine-tests-for-token-smart-contract.png and /dev/null differ diff --git a/website/static/docs/assets/jest-tests-for-calculator-contract.png b/website/static/docs/assets/jest-tests-for-calculator-contract.png deleted file mode 100644 index 482eba6488f..00000000000 Binary files a/website/static/docs/assets/jest-tests-for-calculator-contract.png and /dev/null differ diff --git a/website/static/docs/assets/jscolor-picker.png b/website/static/docs/assets/jscolor-picker.png deleted file mode 100644 index 0544efc15b8..00000000000 Binary files a/website/static/docs/assets/jscolor-picker.png and /dev/null differ diff --git a/website/static/docs/assets/kurtosis/guest-book-function-access-key.png b/website/static/docs/assets/kurtosis/guest-book-function-access-key.png deleted file mode 100644 index 6d4e5f04398..00000000000 Binary files a/website/static/docs/assets/kurtosis/guest-book-function-access-key.png and /dev/null differ diff --git a/website/static/docs/assets/kurtosis/local-explorer-landing-page.png b/website/static/docs/assets/kurtosis/local-explorer-landing-page.png deleted file mode 100644 index 06165676201..00000000000 Binary files a/website/static/docs/assets/kurtosis/local-explorer-landing-page.png and /dev/null differ diff --git a/website/static/docs/assets/ledger/ledger-developer-mode.jpg b/website/static/docs/assets/ledger/ledger-developer-mode.jpg deleted file mode 100644 index 9175ca58052..00000000000 Binary files a/website/static/docs/assets/ledger/ledger-developer-mode.jpg and /dev/null differ diff --git a/website/static/docs/assets/ledger/ledger-install-near-app.jpg b/website/static/docs/assets/ledger/ledger-install-near-app.jpg deleted file mode 100644 index ec0f75aa604..00000000000 Binary files a/website/static/docs/assets/ledger/ledger-install-near-app.jpg and /dev/null differ diff --git a/website/static/docs/assets/lockup/lockup_1.png b/website/static/docs/assets/lockup/lockup_1.png deleted file mode 100644 index 9aed929fbc7..00000000000 Binary files a/website/static/docs/assets/lockup/lockup_1.png and /dev/null differ diff --git a/website/static/docs/assets/lockup/lockup_2.png b/website/static/docs/assets/lockup/lockup_2.png deleted file mode 100644 index 65353ce999d..00000000000 Binary files a/website/static/docs/assets/lockup/lockup_2.png and /dev/null differ diff --git a/website/static/docs/assets/lockup/lockup_3.png b/website/static/docs/assets/lockup/lockup_3.png deleted file mode 100644 index 49057a35d74..00000000000 Binary files a/website/static/docs/assets/lockup/lockup_3.png and /dev/null differ diff --git a/website/static/docs/assets/lockup/lockup_4.png b/website/static/docs/assets/lockup/lockup_4.png deleted file mode 100644 index 9184886f2b3..00000000000 Binary files a/website/static/docs/assets/lockup/lockup_4.png and /dev/null differ diff --git a/website/static/docs/assets/lockup/lockup_5.png b/website/static/docs/assets/lockup/lockup_5.png deleted file mode 100644 index 05688234251..00000000000 Binary files a/website/static/docs/assets/lockup/lockup_5.png and /dev/null differ diff --git a/website/static/docs/assets/near-docs.svg b/website/static/docs/assets/near-docs.svg deleted file mode 100644 index 7b7069ca56a..00000000000 --- a/website/static/docs/assets/near-docs.svg +++ /dev/null @@ -1,592 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - - DISCOVER - - LEARN - - DEVELOP - - TUTORIALS - - VALIDATE - - - - - - - QUICKSTART - - DEVELOP - - TEST - - TUTORIALS - - SECURE - - - - - - - RPC - - - WEBSITE - - NEAR CLI - - EVENTS - - INDEXER - - INDEXER - - - - - - - NOMICON - - - RUST SDK - - - VALIDATE - - - TOOLS - - - diff --git a/website/static/docs/assets/near-login-confirm.png b/website/static/docs/assets/near-login-confirm.png deleted file mode 100644 index f1c2c53c62c..00000000000 Binary files a/website/static/docs/assets/near-login-confirm.png and /dev/null differ diff --git a/website/static/docs/assets/near-login.png b/website/static/docs/assets/near-login.png deleted file mode 100644 index 9df489f3e71..00000000000 Binary files a/website/static/docs/assets/near-login.png and /dev/null differ diff --git a/website/static/docs/assets/near-place-console-on-launch.png b/website/static/docs/assets/near-place-console-on-launch.png deleted file mode 100644 index ad6b922b591..00000000000 Binary files a/website/static/docs/assets/near-place-console-on-launch.png and /dev/null differ diff --git a/website/static/docs/assets/near-place-drawing-after-sign-in.png b/website/static/docs/assets/near-place-drawing-after-sign-in.png deleted file mode 100644 index 1c495a197f1..00000000000 Binary files a/website/static/docs/assets/near-place-drawing-after-sign-in.png and /dev/null differ diff --git a/website/static/docs/assets/near-place-painting.png b/website/static/docs/assets/near-place-painting.png deleted file mode 100644 index b46ad08adcd..00000000000 Binary files a/website/static/docs/assets/near-place-painting.png and /dev/null differ diff --git a/website/static/docs/assets/near-place-webpage-on-launch.png b/website/static/docs/assets/near-place-webpage-on-launch.png deleted file mode 100644 index e571b380771..00000000000 Binary files a/website/static/docs/assets/near-place-webpage-on-launch.png and /dev/null differ diff --git a/website/static/docs/assets/near-studio-launch-screen-counter-smart-contract.png b/website/static/docs/assets/near-studio-launch-screen-counter-smart-contract.png deleted file mode 100644 index 8faeb772c7b..00000000000 Binary files a/website/static/docs/assets/near-studio-launch-screen-counter-smart-contract.png and /dev/null differ diff --git a/website/static/docs/assets/near-studio-launch-screen-guest-book.png b/website/static/docs/assets/near-studio-launch-screen-guest-book.png deleted file mode 100644 index 001644fe156..00000000000 Binary files a/website/static/docs/assets/near-studio-launch-screen-guest-book.png and /dev/null differ diff --git a/website/static/docs/assets/near-studio-launch-screen-near-wallet-integration.png b/website/static/docs/assets/near-studio-launch-screen-near-wallet-integration.png deleted file mode 100644 index bea2957810b..00000000000 Binary files a/website/static/docs/assets/near-studio-launch-screen-near-wallet-integration.png and /dev/null differ diff --git a/website/static/docs/assets/near-studio-tests-near-wallet-integration.png b/website/static/docs/assets/near-studio-tests-near-wallet-integration.png deleted file mode 100644 index eab1620c0d1..00000000000 Binary files a/website/static/docs/assets/near-studio-tests-near-wallet-integration.png and /dev/null differ diff --git a/website/static/docs/assets/near-terminology.png b/website/static/docs/assets/near-terminology.png deleted file mode 100644 index bbd56c5fed6..00000000000 Binary files a/website/static/docs/assets/near-terminology.png and /dev/null differ diff --git a/website/static/docs/assets/near_place_screenshot.png b/website/static/docs/assets/near_place_screenshot.png deleted file mode 100644 index d63fd026f47..00000000000 Binary files a/website/static/docs/assets/near_place_screenshot.png and /dev/null differ diff --git a/website/static/docs/assets/new-to-near/simple-blockchain.png b/website/static/docs/assets/new-to-near/simple-blockchain.png deleted file mode 100644 index 175ad3137fb..00000000000 Binary files a/website/static/docs/assets/new-to-near/simple-blockchain.png and /dev/null differ diff --git a/website/static/docs/assets/new-to-near/simple-validator.png b/website/static/docs/assets/new-to-near/simple-validator.png deleted file mode 100644 index aa78e6bb293..00000000000 Binary files a/website/static/docs/assets/new-to-near/simple-validator.png and /dev/null differ diff --git a/website/static/docs/assets/node/1.png b/website/static/docs/assets/node/1.png deleted file mode 100644 index aa2e041e6e9..00000000000 Binary files a/website/static/docs/assets/node/1.png and /dev/null differ diff --git a/website/static/docs/assets/node/2.png b/website/static/docs/assets/node/2.png deleted file mode 100644 index aa2e041e6e9..00000000000 Binary files a/website/static/docs/assets/node/2.png and /dev/null differ diff --git a/website/static/docs/assets/node/3.png b/website/static/docs/assets/node/3.png deleted file mode 100644 index 2e2cbaf7efe..00000000000 Binary files a/website/static/docs/assets/node/3.png and /dev/null differ diff --git a/website/static/docs/assets/node/4.png b/website/static/docs/assets/node/4.png deleted file mode 100644 index e8f2373517f..00000000000 Binary files a/website/static/docs/assets/node/4.png and /dev/null differ diff --git a/website/static/docs/assets/node/5.png b/website/static/docs/assets/node/5.png deleted file mode 100644 index a9f0d605f36..00000000000 Binary files a/website/static/docs/assets/node/5.png and /dev/null differ diff --git a/website/static/docs/assets/node/download.png b/website/static/docs/assets/node/download.png deleted file mode 100644 index 11063b7332e..00000000000 Binary files a/website/static/docs/assets/node/download.png and /dev/null differ diff --git a/website/static/docs/assets/node/initialize.png b/website/static/docs/assets/node/initialize.png deleted file mode 100644 index 46529f0416f..00000000000 Binary files a/website/static/docs/assets/node/initialize.png and /dev/null differ diff --git a/website/static/docs/assets/node/pool.png b/website/static/docs/assets/node/pool.png deleted file mode 100644 index 51b525b0ab9..00000000000 Binary files a/website/static/docs/assets/node/pool.png and /dev/null differ diff --git a/website/static/docs/assets/node/rust.png b/website/static/docs/assets/node/rust.png deleted file mode 100644 index 817691b85af..00000000000 Binary files a/website/static/docs/assets/node/rust.png and /dev/null differ diff --git a/website/static/docs/assets/oracle-flow.gif b/website/static/docs/assets/oracle-flow.gif deleted file mode 100644 index d7f7685fc0b..00000000000 Binary files a/website/static/docs/assets/oracle-flow.gif and /dev/null differ diff --git a/website/static/docs/assets/phonerecovery.png b/website/static/docs/assets/phonerecovery.png deleted file mode 100644 index 6ad5c367226..00000000000 Binary files a/website/static/docs/assets/phonerecovery.png and /dev/null differ diff --git a/website/static/docs/assets/prepare-your-playground.png b/website/static/docs/assets/prepare-your-playground.png deleted file mode 100644 index 82354e1e6e1..00000000000 Binary files a/website/static/docs/assets/prepare-your-playground.png and /dev/null differ diff --git a/website/static/docs/assets/rust-testing-iterate.png b/website/static/docs/assets/rust-testing-iterate.png deleted file mode 100644 index 3b96e0bbb37..00000000000 Binary files a/website/static/docs/assets/rust-testing-iterate.png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (1).png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (1).png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (1).png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (2).png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (2).png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm (2).png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1 (2).png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1.png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1.png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm-1.png and /dev/null differ diff --git a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm.png b/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm.png deleted file mode 100644 index 7ac413e041b..00000000000 Binary files a/website/static/docs/assets/screen-shot-2019-03-11-at-4.36.34-pm.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (1).png b/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (1).png deleted file mode 100644 index a3833077223..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (2).png b/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (2).png deleted file mode 100644 index a3833077223..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.31.48 (2).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2 (1).png b/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2 (1).png deleted file mode 100644 index a3833077223..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2.png b/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2.png deleted file mode 100644 index a3833077223..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.31.48-2.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.31.48.png b/website/static/docs/assets/screenshot-2019-03-11-21.31.48.png deleted file mode 100644 index a3833077223..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.31.48.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (1).png b/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (1).png deleted file mode 100644 index 788df7424b6..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (2).png b/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (2).png deleted file mode 100644 index 788df7424b6..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.35.48 (2).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1 (1).png b/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1 (1).png deleted file mode 100644 index 788df7424b6..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1.png b/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1.png deleted file mode 100644 index 788df7424b6..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.35.48-1.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-03-11-21.35.48.png b/website/static/docs/assets/screenshot-2019-03-11-21.35.48.png deleted file mode 100644 index 788df7424b6..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-03-11-21.35.48.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36 (1).png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36 (1).png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (1).png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (1).png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (2).png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (2).png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1 (2).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1-2.png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1-2.png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1-2.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1.png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1.png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36-1.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-19.53.36.png b/website/static/docs/assets/screenshot-2019-04-19-19.53.36.png deleted file mode 100644 index 73c21319fdb..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-19.53.36.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (1).png b/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (1).png deleted file mode 100644 index b2363219dbe..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (1).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (2).png b/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (2).png deleted file mode 100644 index b2363219dbe..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-20.09.33 (2).png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-20.09.33-2.png b/website/static/docs/assets/screenshot-2019-04-19-20.09.33-2.png deleted file mode 100644 index b2363219dbe..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-20.09.33-2.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-04-19-20.09.33.png b/website/static/docs/assets/screenshot-2019-04-19-20.09.33.png deleted file mode 100644 index b2363219dbe..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-04-19-20.09.33.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-06-04-15.26.08.png b/website/static/docs/assets/screenshot-2019-06-04-15.26.08.png deleted file mode 100644 index eb987ea0ade..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-06-04-15.26.08.png and /dev/null differ diff --git a/website/static/docs/assets/screenshot-2019-07-30-13.23.01.png b/website/static/docs/assets/screenshot-2019-07-30-13.23.01.png deleted file mode 100644 index eed21e2940a..00000000000 Binary files a/website/static/docs/assets/screenshot-2019-07-30-13.23.01.png and /dev/null differ diff --git a/website/static/docs/assets/siaskynet-1.png b/website/static/docs/assets/siaskynet-1.png deleted file mode 100644 index 0ea27a90ba8..00000000000 Binary files a/website/static/docs/assets/siaskynet-1.png and /dev/null differ diff --git a/website/static/docs/assets/siaskynet-2.png b/website/static/docs/assets/siaskynet-2.png deleted file mode 100644 index 085970012c2..00000000000 Binary files a/website/static/docs/assets/siaskynet-2.png and /dev/null differ diff --git a/website/static/docs/assets/spaceship (1).png b/website/static/docs/assets/spaceship (1).png deleted file mode 100644 index fa92ef5bf88..00000000000 Binary files a/website/static/docs/assets/spaceship (1).png and /dev/null differ diff --git a/website/static/docs/assets/spaceship (2).png b/website/static/docs/assets/spaceship (2).png deleted file mode 100644 index fa92ef5bf88..00000000000 Binary files a/website/static/docs/assets/spaceship (2).png and /dev/null differ diff --git a/website/static/docs/assets/spaceship-2 (1).png b/website/static/docs/assets/spaceship-2 (1).png deleted file mode 100644 index fa92ef5bf88..00000000000 Binary files a/website/static/docs/assets/spaceship-2 (1).png and /dev/null differ diff --git a/website/static/docs/assets/spaceship-2.png b/website/static/docs/assets/spaceship-2.png deleted file mode 100644 index fa92ef5bf88..00000000000 Binary files a/website/static/docs/assets/spaceship-2.png and /dev/null differ diff --git a/website/static/docs/assets/spaceship.png b/website/static/docs/assets/spaceship.png deleted file mode 100644 index fa92ef5bf88..00000000000 Binary files a/website/static/docs/assets/spaceship.png and /dev/null differ diff --git a/website/static/docs/assets/token-contract-aspect-game-test.png b/website/static/docs/assets/token-contract-aspect-game-test.png deleted file mode 100644 index fd336ae6d7c..00000000000 Binary files a/website/static/docs/assets/token-contract-aspect-game-test.png and /dev/null differ diff --git a/website/static/docs/assets/token-contract-aspect-test.png b/website/static/docs/assets/token-contract-aspect-test.png deleted file mode 100644 index 3f8001c8d4d..00000000000 Binary files a/website/static/docs/assets/token-contract-aspect-test.png and /dev/null differ diff --git a/website/static/docs/assets/update_near-cli.png b/website/static/docs/assets/update_near-cli.png deleted file mode 100644 index 290c4f91bba..00000000000 Binary files a/website/static/docs/assets/update_near-cli.png and /dev/null differ diff --git a/website/static/docs/assets/validators.png b/website/static/docs/assets/validators.png deleted file mode 100644 index 2f2ac21cae4..00000000000 Binary files a/website/static/docs/assets/validators.png and /dev/null differ diff --git a/website/static/docs/assets/wallet-welcome.png b/website/static/docs/assets/wallet-welcome.png deleted file mode 100644 index 434df0d2411..00000000000 Binary files a/website/static/docs/assets/wallet-welcome.png and /dev/null differ diff --git a/website/static/docs/assets/web3/web3-8.png b/website/static/docs/assets/web3/web3-8.png deleted file mode 100644 index 012479d393e..00000000000 Binary files a/website/static/docs/assets/web3/web3-8.png and /dev/null differ diff --git a/website/static/docs/assets/writedownrecovery.png b/website/static/docs/assets/writedownrecovery.png deleted file mode 100644 index c0d6cf6c0e2..00000000000 Binary files a/website/static/docs/assets/writedownrecovery.png and /dev/null differ diff --git a/website/static/docs/intro/near-lake.png b/website/static/docs/intro/near-lake.png deleted file mode 100644 index d5e06e8e68f..00000000000 Binary files a/website/static/docs/intro/near-lake.png and /dev/null differ diff --git a/website/static/docs/near-logo.png b/website/static/docs/near-logo.png deleted file mode 100644 index 7cf353e4c5c..00000000000 Binary files a/website/static/docs/near-logo.png and /dev/null differ diff --git a/website/static/docs/quickstart-1.png b/website/static/docs/quickstart-1.png deleted file mode 100644 index 26c7878db4e..00000000000 Binary files a/website/static/docs/quickstart-1.png and /dev/null differ diff --git a/website/static/docs/quickstart-composition.png b/website/static/docs/quickstart-composition.png deleted file mode 100644 index 4a7a621fe5c..00000000000 Binary files a/website/static/docs/quickstart-composition.png and /dev/null differ diff --git a/website/static/docs/quickstart-editor.png b/website/static/docs/quickstart-editor.png deleted file mode 100644 index 26af517e830..00000000000 Binary files a/website/static/docs/quickstart-editor.png and /dev/null differ diff --git a/website/static/docs/quickstart-save.png b/website/static/docs/quickstart-save.png deleted file mode 100644 index 66187444092..00000000000 Binary files a/website/static/docs/quickstart-save.png and /dev/null differ diff --git a/website/static/docs/vercel-gateway.png b/website/static/docs/vercel-gateway.png deleted file mode 100644 index c0d6e880237..00000000000 Binary files a/website/static/docs/vercel-gateway.png and /dev/null differ diff --git a/website/static/docs/widget-basic.png b/website/static/docs/widget-basic.png deleted file mode 100644 index cb791c36b6a..00000000000 Binary files a/website/static/docs/widget-basic.png and /dev/null differ diff --git a/website/static/docs/widget-composed.png b/website/static/docs/widget-composed.png deleted file mode 100644 index f53e362f1b8..00000000000 Binary files a/website/static/docs/widget-composed.png and /dev/null differ diff --git a/website/static/docs/widget-markdown.png b/website/static/docs/widget-markdown.png deleted file mode 100644 index 2c787e294b0..00000000000 Binary files a/website/static/docs/widget-markdown.png and /dev/null differ diff --git a/website/static/docs/widgets.jpeg b/website/static/docs/widgets.jpeg deleted file mode 100644 index 4ac22548b46..00000000000 Binary files a/website/static/docs/widgets.jpeg and /dev/null differ