Skip to content

Commit c3eebcf

Browse files
committed
append client id to rpc
1 parent 61194f4 commit c3eebcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Thirdweb/Thirdweb.RPC/ThirdwebRPC.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public async Task<TResponse> SendRequestAsync<TResponse>(string method, params o
148148
private ThirdwebRPC(ThirdwebClient client, BigInteger chainId)
149149
{
150150
this._httpClient = client.HttpClient;
151-
this._rpcUrl = new Uri($"https://{chainId}.rpc.thirdweb.com/");
151+
this._rpcUrl = new Uri($"https://{chainId}.rpc.thirdweb.com/{client.ClientId}");
152152
this._rpcTimeout = TimeSpan.FromMilliseconds(client.FetchTimeoutOptions.GetTimeout(TimeoutType.Rpc));
153153
_ = this.StartBackgroundFlushAsync();
154154
}

0 commit comments

Comments
 (0)