ponto:Bridge leaf node


URI

http://www.mobr.ai/ontologies/ponto#Bridge

Label

Bridge

Description

A parachain that acts as an intermediary between the Polkadot Relay Chain and an external chain, in such a way that it appears to the Relay Chain that the external chain is a parachain (i.e., meets the Polkadot Host's requirements of parachains). Bridges allow for interaction between other blockchains, such as Ethereum and Bitcoin, that are not natively compatible with Polkadot.

Usage

Instances of ponto:Bridge can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class ponto:Bridge
ponto:bridgeExternalChain owl:ObjectProperty ponto:DistributedLedger
From class ponto:Parachain
ponto:hasParaId owl:DatatypeProperty ponto:paraId
ponto:hasParaName owl:DatatypeProperty ponto:paraName
From class ponto:DistributedLedger
ponto:hasNetType rdf:Property xsd:string
ponto:hasPR owl:ObjectProperty ponto:PullRequest
ponto:tests owl:ObjectProperty ponto:DistributedLedger

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix ponto: <http://www.mobr.ai/ontologies/ponto#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ponto:Bridge a owl:Class ;
    rdfs:label "Bridge" ;
    rdfs:comment "A parachain that acts as an intermediary between the Polkadot Relay Chain and an external chain, in such a way that it appears to the Relay Chain that the external chain is a parachain (i.e., meets the Polkadot Host's requirements of parachains). Bridges allow for interaction between other blockchains, such as Ethereum and Bitcoin, that are not natively compatible with Polkadot." ;
    rdfs:subClassOf ponto:Parachain .