http://www.mobr.ai/ontologies/ponto#Bridge
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.
Instances of ponto:Bridge can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
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 |
@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 .