Skip to content

Commit b628e31

Browse files
v1.6.0 (#13)
1 parent 4d87294 commit b628e31

File tree

59 files changed

+1395
-515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1395
-515
lines changed
Binary file not shown.
Binary file not shown.

Scripts/BuildPlugin.bat

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
@echo off
2-
ue4 package -NoHostPlatform -TargetPlatforms=Win64+Android+Linux+LinuxArm64 -Package=%UserProfile%\Downloads\ThirdwebSDK_Dist
2+
3+
ue4 package ^
4+
-NoHostPlatform ^
5+
-TargetPlatforms=Win64+Android+Linux+LinuxArm64 ^
6+
-Package=%UserProfile%\Downloads\ThirdwebSDK_Dist
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:538cd402c265a7953fcd84770627944f3685ee0d5800c1f417d4d1b75cf2b046
3-
size 88371628
2+
oid sha256:00d7f00c2abfda13a4a2336fbfa2f66d410a791aa1dff72b72cf4b70aea98c0d
3+
size 91617858

Source/ThirdParty/IOS/libthirdweb.a

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:9a4c4cbe1a1914fb76188e49a7489e0b842e9c6313337186626586770b1abdd3
3-
size 61055976
2+
oid sha256:cad63c2e1399784cb235d975da13e412b11af06d0b4e12fa9ac1af81f869e209
3+
size 61692616
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:9a4c4cbe1a1914fb76188e49a7489e0b842e9c6313337186626586770b1abdd3
3-
size 61055976
2+
oid sha256:cad63c2e1399784cb235d975da13e412b11af06d0b4e12fa9ac1af81f869e209
3+
size 61692616

Source/ThirdParty/Linux/libthirdweb.a

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:7709bae02297dfcdbf403ac83c69d8741aab11c85d42b625452a0d9c50379167
3-
size 93720460
2+
oid sha256:bdb587b7fc8ade6124a123c5bdf8d63d75fac0766fd6fba6c8c5e0ccddfc7e41
3+
size 94536514
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:164c72c97658f2a6de841c9c91475cf7b80f83369789afdb5c92c96df7ba0043
3-
size 94659054
2+
oid sha256:06632c6cb8828cdce3ae002195e68cb462d27b8f9b8efc48df66e522969e9883
3+
size 94742208

Source/ThirdParty/Mac/libthirdweb.a

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:61bcba2a763230bb9cb2453ffa81a2f9057823fc6808bc9379c13f9d6b2f318a
3-
size 122838016
2+
oid sha256:3fa9cc79a0bbbbaf0530f0dc9001c6b4f966b6e5d2ded325295803208a9a7364
3+
size 124002600
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:a4c01a1c11c62e05e8aaaa712211fc8f47f2a0137af09620aa93b9bf4a50ea49
3-
size 93399980
2+
oid sha256:e050157303cfdf164f99efcd1635dece2fb85bf7eca4514f8b53d0c1b6afaf91
3+
size 95449088
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
2+
3+
#include "AsyncTasks/Engine/AsyncTaskThirdwebEngineReadContract.h"
4+
5+
#include "HttpModule.h"
6+
#include "ThirdwebLog.h"
7+
#include "ThirdwebRuntimeSettings.h"
8+
#include "ThirdwebUtils.h"
9+
10+
#include "Dom/JsonObject.h"
11+
12+
#include "Interfaces/IHttpResponse.h"
13+
14+
#include "Kismet/KismetStringLibrary.h"
15+
16+
#include "Serialization/JsonReader.h"
17+
#include "Serialization/JsonSerializer.h"
18+
19+
UAsyncTaskThirdwebEngineReadContract* UAsyncTaskThirdwebEngineReadContract::ReadContract(
20+
UObject* WorldContextObject,
21+
const int64 ChainId,
22+
const FString& ContractAddress,
23+
const FString& FunctionName,
24+
const TArray<FString>& Args
25+
)
26+
{
27+
if (!WorldContextObject)
28+
{
29+
return nullptr;
30+
}
31+
NEW_TASK
32+
Task->ChainId = ChainId;
33+
Task->ContractAddress = ContractAddress;
34+
Task->FunctionName = FunctionName;
35+
Task->Args = Args;
36+
Task->RegisterWithGameInstance(WorldContextObject);
37+
return Task;
38+
}
39+
40+
void UAsyncTaskThirdwebEngineReadContract::Activate()
41+
{
42+
FHttpModule& HttpModule = FHttpModule::Get();
43+
const TSharedRef<IHttpRequest> Request = HttpModule.CreateRequest();
44+
Request->SetVerb(TEXT("GET"));
45+
Request->SetHeader("Content-Type", TEXT("application/json"));
46+
Request->SetHeader("authorization", TEXT("Bearer ") + UThirdwebRuntimeSettings::GetEngineAccessToken());
47+
Request->SetURL(
48+
FString::Format(
49+
TEXT("{0}/contract/{1}/{2}/read?functionName={3}{4}"),
50+
{
51+
UThirdwebRuntimeSettings::GetEngineBaseUrl(),
52+
FString::Printf(TEXT("%lld"), ChainId),
53+
ContractAddress,
54+
FunctionName,
55+
Args.Num() > 0 ? TEXT("&args={0}") + UKismetStringLibrary::JoinStringArray(Args, TEXT(",")) : TEXT("")
56+
}
57+
)
58+
);
59+
ThirdwebUtils::Internal::LogRequest(Request, {UThirdwebRuntimeSettings::GetEngineAccessToken()});
60+
Request->SetTimeout(30.0f);
61+
Request->OnProcessRequestComplete().BindUObject(this, &ThisClass::HandleResponse);
62+
Request->ProcessRequest();
63+
}
64+
65+
void UAsyncTaskThirdwebEngineReadContract::HandleResponse(FHttpRequestPtr, FHttpResponsePtr Response, bool bConnectedSuccessfully)
66+
{
67+
if (bConnectedSuccessfully)
68+
{
69+
FString Content = Response->GetContentAsString();
70+
TW_LOG(Verbose, TEXT("UAsyncTaskThirdwebEngineReadContract::HandleResponse::Content=%s"), *Content)
71+
TSharedPtr<FJsonObject> JsonObject = MakeShareable(new FJsonObject);
72+
const TSharedRef<TJsonReader<>> Reader = TJsonReaderFactory<>::Create(Content);
73+
FJsonSerializer::Deserialize(Reader, JsonObject);
74+
if (JsonObject.IsValid())
75+
{
76+
if (JsonObject->HasTypedField<EJson::String>(TEXT("error")))
77+
{
78+
FString Error = TEXT("Unknown Error");
79+
if (JsonObject->HasTypedField<EJson::String>(TEXT("message")))
80+
{
81+
Error = JsonObject->GetStringField(TEXT("message"));
82+
}
83+
return HandleFailed(Error);
84+
}
85+
Success.Broadcast(Content, TEXT(""));
86+
SetReadyToDestroy();
87+
}
88+
else return HandleFailed(TEXT("Invalid Response"));
89+
}
90+
else return HandleFailed(TEXT("Network connection failed"));
91+
}
92+
93+
void UAsyncTaskThirdwebEngineReadContract::HandleFailed(const FString& Error)
94+
{
95+
Failed.Broadcast(TEXT(""), Error);
96+
SetReadyToDestroy();
97+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
2+
3+
#include "AsyncTasks/Engine/AsyncTaskThirdwebEngineWriteContract.h"
4+
5+
#include "HttpModule.h"
6+
#include "ThirdwebLog.h"
7+
#include "ThirdwebRuntimeSettings.h"
8+
#include "ThirdwebUtils.h"
9+
10+
#include "Dom/JsonObject.h"
11+
12+
#include "Interfaces/IHttpResponse.h"
13+
14+
#include "Kismet/KismetStringLibrary.h"
15+
16+
TSharedPtr<FJsonObject> FThirdwebTransactionOverrides::ToJson() const
17+
{
18+
TSharedPtr<FJsonObject> JsonObject = MakeShareable(new FJsonObject);
19+
if (Gas > 0)
20+
{
21+
JsonObject->SetStringField(TEXT("gas"), FString::Printf(TEXT("%lld"), Gas));
22+
}
23+
if (MaxFeePerGas > 0)
24+
{
25+
JsonObject->SetStringField(TEXT("maxFeePerGas"), FString::Printf(TEXT("%lld"), MaxFeePerGas));
26+
}
27+
if (MaxPriorityFeePerGas > 0)
28+
{
29+
JsonObject->SetStringField(TEXT("maxPriorityFeePerGas"), FString::Printf(TEXT("%lld"), MaxPriorityFeePerGas));
30+
}
31+
if (Value > 0)
32+
{
33+
JsonObject->SetStringField(TEXT("value"), FString::Printf(TEXT("%lld"), Value));
34+
}
35+
return JsonObject;
36+
}
37+
38+
UAsyncTaskThirdwebEngineWriteContract* UAsyncTaskThirdwebEngineWriteContract::WriteContract(
39+
UObject* WorldContextObject,
40+
const int64 ChainId,
41+
const FString& ContractAddress,
42+
const FString& BackendWalletAddress,
43+
const FSmartWalletHandle& SmartWallet,
44+
const FString& FactoryAddress,
45+
const FString& IdempotencyKey,
46+
const FString& FunctionName,
47+
const TArray<FString>& Args,
48+
const FThirdwebTransactionOverrides& TxOverrides,
49+
const FString& Abi,
50+
const bool bSimulateTx)
51+
{
52+
if (!WorldContextObject)
53+
{
54+
return nullptr;
55+
}
56+
NEW_TASK
57+
Task->ChainId = ChainId;
58+
Task->ContractAddress = ContractAddress.TrimStartAndEnd();
59+
Task->BackendWalletAddress = BackendWalletAddress.TrimStartAndEnd();
60+
Task->SmartWallet = SmartWallet;
61+
Task->FactoryAddress = FactoryAddress.TrimStartAndEnd();
62+
Task->IdempotencyKey = IdempotencyKey.TrimStartAndEnd();
63+
Task->FunctionName = FunctionName.TrimStartAndEnd();
64+
Task->Args = Args;
65+
Task->TxOverrides = TxOverrides;
66+
Task->Abi = Abi.TrimStartAndEnd();
67+
Task->bSimulateTx = bSimulateTx;
68+
Task->RegisterWithGameInstance(WorldContextObject);
69+
return Task;
70+
}
71+
72+
void UAsyncTaskThirdwebEngineWriteContract::Activate()
73+
{
74+
FHttpModule& HttpModule = FHttpModule::Get();
75+
const TSharedRef<IHttpRequest> Request = HttpModule.CreateRequest();
76+
Request->SetVerb(TEXT("POST"));
77+
Request->SetHeader(TEXT("Content-Type"), TEXT("application/json"));
78+
Request->SetHeader(TEXT("authorization"), TEXT("Bearer ") + UThirdwebRuntimeSettings::GetEngineAccessToken());
79+
Request->SetHeader(TEXT("x-backend-wallet-address"), BackendWalletAddress);
80+
if (!IdempotencyKey.IsEmpty())
81+
{
82+
Request->SetHeader(TEXT("x-idempotency-key"), IdempotencyKey);
83+
}
84+
if (SmartWallet.IsValid())
85+
{
86+
Request->SetHeader(TEXT("x-account-address"), SmartWallet.ToAddress());
87+
}
88+
if (!FactoryAddress.IsEmpty())
89+
{
90+
Request->SetHeader(TEXT("x-account-factory-address"), FactoryAddress);
91+
}
92+
93+
TSharedPtr<FJsonObject> JsonObject = MakeShareable(new FJsonObject);
94+
JsonObject->SetStringField(TEXT("functionName"), FunctionName);
95+
TArray<TSharedPtr<FJsonValue>> JsonArgs;
96+
for (const FString& Arg : Args)
97+
{
98+
JsonArgs.Emplace(MakeShareable(new FJsonValueString(Arg)));
99+
}
100+
JsonObject->SetArrayField(TEXT("args"), JsonArgs);
101+
if (!TxOverrides.IsDefault())
102+
{
103+
JsonObject->SetObjectField(TEXT("txOverrides"), TxOverrides.ToJson());
104+
}
105+
if (!Abi.IsEmpty())
106+
{
107+
JsonObject->SetArrayField(TEXT("abi"), ThirdwebUtils::Json::ToJsonArray(Abi));
108+
}
109+
FString Content = ThirdwebUtils::Json::ToString(JsonObject);
110+
Request->SetContentAsString(Content);
111+
Request->SetURL(
112+
FString::Format(
113+
TEXT("{0}/contract/{1}/{2}/write{3}"),
114+
{
115+
UThirdwebRuntimeSettings::GetEngineBaseUrl(),
116+
FString::Printf(TEXT("%lld"), ChainId),
117+
ContractAddress,
118+
bSimulateTx ? TEXT("?simulateTx=true") : TEXT("")
119+
}
120+
)
121+
);
122+
ThirdwebUtils::Internal::LogRequest(Request, {UThirdwebRuntimeSettings::GetEngineAccessToken()});
123+
Request->SetTimeout(30.0f);
124+
Request->OnProcessRequestComplete().BindUObject(this, &ThisClass::HandleResponse);
125+
Request->ProcessRequest();
126+
}
127+
128+
void UAsyncTaskThirdwebEngineWriteContract::HandleResponse(FHttpRequestPtr, FHttpResponsePtr Response, bool bConnectedSuccessfully)
129+
{
130+
if (bConnectedSuccessfully)
131+
{
132+
const FString Content = Response->GetContentAsString();
133+
if (TSharedPtr<FJsonObject> JsonObject = ThirdwebUtils::Json::ToJson(Content); JsonObject.IsValid())
134+
{
135+
TW_LOG(Verbose, TEXT("UAsyncTaskThirdwebEngineWriteContract::HandleResponse::Content=%s"), *Content)
136+
if (JsonObject->HasTypedField<EJson::String>(TEXT("error")))
137+
{
138+
FString Error = TEXT("Unknown Error");
139+
if (JsonObject->HasTypedField<EJson::String>(TEXT("message")))
140+
{
141+
Error = JsonObject->GetStringField(TEXT("message"));
142+
}
143+
return HandleFailed(Error);
144+
}
145+
FString QueueId = TEXT("Unknown");
146+
if (JsonObject->HasTypedField<EJson::String>(TEXT("queueId")))
147+
{
148+
QueueId = JsonObject->GetStringField(TEXT("queueId"));
149+
}
150+
Success.Broadcast(QueueId, TEXT(""));
151+
SetReadyToDestroy();
152+
}
153+
else return HandleFailed(TEXT("Invalid Response"));
154+
}
155+
else return HandleFailed(TEXT("Network connection failed"));
156+
}
157+
158+
void UAsyncTaskThirdwebEngineWriteContract::HandleFailed(const FString& Error)
159+
{
160+
Failed.Broadcast(TEXT(""), Error);
161+
SetReadyToDestroy();
162+
}

Source/Thirdweb/Private/AsyncTasks/Wallets/InApp/AsyncTaskThirdwebGetLinkedAccounts.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#include "AsyncTasks/Wallets/InApp/AsyncTaskThirdwebGetLinkedAccounts.h"
44

5+
#include "Async/TaskGraphInterfaces.h"
6+
57
#include "Components/SlateWrapperTypes.h"
68

79
void UAsyncTaskThirdwebGetLinkedAccounts::Activate()
@@ -21,7 +23,7 @@ UAsyncTaskThirdwebGetLinkedAccounts* UAsyncTaskThirdwebGetLinkedAccounts::GetLin
2123
return Task;
2224
}
2325

24-
void UAsyncTaskThirdwebGetLinkedAccounts::HandleResponse(const TArray<FString>& LinkedAccounts)
26+
void UAsyncTaskThirdwebGetLinkedAccounts::HandleResponse(const TArray<FThirdwebLinkedAccount>& LinkedAccounts)
2527
{
2628
if (IsInGameThread())
2729
{

Source/Thirdweb/Private/AsyncTasks/Wallets/InApp/AsyncTaskThirdwebLoginWithOAuth.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
22

3-
#include "AsyncTasks/AsyncTaskThirdwebLoginWithOAuth.h"
3+
#include "AsyncTasks/Wallets/InApp/AsyncTaskThirdwebLoginWithOAuth.h"
44

55
#include "ThirdwebLog.h"
66
#include "TimerManager.h"

Source/Thirdweb/Private/AsyncTasks/Wallets/InApp/Link/AsyncTaskThirdwebLink.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
void UAsyncTaskThirdwebLink::Activate()
88
{
9-
switch (InAppWallet.GetSource())
9+
switch (NewInAppWallet.GetSource())
1010
{
1111
case FInAppWalletHandle::Email: return InAppWallet.LinkOTP(
1212
NewInAppWallet,

Source/Thirdweb/Private/AsyncTasks/Wallets/Smart/AsyncTaskThirdwebAddAdmin.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
#include "AsyncTasks/Wallets/Smart/AsyncTaskThirdwebAddAdmin.h"
44

5-
#include "ThirdwebSigner.h"
6-
75
#include "Components/SlateWrapperTypes.h"
86

97
void UAsyncTaskThirdwebAddAdmin::Activate()

Source/Thirdweb/Private/AsyncTasks/Wallets/Smart/AsyncTaskThirdwebGetAdmins.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
#include "AsyncTasks/Wallets/Smart/AsyncTaskThirdwebGetAdmins.h"
44

5-
#include "ThirdwebSigner.h"
6-
75
#include "Components/SlateWrapperTypes.h"
86

97
void UAsyncTaskThirdwebGetAdmins::Activate()

Source/Thirdweb/Private/AsyncTasks/Wallets/Smart/AsyncTaskThirdwebIsActiveSigner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "AsyncTasks/Wallets/Smart/AsyncTaskThirdwebIsActiveSigner.h"
44

5-
#include "ThirdwebSigner.h"
5+
#include "Containers/ThirdwebSigner.h"
66

77
#include "Components/SlateWrapperTypes.h"
88

Source/Thirdweb/Private/AsyncTasks/Wallets/Smart/AsyncTaskThirdwebIsDeployed.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
#include "AsyncTasks/Wallets/Smart/AsyncTaskThirdwebIsDeployed.h"
44

5-
#include "ThirdwebSigner.h"
6-
75
#include "Components/SlateWrapperTypes.h"
86

97
void UAsyncTaskThirdwebIsDeployed::Activate()

Source/Thirdweb/Private/AsyncTasks/Wallets/Smart/AsyncTaskThirdwebIsGetActiveSigners.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Copyright (c) 2024 Thirdweb. All Rights Reserved.
22

3-
#include "ThirdwebSigner.h"
4-
53
#include "AsyncTasks/Wallets/Smart/AsyncTaskThirdwebGetActiveSigners.h"
64

75
#include "Components/SlateWrapperTypes.h"
86

7+
#include "Containers/ThirdwebSigner.h"
8+
99
void UAsyncTaskThirdwebGetActiveSigners::Activate()
1010
{
1111
FString Error;

0 commit comments

Comments
 (0)