mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
* early return is no web3 or ddo * Creating test for MetaFull * adding test: src/components/Asset/AssetContent/MetaSecondary.test.tsx * Adding test for bookmarks * Adding test for displaying payment collector * Removing comments * Renaming assetAquarius * Renaming assetWithAccessDetails * Ensuring that the payment collector is shown even without a wallet connected * Removing broken test * Using getDummyWeb3 for fetching the payment collector address
28 lines
698 B
TypeScript
28 lines
698 B
TypeScript
import { datasetAquarius } from './datasetAquarius'
|
|
|
|
export const asset: AssetExtended = {
|
|
...datasetAquarius,
|
|
accessDetails: {
|
|
templateId: 1,
|
|
publisherMarketOrderFee: '0',
|
|
type: 'fixed',
|
|
addressOrId:
|
|
'0x00e3b740e4d8bf6e97010ecb5b14d1b7efc0913bfa291fcf5adb8eb9e6c29e93',
|
|
price: '3231343254',
|
|
isPurchasable: true,
|
|
isOwned: false,
|
|
validOrderTx: null,
|
|
baseToken: {
|
|
address: '0xcfdda22c9837ae76e0faa845354f33c62e03653a',
|
|
name: 'Ocean Token',
|
|
symbol: 'OCEAN',
|
|
decimals: 18
|
|
},
|
|
datatoken: {
|
|
address: '0x067e1e6ec580f3f0f6781679a4a5ab07a6464b08',
|
|
name: 'Stupendous Orca Token',
|
|
symbol: 'STUORC-59'
|
|
}
|
|
}
|
|
}
|