mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
GITBOOK-83: change request with no subject merged in GitBook
This commit is contained in:
parent
ab98ffa808
commit
d9348d927e
@ -1,2 +1,43 @@
|
||||
---
|
||||
description: How to use decentralized hosting for your NFT assets
|
||||
---
|
||||
|
||||
# Arweave
|
||||
|
||||
### Arweave
|
||||
|
||||
[Arweave](https://www.arweave.org/) is a global, permanent, and decentralized data storage layer that allows you to store documents and applications forever. Arweave is different from other decentralized storage solutions in that there is only one up-front cost to upload each file.
|
||||
|
||||
**Step 1 - Get a new wallet and AR tokens**
|
||||
|
||||
Download & save a new wallet (JSON key file) and receive a small amount of AR tokens for free using the [Arweave faucet](https://faucet.arweave.net/). If you already have an Arweave browser wallet, you can skip to Step 3.
|
||||
|
||||
At the time of writing, the faucet provides 0.02 AR which is more than enough to upload a file.
|
||||
|
||||
If at any point you need more AR tokens, you can fund your wallet from one of Arweave's [supported exchanges](https://arwiki.wiki/#/en/Exchanges).
|
||||
|
||||
**Step 2 - Load the key file into the arweave.app web wallet**
|
||||
|
||||
Open [arweave.app](https://arweave.app/) in a browser. Select the '+' icon in the bottom left corner of the screen. Import the JSON key file from step 1.
|
||||
|
||||
![Arweave.app import key file](../../.gitbook/assets/hosting/arweave-1.png)
|
||||
|
||||
**Step 3 - Upload file**
|
||||
|
||||
Select the newly imported wallet by clicking the "blockies" style icon in the top left corner of the screen. Select **Send.** Click the **Data** field and select the file you wish to upload.
|
||||
|
||||
![Arweave.app upload file](../../.gitbook/assets/hosting/arweave-2.png)
|
||||
|
||||
The fee in AR tokens will be calculated based on the size of the file and displayed near the bottom middle part of the screen. Select **Submit** to submit the transaction.
|
||||
|
||||
After submitting the transaction, select **Transactions** and wait until the transaction appears and eventually finalizes. This can take over 5 minutes so please be patient.
|
||||
|
||||
**Step 4 - Copy the transaction ID**
|
||||
|
||||
Once the transaction finalizes, select it, and copy the transaction ID.
|
||||
|
||||
![Arweave.app transaction ID](../../.gitbook/assets/hosting/arweave-3.png)
|
||||
|
||||
**Step 5 - Publish the asset with the transaction ID**
|
||||
|
||||
![Ocean Market - Publish with arweave transaction ID](../../.gitbook/assets/hosting/arweave-4.png)
|
||||
|
@ -1,2 +1,114 @@
|
||||
---
|
||||
description: How to use AWS centralized hosting for your NFT assets
|
||||
---
|
||||
|
||||
# AWS
|
||||
|
||||
### Amazon Web Services
|
||||
|
||||
AWS provides various options to host data and multiple configuration possibilities. Publishers are required to do their research and decide what would be the right choice. The below steps provide one of the possible ways to host data using an AWS S3 bucket and publish it on Ocean Marketplace.
|
||||
|
||||
**Prerequisite**
|
||||
|
||||
Create an account on [AWS](https://aws.amazon.com/s3/). Users might also be asked to provide payment details and billing addresses that are out of this tutorial's scope.
|
||||
|
||||
**Step 1 - Create a storage account**
|
||||
|
||||
**Go to AWS portal**
|
||||
|
||||
Go to the AWS portal for S3: https://aws.amazon.com/s3/ and select from the upper right corner `Create an AWS account` as shown below.
|
||||
|
||||
![Create an account - 1](../../.gitbook/assets/hosting/aws-1.png)
|
||||
|
||||
**Fill in the details**
|
||||
|
||||
![Create an account - 2](../../.gitbook/assets/hosting/aws-2.png))
|
||||
|
||||
**Create a bucket**
|
||||
|
||||
After logging into the new account, search for the available services and select `S3` type of storage.
|
||||
|
||||
![Create an account - 3](../../.gitbook/assets/hosting/aws-3.png)
|
||||
|
||||
To create an S3 bucket, choose `Create bucket`.
|
||||
|
||||
![Create an account - 4](../../.gitbook/assets/hosting/aws-4.png)
|
||||
|
||||
Fill in the form with the necessary information. Then, the bucket is up & running.
|
||||
|
||||
![Create an account - 5](../../.gitbook/assets/hosting/aws-5.png)
|
||||
|
||||
**Step 2 - Upload asset on S3 bucket**
|
||||
|
||||
Now, the asset can be uploaded by selecting the bucket name and choosing `Upload` in the `Objects` tab.
|
||||
|
||||
![Upload asset on S3 bucket - 1](../../.gitbook/assets/hosting/aws-6.png)
|
||||
|
||||
**Add files to the bucket**
|
||||
|
||||
Get the files and add them to the bucket.
|
||||
|
||||
The file is an example used in multiple Ocean repositories, and it can be found [here](https://raw.githubusercontent.com/oceanprotocol/c2d-examples/main/branin\_and\_gpr/branin.arff).
|
||||
|
||||
![Upload asset on S3 bucket - 3](../../.gitbook/assets/hosting/aws-7.png)
|
||||
|
||||
The permissions and properties can be set afterward, for the moment keep them as default.
|
||||
|
||||
After selecting `Upload`, make sure that the status is `Succeeded`.
|
||||
|
||||
![Upload asset on S3 bucket - 4](../../.gitbook/assets/hosting/aws-8.png)
|
||||
|
||||
**Step 3 - Access the Object URL on S3 Bucket**
|
||||
|
||||
By default, the permissions of accessing the file from the S3 bucket are set to private. To publish an asset on the market, the S3 URL needs to be public. This step shows how to set up access control policies to grant permissions to others.
|
||||
|
||||
**Editing permissions**
|
||||
|
||||
Go to the `Permissions` tab and select `Edit` and then uncheck `Block all public access` boxes to give everyone read access to the object and click `Save`.
|
||||
|
||||
If editing the permissions is unavailable, modify the `Object Ownership` by enabling the ACLs as shown below.
|
||||
|
||||
![Access the Object URL on S3 Bucket - 1](../../.gitbook/assets/hosting/aws-9.png)
|
||||
|
||||
**Modifying bucket policy**
|
||||
|
||||
To have the bucket granted public access, its policy needs to be modified likewise.
|
||||
|
||||
Note that the `<BUCKET-NAME>` must be chosen from the personal buckets dashboard.
|
||||
|
||||
```JSON
|
||||
{
|
||||
"Version": "2012-10-17",
|
||||
"Statement": [
|
||||
{
|
||||
"Sid": "Public S3 Bucket",
|
||||
"Principal": "*",
|
||||
"Effect": "Allow",
|
||||
"Action": "s3:GetObject",
|
||||
"Resource": "arn:aws:s3:::<BUCKET-NAME>/*"
|
||||
}
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
After saving the changes, the bucket should appear as `Public` access.
|
||||
|
||||
![Access the Object URL on S3 Bucket - 2](../../.gitbook/assets/hosting/aws-10.png)
|
||||
|
||||
**Verify the object URL on public access**
|
||||
|
||||
Select the file from the bucket that needs verification and select `Open`. Now download the file on your system.
|
||||
|
||||
![Access the Object URL on S3 Bucket - 3](../../.gitbook/assets/hosting/aws-11.png)
|
||||
|
||||
**Step 4 - Get the S3 Bucket Link & Publish Asset on Market**
|
||||
|
||||
Now that the S3 endpoint has public access, the asset will be hosted successfully.
|
||||
|
||||
Go to [Ocean Market](https://market.oceanprotocol.com/publish/1) to complete the form for asset creation.
|
||||
|
||||
Copy the `Object URL` that can be found at `Object Overview` from the AWS S3 bucket and paste it into the `File` field from the form found at [step 2](https://market.oceanprotocol.com/publish/2) as it is illustrated below.
|
||||
|
||||
![Get the S3 Bucket Link & Publish Asset on Market - 1](../../.gitbook/assets/hosting/aws-12.png)
|
||||
|
||||
####
|
||||
|
@ -1,2 +1,65 @@
|
||||
---
|
||||
description: How to use centralized hosting with Azure Cloud for your NFT assets
|
||||
---
|
||||
|
||||
# Azure Cloud
|
||||
|
||||
### Microsoft Azure
|
||||
|
||||
Azure provides various options to host data and multiple configuration possibilities. Publishers are required to do their research and decide what would be the right choice. The below steps provide one of the possible ways to host data using Azure storage and publish it on Ocean Marketplace.
|
||||
|
||||
**Prerequisite**
|
||||
|
||||
Create an account on [Azure](https://azure.microsoft.com/en-us/). Users might also be asked to provide payment details and billing addresses that are out of this tutorial's scope.
|
||||
|
||||
**Step 1 - Create a storage account**
|
||||
|
||||
**Go to Azure portal**
|
||||
|
||||
Go to the Azure portal: https://portal.azure.com/#home and select `Storage accounts` as shown below.
|
||||
|
||||
![Create a storage account - 1](../../.gitbook/assets/hosting/azure1.png)
|
||||
|
||||
**Create a new storage account**
|
||||
|
||||
![Create a storage account - 2](<../../.gitbook/assets/hosting/azure2 (1).png>)
|
||||
|
||||
**Fill in the details**
|
||||
|
||||
![Add details](../../.gitbook/assets/hosting/azure3.png)
|
||||
|
||||
**Storage account created**
|
||||
|
||||
![Storage account created](<../../.gitbook/assets/hosting/azure4 (1).png>)
|
||||
|
||||
**Step 2 - Create a blob container**
|
||||
|
||||
![Create a blob container](../../.gitbook/assets/hosting/azure5.png)
|
||||
|
||||
**Step 3 - Upload a file**
|
||||
|
||||
![Create a blob container](../../.gitbook/assets/hosting/azure5.png)
|
||||
|
||||
**Step 3 - Upload a file**
|
||||
|
||||
![Upload a file](<../../.gitbook/assets/hosting/azure6 (1).png>)
|
||||
|
||||
**Step 4 - Share the file**
|
||||
|
||||
**Select the file to be published and click Generate SAS**
|
||||
|
||||
![Click generate SAS](../../.gitbook/assets/hosting/azure7.png)
|
||||
|
||||
**Configure the SAS details and click `Generate SAS token and URL`**
|
||||
|
||||
![Generate link to file](<../../.gitbook/assets/hosting/azure8 (1).png>)
|
||||
|
||||
**Copy the generated link**
|
||||
|
||||
![Copy the link](<../../.gitbook/assets/hosting/azure9 (1).png>)
|
||||
|
||||
**Step 5 - Publish the asset using the generated link**
|
||||
|
||||
Now, copy and paste the link into the Publish page in the Ocean Marketplace.
|
||||
|
||||
![Publish the file as an asset](../../.gitbook/assets/hosting/azure10.png)
|
||||
|
Loading…
Reference in New Issue
Block a user