This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@import": "https://ns.ownyourdata.eu/ns/soya-context.json", | |
"@version": 1.1, | |
"xsd": "http://www.w3.org/2001/XMLSchema#", | |
"@base": "https://soya.ownyourdata.eu/zQmTHP44chTm9Fp1CX3wT6GGfFJRWcSLhdDyQfV6H8Aigmq/" | |
}, | |
"@graph": [ | |
{ | |
"@id": "Person", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@import": "https://ns.ownyourdata.eu/ns/soya-context.json", | |
"@version": 1.1, | |
"xsd": "http://www.w3.org/2001/XMLSchema#" | |
}, | |
"@graph": [ | |
{ | |
"@id": "Person", | |
"@type": "owl:Class", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@version": 1.1, | |
"@import": "https://ns.ownyourdata.eu/ns/soya-context.json", | |
"@base": "https://soya.ownyourdata.eu/DRI123/", | |
"xsd": "http://www.w3.org/2001/XMLSchema#" | |
}, | |
"@graph": [ | |
{ | |
"@id": "Person", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meta: | |
name: DRI123 | |
content: | |
bases: | |
- name: Person | |
attributes: | |
name: String | |
dateOfBirth: Date | |
age: Integer | |
sex: String |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import the required libraries | |
const Web3 = require('web3'); | |
// Create a new instance of the Web3 provider | |
const web3 = new Web3('https://bellecour.iex.ec'); | |
// Define the address of the smart contract and the ABI | |
const contractAddress = '0xF31A125fb44E0c2dca45c2665F272e9fc09f92AE'; | |
const contractAbi = [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import the required libraries | |
const Web3 = require('web3'); | |
// Create a new instance of the Web3 provider | |
const web3 = new Web3('https://bellecour.iex.ec'); | |
// Define the address of the smart contract and the ABI | |
const contractAddress = '0xF31A125fb44E0c2dca45c2665F272e9fc09f92AE'; | |
const contractAbi = [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.8.0 <0.9.0; | |
contract LogStorage { | |
event DataStored( | |
string _data | |
); | |
function StoreInLogs(string calldata _data) public { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@version": 1.1, | |
"@vocab": "https://soya.ownyourdata.eu/Organisation/" | |
}, | |
"@graph": [ | |
{ | |
"@type": "Organisation", | |
"name": "Shop Hans Huber", | |
"location": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Shop Hans Huber", | |
"location": { | |
"address": "straße 4, 1010 Wien", | |
"coordinates": [ | |
{ | |
"latitude": 48.1, | |
"longitude": 60.1 | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": { | |
"@version": 1.1, | |
"@vocab": "https://soya.ownyourdata.eu/Organisation/" | |
}, | |
"@graph": [ | |
{ | |
"@type": "Organisation", | |
"name": "TSP Hans Huber", | |
"location": [ |
NewerOlder