getParticleNode static method

String getParticleNode(
  1. int id,
  2. String projectId,
  3. String projectKey
)

Implementation

static String getParticleNode(int id, String projectId, String projectKey) {
  return Uri(
      scheme: 'https',
      host: 'rpc.particle.network',
      path: 'evm-chain',
      queryParameters: {
        'chainId': id.toString(),
        'projectUuid': projectId,
        'projectKey': projectKey,
      }).toString();
}