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 rpc-devnet.modo-api.app:443 \
  list silvana.ledger.v1.DAppBridgeService

grpcurl rpc-devnet.modo-api.app: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

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