JSONRPC icon indicating copy to clipboard operation
JSONRPC copied to clipboard

Swift library for JSON-RPC

Results 1 JSONRPC issues
Sort by recently updated
recently updated
newest added

Suggested implementation from @jbromburg: ```swift extension DataChannel { static func socket(url: URL) throws -> DataChannel { let socketSession: URLSession = .init(configuration: .default) let socket: URLSessionWebSocketTask = socketSession.webSocketTask(with: url) socket.resume() let...