Skip to content

Commit

Permalink
new sequence builder project
Browse files Browse the repository at this point in the history
  • Loading branch information
ZemindJan committed Dec 17, 2024
1 parent 6bb4c77 commit 6c2ea09
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Config/SequenceConfig.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[/Script/Sequence.Config]
FallbackEncryptionKey = "aaaabbbbccccddddaaaabbbbccccdddd"
WaaSConfigKey = "eyJwcm9qZWN0SWQiOjM3MDY2LCJycGNTZXJ2ZXIiOiJodHRwczovL3dhYXMuc2VxdWVuY2UuYXBwIn0="
ProjectAccessKey = "AQAAAAAAAJDKR9cs25gJSSKzszRT9STo9hk"
WaaSConfigKey = "eyJwcm9qZWN0SWQiOjQxMDg3LCJycGNTZXJ2ZXIiOiJodHRwczovL3dhYXMuc2VxdWVuY2UuYXBwIn0="
ProjectAccessKey = "AQAAAAAAAKB_eaItDuiSDnsDrg1TM5Izj_k"
GoogleClientID = "970987756660-35a6tc48hvi8cev9cnknp0iugv9poa23.apps.googleusercontent.com"
AppleClientID = "com.horizon.sequence.waas"
FacebookClientID = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ void SequenceAPITest::GetLowestPriceOfferForCollectible(TFunction<void(FString)>

Marketplace->GetLowestPriceOfferForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x5e4bfd71236a21299d43f508dbb76cb7d0fd4e50",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](FSeqCollectibleOrder Order) {
Expand All @@ -555,7 +555,7 @@ void SequenceAPITest::GetHighestPriceOfferForCollectible(TFunction<void(FString)

Marketplace->GetHighestPriceOfferForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x5e4bfd71236a21299d43f508dbb76cb7d0fd4e50",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](FSeqCollectibleOrder Order) {
Expand All @@ -575,8 +575,8 @@ void SequenceAPITest::GetLowestPriceListingForCollectible(TFunction<void(FString

Marketplace->GetLowestPriceListingForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x44b3f42e2BF34F62868Ff9e9dAb7C2F807ba97Cb",
"130",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](FSeqCollectibleOrder Order) {
OnSuccess("Order: " + Order.Order.OrderId);
Expand All @@ -595,8 +595,8 @@ void SequenceAPITest::GetHighestPriceListingForCollectible(TFunction<void(FStrin

Marketplace->GetLowestPriceListingForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x44b3f42e2BF34F62868Ff9e9dAb7C2F807ba97Cb",
"130",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](FSeqCollectibleOrder Order) {
OnSuccess("Order: " + Order.Order.OrderId);
Expand All @@ -615,8 +615,8 @@ void SequenceAPITest::ListAllListingsForCollectible(TFunction<void(FString)> OnS

Marketplace->ListAllListingsForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x44b3f42e2BF34F62868Ff9e9dAb7C2F807ba97Cb",
"130",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](TArray<FSeqCollectibleOrder> Orders) {
OnSuccess("Orders: " + FString::FromInt(Orders.Num()));
Expand All @@ -635,7 +635,7 @@ void SequenceAPITest::ListAllOffersForCollectible(TFunction<void(FString)> OnSuc

Marketplace->ListAllOffersForCollectible(
Support->GetNetworkId(ENetwork::PolygonChain),
"0x5e4bfd71236a21299d43f508dbb76cb7d0fd4e50",
"0x079294e6ffec16234578c672fa3fbfd4b6c48640",
"1",
FSeqCollectiblesFilter::Empty(),
[OnSuccess](TArray<FSeqCollectibleOrder> Orders) {
Expand Down

0 comments on commit 6c2ea09

Please sign in to comment.