Import MetaMask SDK into your native iOS dapp to enable your users to easily connect with their MetaMask Mobile wallet.
See the example iOS dapp and the documentation for setting up the SDK in your iOS dapp for more information.
You can also see the JavaScript SDK repository and the Android SDK repository.
-
MetaMask Mobile version 7.6.0 or later installed on your target device (that is, a physical device or emulator). You can install MetaMask Mobile from the App Store or clone and compile MetaMask Mobile from source and build to your target device.
-
iOS version 15 or later. The SDK supports
ios-arm64
(iOS devices) andios-arm64-simulator
(M1 chip simulators). It currently doesn't supportios-ax86_64-simulator
(Intel chip simulators).- Swift 5.5 or later.
To add the SDK as a CocoaPods dependency to your project, add the following entry to our Podfile:
pod 'metamask-ios-sdk'
Run the following command:
pod install
To add the SDK as a Swift Package Manager (SPM) package to your project, in Xcode, select
File > Swift Packages > Add Package Dependency.
Enter the URL of the MetaMask iOS SDK repository: https://github.com/MetaMask/metamask-ios-sdk
.
Alternatively, you can add the URL directly in your project's package file:
dependencies: [
.package(
url: "https://github.com/MetaMask/metamask-ios-sdk",
from: "0.5.1"
)
]
Import the SDK by adding the following line to the top of your project file:
import metamask_ios_sdk
We have provided a convenient way to make rpc requests without having to first make a connect request. Please refer to Connect With Request for examples. Otherwise you can connect your dapp to MetaMask as follows:
let appMetadata = AppMetadata(name: "Dub Dapp", url: "https://dubdapp.com")
@ObservedObject var metamaskSDK = MetaMaskSDK.shared(appMetadata)
metamaskSDK.connect()
By default, MetaMask logs three SDK events: connectionRequest
, connected
, and disconnected
.
This allows MetaMask to monitor any SDK connection issues.
To disable this, set metamaskSDK.enableDebug = false
.
You can now call any JSON-RPC API method
using metamaskSDK.request()
.
The following example gets the user's chain ID by calling
eth_chainId
.
let chainIdRequest = EthereumRequest(method: .ethChainId)
let chainId = await metamaskSDK.request(chainIdRequest)
The following example gets the user's account balance by calling
eth_getBalance
.
// Create parameters
let account = metamaskSDK.account
let parameters: [String] = [
account, // account to check for balance
"latest" // "latest", "earliest" or "pending" (optional)
]
// Create request
let getBalanceRequest = EthereumRequest(
method: .ethGetBalance,
params: parameters)
// Make request
let accountBalance = await metamaskSDK.request(getBalanceRequest)
The following example sends a transaction by calling
eth_sendTransaction
.
Use a dictionary
If your request parameters make up a simple dictionary of string key-value pairs, you can use the
dictionary directly.
Note that Any
or even AnyHashable
types aren't supported, since the type must be explicitly known.
// Create parameters
let account = metamaskSDK.account
let parameters: [String: String] = [
"to": "0x...", // receiver address
"from": account, // sender address
"value": "0x..." // amount
]
// Create request
let transactionRequest = EthereumRequest(
method: .ethSendTransaction,
params: [parameters] // eth_sendTransaction expects an array parameters object
)
// Make a transaction request
let transactionResult = await metamaskSDK.request(transactionRequest)
Use a struct
For more complex parameter representations, define and use a struct that conforms to CodableData
,
that is, a struct that implements the following requirement:
func socketRepresentation() -> NetworkData
The type can then be represented as a socket packet.
struct Transaction: CodableData {
let to: String
let from: String
let value: String
let data: String?
init(to: String, from: String, value: String, data: String? = nil) {
self.to = to
self.from = from
self.value = value
self.data = data
}
func socketRepresentation() -> NetworkData {
[
"to": to,
"from": from,
"value": value,
"data": data
]
}
}
// Create parameters
let account = metamaskSDK.account
let transaction = Transaction(
to: "0x...", // receiver address
from: account, // sender address
value: "0x..." // amount
)
// Create request
let transactionRequest = EthereumRequest(
method: .ethSendTransaction,
params: [transaction] // eth_sendTransaction expects an array parameters object
)
// Make a transaction request
let result = await metamaskSDK.request(transactionRequest)
Please note that for request batching, the collection of `EthereumRequest<T>` needs to be of the same `<T>` type, i.e all requests use the same `params` type, e.g `[Transaction]`, or `[String]` etc. You can mix the rpc requests e.g a mix of `personal_sign`, eth_signTypedData_v4 etc as long as they share the same params type.
// Create parameters
let account = metamaskSDK.account
let params1: [String] = [account, "Message 1"]
let params2: [String] = [account, "Message 2"]
let params3: [String] = [account, "Message 3"]
let signRequest1 = EthereumRequest(
method: .personalSign,
params: params1
)
let signRequest2 = EthereumRequest(
method: .personalSign,
params: params2
)
let signRequest3 = EthereumRequest(
method: .personalSign,
params: params3
)
let requestBatch: [EthereumRequest] = [signRequest1, signRequest2, signRequest3]
let result = await metamaskSDK.batchRequest(requestBatch)
We have provided a convenience method that enables you to connect and make any request in one rpc request without having to call connect()
first.
let transaction = Transaction(
to: to,
from: metamaskSDK.account, // this is initially empty before connection, will be populated with selected address once connected
value: amount
)
let parameters: [Transaction] = [transaction]
let transactionRequest = EthereumRequest(
method: .ethSendTransaction,
params: parameters
)
let transactionResult = metamaskSDK.connectWith(transactionRequest)
We have further provided a specific convenience method that enables you to connect and make a personal sign rpc request. In this case you do not need to construct a request, you only provide the message to personal sign.
val message = "This is the message to sign"
let connectSignResult = await metamaskSDK.connectAndSign(message: message)
switch connectSignResult {
case let .success(value):
// use result
case let .failure(error):
// handle error
}