Content合约允许用户在Relation Protocol网络上发布公共内容。用户可以通过此合约在网络上分享文章、图片、视频等多种类型的内容。同时,由于该合约基于区块链技术,因此其发布的内容具有不可篡改和可追溯的特点,保证了内容的可信度和可靠性。
ar://HENWTh3esXyAeLe1Yg_BrBOHhW-CcDQoU5inaAx-yNs
PREFIX : <http://relationlabs.ai/entity/>
PREFIX p: <http://relationlabs.ai/property/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
:Soul a rdfs:Class ;
rdfs:label "Soul" ;
rdfs:comment "A soul." .
p:publicContent a rdf:Property ;
rdfs:label "publicContent" ;
rdfs:comment "The public content." ;
rdfs:domain :Soul ;
rdfs:range xsd:string .
interface IContent is ISemanticSBT {
/**
* 发布内容
* @param content 发布的内容对应的Arweave交易哈希,可通过此交易哈希访问到原始发布内容
*/
function post(string memory content) external;
/**
* 查询发布内容
* @param tokenId
* @return content 发布的内容对应的Arweave交易哈希,可通过此交易哈希访问到原始发布内容
*/
function contentOf(uint256 tokenId) external view returns (string memory);
}
{
"content": {
"body": "${The body of content}",
"title": "${The title of content}"
}
}