mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
adapted examples to interface changes
This commit is contained in:
parent
0b55e108d7
commit
48ef4cff5f
@ -2,14 +2,13 @@ import DDO from "../ddo/DDO"
|
|||||||
import MetaData from "../ddo/MetaData"
|
import MetaData from "../ddo/MetaData"
|
||||||
import MetaDataBase from "../ddo/MetaDataBase"
|
import MetaDataBase from "../ddo/MetaDataBase"
|
||||||
import Service from "../ddo/Service"
|
import Service from "../ddo/Service"
|
||||||
import IdGenerator from "../ocean/IdGenerator"
|
|
||||||
import {Account, Logger, Ocean, ServiceAgreement} from "../squid"
|
import {Account, Logger, Ocean, ServiceAgreement} from "../squid"
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
const ocean: Ocean = await Ocean.getInstance({
|
const ocean: Ocean = await Ocean.getInstance({
|
||||||
nodeUri: "http://localhost:8545",
|
nodeUri: "http://localhost:8545",
|
||||||
aquariusUri: "http://localhost:5000",
|
aquariusUri: "http://localhost:5000",
|
||||||
brizoUri: "https://localhost:8030",
|
brizoUri: "http://localhost:8030",
|
||||||
parityUri: "http://localhost:9545",
|
parityUri: "http://localhost:9545",
|
||||||
secretStoreUri: "https://secret-store.dev-ocean.com",
|
secretStoreUri: "https://secret-store.dev-ocean.com",
|
||||||
threshold: 2,
|
threshold: 2,
|
||||||
@ -53,14 +52,18 @@ import {Account, Logger, Ocean, ServiceAgreement} from "../squid"
|
|||||||
const ddo: DDO = await ocean.registerAsset(metaData, publisher)
|
const ddo: DDO = await ocean.registerAsset(metaData, publisher)
|
||||||
Logger.log("did", ddo.id)
|
Logger.log("did", ddo.id)
|
||||||
|
|
||||||
const serviceAgreementId: string = IdGenerator.generateId()
|
const accessService = ddo.findServiceByType("Access")
|
||||||
const serviceAgreementSignature: string = await ocean.signServiceAgreement(ddo.id, serviceAgreementId, consumer)
|
|
||||||
Logger.log("ServiceAgreement Signature:", serviceAgreementSignature)
|
const serviceAgreementSignatureResult: any = await ocean.signServiceAgreement(ddo.id,
|
||||||
|
accessService.serviceDefinitionId, consumer)
|
||||||
|
Logger.log("ServiceAgreement Id:", serviceAgreementSignatureResult.serviceAgreementId)
|
||||||
|
Logger.log("ServiceAgreement Signature:", serviceAgreementSignatureResult.serviceAgreementSignature)
|
||||||
|
|
||||||
const service: Service = ddo.findServiceByType("Access")
|
const service: Service = ddo.findServiceByType("Access")
|
||||||
|
|
||||||
const serviceAgreement: ServiceAgreement = await ocean.executeServiceAgreement(ddo.id, service.serviceDefinitionId,
|
const serviceAgreement: ServiceAgreement = await ocean.executeServiceAgreement(ddo.id, service.serviceDefinitionId,
|
||||||
serviceAgreementId, serviceAgreementSignature, consumer, publisher)
|
serviceAgreementSignatureResult.serviceAgreementId, serviceAgreementSignatureResult.serviceAgreementSignature,
|
||||||
|
consumer, publisher)
|
||||||
Logger.log("ServiceAgreement Id:", serviceAgreement.getId())
|
Logger.log("ServiceAgreement Id:", serviceAgreement.getId())
|
||||||
|
|
||||||
})()
|
})()
|
||||||
|
@ -7,7 +7,7 @@ import {Account, Logger, Ocean} from "../squid"
|
|||||||
const ocean: Ocean = await Ocean.getInstance({
|
const ocean: Ocean = await Ocean.getInstance({
|
||||||
nodeUri: "http://localhost:8545",
|
nodeUri: "http://localhost:8545",
|
||||||
aquariusUri: "http://localhost:5000",
|
aquariusUri: "http://localhost:5000",
|
||||||
brizoUri: "https://localhost:8030",
|
brizoUri: "http://localhost:8030",
|
||||||
parityUri: "http://localhost:9545",
|
parityUri: "http://localhost:9545",
|
||||||
secretStoreUri: "https://secret-store.dev-ocean.com",
|
secretStoreUri: "https://secret-store.dev-ocean.com",
|
||||||
threshold: 2,
|
threshold: 2,
|
||||||
|
@ -4,7 +4,7 @@ import {Account, Logger, Ocean, ServiceAgreementTemplate, Templates} from "../sq
|
|||||||
const ocean: Ocean = await Ocean.getInstance({
|
const ocean: Ocean = await Ocean.getInstance({
|
||||||
nodeUri: "http://localhost:8545",
|
nodeUri: "http://localhost:8545",
|
||||||
aquariusUri: "http://localhost:5000",
|
aquariusUri: "http://localhost:5000",
|
||||||
brizoUri: "https://localhost:8030",
|
brizoUri: "http://localhost:8030",
|
||||||
parityUri: "http://localhost:9545",
|
parityUri: "http://localhost:9545",
|
||||||
secretStoreUri: "https://secret-store.dev-ocean.com",
|
secretStoreUri: "https://secret-store.dev-ocean.com",
|
||||||
threshold: 2,
|
threshold: 2,
|
||||||
|
@ -5,7 +5,7 @@ import {Logger, Ocean} from "../squid"
|
|||||||
const ocean: Ocean = await Ocean.getInstance({
|
const ocean: Ocean = await Ocean.getInstance({
|
||||||
nodeUri: "http://localhost:8545",
|
nodeUri: "http://localhost:8545",
|
||||||
aquariusUri: "http://localhost:5000",
|
aquariusUri: "http://localhost:5000",
|
||||||
brizoUri: "https://localhost:8030",
|
brizoUri: "http://localhost:8030",
|
||||||
parityUri: "http://localhost:9545",
|
parityUri: "http://localhost:9545",
|
||||||
secretStoreUri: "https://secret-store.dev-ocean.com",
|
secretStoreUri: "https://secret-store.dev-ocean.com",
|
||||||
threshold: 2,
|
threshold: 2,
|
||||||
|
@ -1,16 +1,19 @@
|
|||||||
|
import AdditionalInformation from "../ddo/AdditionalInformation"
|
||||||
|
import Curation from "../ddo/Curation"
|
||||||
import DDO from "../ddo/DDO"
|
import DDO from "../ddo/DDO"
|
||||||
import MetaData from "../ddo/MetaData"
|
import MetaData from "../ddo/MetaData"
|
||||||
import IdGenerator from "../ocean/IdGenerator"
|
import MetaDataBase from "../ddo/MetaDataBase"
|
||||||
|
import Service from "../ddo/Service"
|
||||||
import {Account, Logger, Ocean} from "../squid"
|
import {Account, Logger, Ocean} from "../squid"
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
const ocean: Ocean = await Ocean.getInstance({
|
const ocean: Ocean = await Ocean.getInstance({
|
||||||
nodeUri: "http://localhost:8545",
|
nodeUri: "http://localhost:8545",
|
||||||
aquariusUri: "http://localhost:5000",
|
aquariusUri: "http://localhost:5000",
|
||||||
brizoUri: "https://localhost:8030",
|
brizoUri: "http://localhost:8030",
|
||||||
parityUri: "http://localhost:9545",
|
parityUri: "http://localhost:9545",
|
||||||
secretStoreUri: "https://secret-store.dev-ocean.com",
|
secretStoreUri: "http://localhost:12001",
|
||||||
threshold: 2,
|
threshold: 0,
|
||||||
password: "unittest",
|
password: "unittest",
|
||||||
address: "0xed243adfb84a6626eba46178ccb567481c6e655d",
|
address: "0xed243adfb84a6626eba46178ccb567481c6e655d",
|
||||||
})
|
})
|
||||||
@ -19,6 +22,20 @@ import {Account, Logger, Ocean} from "../squid"
|
|||||||
const consumer: Account = (await ocean.getAccounts())[1]
|
const consumer: Account = (await ocean.getAccounts())[1]
|
||||||
|
|
||||||
const metaData = {
|
const metaData = {
|
||||||
|
additionalInformation: {
|
||||||
|
structuredMarkup: [
|
||||||
|
{
|
||||||
|
mediaType: "application/ld+json",
|
||||||
|
uri: "http://skos.um.es/unescothes/C01194/jsonld",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
mediaType: "text/turtle",
|
||||||
|
uri: "http://skos.um.es/unescothes/C01194/turtle",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
updateFrecuency: "yearly",
|
||||||
|
checksum: "efdd14d39feb726e321931f408b3454d26f1a4899bcc608a68b5397f23203174",
|
||||||
|
} as AdditionalInformation,
|
||||||
base: {
|
base: {
|
||||||
name: "Office Humidity",
|
name: "Office Humidity",
|
||||||
type: "dataset",
|
type: "dataset",
|
||||||
@ -38,26 +55,28 @@ import {Account, Logger, Ocean} from "../squid"
|
|||||||
"https://testocnfiles.blob.core.windows.net/testfiles/testzkp.zip",
|
"https://testocnfiles.blob.core.windows.net/testfiles/testzkp.zip",
|
||||||
],
|
],
|
||||||
links: [
|
links: [
|
||||||
{
|
{sample1: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-daily/"},
|
||||||
sample1: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-daily/",
|
{sample2: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-averages-25km/"},
|
||||||
},
|
{fieldsDescription: "http://data.ceda.ac.uk/badc/ukcp09/"},
|
||||||
{
|
|
||||||
sample2: "http://data.ceda.ac.uk/badc/ukcp09/data/gridded-land-obs/gridded-land-obs-averages-25km/",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
fieldsDescription: "http://data.ceda.ac.uk/badc/ukcp09/",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
inLanguage: "en",
|
inLanguage: "en",
|
||||||
tags: "weather, uk, 2011, temperature, humidity",
|
tags: "weather, uk, 2011, temperature, humidity",
|
||||||
price: 10,
|
price: 10,
|
||||||
},
|
} as MetaDataBase,
|
||||||
|
curation: {
|
||||||
|
rating: 0.94,
|
||||||
|
numVotes: 124,
|
||||||
|
schema: "Binary Votting",
|
||||||
|
} as Curation,
|
||||||
}
|
}
|
||||||
|
|
||||||
const ddo: DDO = await ocean.registerAsset(metaData as MetaData, publisher)
|
const ddo: DDO = await ocean.registerAsset(metaData as MetaData, publisher)
|
||||||
Logger.log("did", ddo.id)
|
Logger.log("did", ddo.id)
|
||||||
|
|
||||||
const serviceAgreementId: string = IdGenerator.generateId()
|
const accessService: Service = ddo.findServiceByType("Access")
|
||||||
const serviceAgreementSignature = await ocean.signServiceAgreement(ddo.id, serviceAgreementId, consumer)
|
const serviceAgreementResult: any = await ocean.signServiceAgreement(ddo.id, accessService.serviceDefinitionId,
|
||||||
Logger.log("ServiceAgreement Signature:", serviceAgreementSignature)
|
consumer)
|
||||||
|
|
||||||
|
Logger.log("ServiceAgreement Id:", serviceAgreementResult.serviceAgreementId)
|
||||||
|
Logger.log("ServiceAgreement Signature:", serviceAgreementResult.serviceAgreementSignature)
|
||||||
})()
|
})()
|
||||||
|
Loading…
Reference in New Issue
Block a user