Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: typos #156

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorials/build-first-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Once the react app is running and you have your catalog dependency, the next ste

:::tip

For the `REACT_APP_NODE_URI` you can connect to a [QuickNode](https://www.quicknode.com/) or [Infura](https://infura.io/) puclic Node. Both services allow to connect your dApp to different blockchain networks. You will need to connect to interact with Nevermined contracts.
For the `REACT_APP_NODE_URI` you can connect to a [QuickNode](https://www.quicknode.com/) or [Infura](https://infura.io/) public Node. Both services allow to connect your dApp to different blockchain networks. You will need to connect to interact with Nevermined contracts.

:::

Expand Down Expand Up @@ -100,7 +100,7 @@ root.render(
reportWebVitals();
```

4. After that you will be able to iteract with the Nevermined ecosystem. List did assets deployed updating your `App.tsx`
4. After that you will be able to interact with the Nevermined ecosystem. List did assets deployed updating your `App.tsx`

```tsx
import { AssetService } from '@nevermined-io/catalog'
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/connect-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Let's define first what is our use case:

:::note Use Case

As a content creator I want to tokenize a fractal I created. I want to make available **10 editions** of it, and sell them for **100 USDC** each of them. Whoever owning one of these editions will be able to have **exclusive access** to the fractal file.
As a content creator I want to tokenize a fractal I created. I want to make available **10 editions** of it, and sell them for **100 USDC** each of them. Whoever owns one of these editions will be able to have **exclusive access** to the fractal file.

:::

Expand Down
8 changes: 4 additions & 4 deletions docs/tutorials/login-wallet-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ In this tutorial you will learn how you can integrate Wallet Provider from the C
## Requirements
For the tutorial you will need:

- A extension of [Metamask](https://metamask.io/) installed in the browser
- An extension of [Metamask](https://metamask.io/) installed in the browser
- [node](https://nodejs.org/en/) and [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) need to be installed

## How to install Catalog Provider
Firstable to install [Catalog Provider](../react-components/providers/README.md) you just need to run:
First to install [Catalog Provider](../react-components/providers/README.md) you just need to run:

<Tabs>
<TabItem label="yarn" value="yarn" default>
Expand Down Expand Up @@ -97,7 +97,7 @@ In this component we have the `login` and `logout` functions and the `walletAddr
How you can see, we also have `getConnectors` which includes all the providers available to connect.

## Config your network (optional)
At least that you need to set differents networks for your dapp than [polygon](https://polygon.technology/) chains config is not needed, anyway here we show you how should look the config object.
At least that you need to set different networks for your dapp than [polygon](https://polygon.technology/) chains config is not needed, anyway here we show you how should look the config object.

```ts
const ChainsConfig: Chain[] = [
Expand Down Expand Up @@ -198,4 +198,4 @@ ReactDOM.render(

## Demo

<ProvidersApp/>
<ProvidersApp/>
4 changes: 2 additions & 2 deletions docs/tutorials/query-assets-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const QuerySearchByName = (): => {
</BrowserOnly>

## Search by additional information
The [Additional Information](../architecture/specs/Spec-METADATA.md#additional-attributes) section is an entry into the DDO/Metadata document where users can specify a free range of attributes. They can be domain specific, and the marketplace can be used to search accross them. Things like `categories`:
The [Additional Information](../architecture/specs/Spec-METADATA.md#additional-attributes) section is an entry into the DDO/Metadata document where users can specify a free range of attributes. They can be domain specific, and the marketplace can be used to search across them. Things like `categories`:

### Code

Expand Down Expand Up @@ -496,4 +496,4 @@ const QuerySearchSortByPrice = () => {

<BrowserOnly fallback={<div>Loading search assets sorting in big objects...</div>}>
{()=> <QueryAssets complexSort={true}/>}
</BrowserOnly>
</BrowserOnly>