1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00
This commit is contained in:
Matthias Kretschmann 2021-11-15 15:42:50 +00:00
parent b41e15a92e
commit fc1966aa4e
Signed by: m
GPG Key ID: 606EEEF3C479A91F
7 changed files with 17 additions and 17 deletions

View File

@ -6,7 +6,7 @@
"name": "nft",
"label": "Data NFT",
"type": "nft",
"help": "All metadata is stored on-chain in a newly deployed ERC-721 contract representing this asset.",
"help": "All metadata is stored on-chain in a newly deployed ERC-721 contract representing this asset, created with this name & symbol.",
"required": true
},
{
@ -85,9 +85,9 @@
"fields": [
{
"name": "dataTokenOptions",
"label": "Datatoken Name & Symbol",
"label": "Datatoken",
"type": "datatoken",
"help": "The datatoken for this data set will be created with this name & symbol.",
"help": "The datatoken used for accessing this asset will be created with this name & symbol.",
"required": true
},
{

View File

@ -1,7 +1,7 @@
.datatoken {
display: grid;
gap: var(--spacer);
grid-template-columns: 3fr 1fr;
gap: calc(var(--spacer) / 2);
grid-template-columns: 1fr 4fr;
margin-bottom: var(--spacer);
align-items: center;
}

View File

@ -23,14 +23,14 @@ export default function Datatoken(props: InputProps): ReactElement {
return (
<div className={styles.datatoken}>
<figure className={styles.image}>
<Logo />
</figure>
<div className={styles.token}>
<strong>{field?.value?.name}</strong> {' '}
<strong>{field?.value?.symbol}</strong>
<RefreshName generateName={generateName} />
</div>
<figure className={styles.image}>
<Logo />
</figure>
</div>
)
}

View File

@ -1,7 +1,7 @@
.nft {
display: grid;
gap: var(--spacer);
grid-template-columns: 3fr 1fr;
gap: calc(var(--spacer) / 2);
grid-template-columns: 1fr 4fr;
margin-bottom: var(--spacer);
align-items: center;
}

View File

@ -17,16 +17,16 @@ export default function Nft(props: InputProps): ReactElement {
return (
<div className={styles.nft}>
<div className={styles.token}>
<strong>{field?.value?.name}</strong> {' '}
<strong>{field?.value?.symbol}</strong>
</div>
<img
src="//placekitten.com/g/128/128"
className={styles.image}
width="128"
height="128"
/>
<div className={styles.token}>
<strong>{field?.value?.name}</strong> {' '}
<strong>{field?.value?.symbol}</strong>
</div>
</div>
)
}

View File

@ -1,7 +1,7 @@
import React, { ReactElement, useState, useEffect } from 'react'
import Compute from './Compute'
import Consume from './Consume'
import { Logger, DID } from '@oceanprotocol/lib'
import { Logger } from '@oceanprotocol/lib'
import Tabs from '@shared/atoms/Tabs'
import { compareAsBN } from '@utils/numbers'
import Pool from './Pool'
@ -58,7 +58,7 @@ export default function AssetActions(): ReactElement {
setFileIsLoading(true)
try {
const fileInfoResponse = await getFileInfo(
DID.parse(`${ddo.id}`),
ddo.id,
oceanConfig.providerUri,
newCancelToken()
)

View File

@ -2,7 +2,7 @@ import React, { ReactElement, useState, useRef } from 'react'
import { Form, Formik, FormikState } from 'formik'
import { initialValues, validationSchema } from './_constants'
import { validateDockerImage } from '@utils/docker'
import { Logger, Metadata } from '@oceanprotocol/lib'
import { Logger } from '@oceanprotocol/lib'
import { useAccountPurgatory } from '@hooks/useAccountPurgatory'
import { useWeb3 } from '@context/Web3'
import { transformPublishFormToDdo } from './_utils'