Skip to main content

Making requests

Requests to Coinbase Wallet can be made by calling the makeRequest function provided by the SDK. This function also accepts a list of actions that can be taken in as a single batch request.

cbwallet.makeRequest(
Request(actions: [
Action(jsonRpc: .eth_signTypedData_v3(
address: "0xCD2a3d9F938E13CD947Ec05AbC7FE734Df8DD826",
message: Data()))
])
) { result in
self.log("\(result)")
}

An example request is provided in our sample application.