createInstance static method
Implementation
static Future<SignClient> createInstance({
required String projectId,
String relayUrl = WalletConnectConstants.DEFAULT_RELAY_URL,
required PairingMetadata metadata,
IStore<Map<String, dynamic>>? store,
bool memoryStore = false,
}) async {
final client = SignClient(
core: Core(
projectId: projectId,
relayUrl: relayUrl,
store: store,
),
metadata: metadata,
);
await client.init();
return client;
}