Skip to main content
The DAppBridgeService exposes a single RPC used to open bridge sessions between networks.

Service

service DAppBridgeService {
  rpc OpenBridge (OpenBridgeRequest) returns (OpenBridgeResponse);
}

Example

grpcurl orderbook-devnet.silvana.dev:443 \
  list silvana.ledger.v1.DAppBridgeService

grpcurl orderbook-devnet.silvana.dev:443 \
  describe silvana.ledger.v1.DAppBridgeService.OpenBridge
Use reflection to discover the full request/response schema of OpenBridge against the specific environment you are targeting — the exact fields may evolve independently of DAppProviderService.

See also

  • Overview — DAppBridgeService sits alongside DAppProviderService in the same silvana.ledger.v1 package.
  • GetServiceInfo — for non-bridge operations on the provider service.