Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ICP.sln
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sample.PocketIC", "samples\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "PocketIC.Tests", "test\PocketIC.Tests\PocketIC.Tests.csproj", "{02D1DDA8-7A9A-4355-BE95-DE1720D56055}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Agent.Tests", "test\Agent.Tests\Agent.Tests.csproj", "{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -135,6 +137,10 @@ Global
{02D1DDA8-7A9A-4355-BE95-DE1720D56055}.Debug|Any CPU.Build.0 = Debug|Any CPU
{02D1DDA8-7A9A-4355-BE95-DE1720D56055}.Release|Any CPU.ActiveCfg = Release|Any CPU
{02D1DDA8-7A9A-4355-BE95-DE1720D56055}.Release|Any CPU.Build.0 = Release|Any CPU
{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -153,6 +159,7 @@ Global
{213F30BA-D147-4291-93A3-13A8A006126D} = {F71B8320-C279-4A79-A8D4-4039DB39D522}
{E674253B-7B51-40D0-9F3D-805007174D31} = {7FADA9D9-5FDA-4CFB-8A53-A578A61FBBA9}
{02D1DDA8-7A9A-4355-BE95-DE1720D56055} = {F71B8320-C279-4A79-A8D4-4039DB39D522}
{3F90FFFE-A2E6-4544-8387-F1EB8D4EBB2F} = {F71B8320-C279-4A79-A8D4-4039DB39D522}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3103E11A-E792-49EE-98C5-B2F3709DB088}
Expand Down
2 changes: 1 addition & 1 deletion UnityAssets/UnityHttp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private static Uri GetUri(string path)
{
path = "/" + path;
}
return new Uri("https://ic0.app" + path);
return new Uri("https://icp-api.io" + path);
}

private static HttpResponse ParseResponse(UnityWebRequest request)
Expand Down
Loading