-
Notifications
You must be signed in to change notification settings - Fork 9
feat: added transak widget #158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
b43822c
feat: added transak config
YermekG 03bc8bf
feat: added transak web widget and environment enum
YermekG efc18e5
feat: added missing module
YermekG a04a6b9
fix: resolved compile issue with ue4
YermekG 5609008
fix: compiler issue with ue4
YermekG 5d92e40
chore: isolated source code for ue5
YermekG 44295f1
chore: removed requirement of folder name in branch name (#157)
YermekG ec6a8eb
feat: add 4.26 support to transak widget (#156)
ImmutableJeffrey f762eb3
chore: added comments and moved to dedicated folder
YermekG 24cb276
feat: added sample asset for transak widget
YermekG 55ab238
fix: minor changes for consts and enums
YermekG 1c8f252
fix: resolved compile issues with ue 5.4
YermekG 1ec1597
refactor: added marketplace module and renamed transak widget
YermekG 945b705
refactor: added marketplace module to keep marketplace features such …
YermekG 9d14b5c
chore: renamed transak widget to on ramp
YermekG 8b4de95
chore: change misleading transak wording
YermekG b870f15
chore: source code polish
YermekG 23d30cb
chore: add custom openapi template (#3423)
ImmutableJeffrey c3ae5e5
fix: openapi generator unique items conflicting with array (#3423)
ImmutableJeffrey 97e3c84
chore: update openapi.json (#3423)
ImmutableJeffrey 22b3643
refactor: to generate openapi with batch files (#3423)
ImmutableJeffrey 57728b9
chore: manually update openapi files (#3423)
ImmutableJeffrey b255b6e
feat: implement oneof for data models (#3518)
ImmutableJeffrey adeba16
feat: automate the process of updating zkevm repo when it's correspon…
ImmutableJeffrey eb2cad2
fix: linting errors for zkevm api scripts (#3522)
ImmutableJeffrey 648a96f
Merge branch 'main' into feat/transak
YermekG File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+15.8 KB
(100%)
Content/BlueprintSampleContent/ImtblAuthenticatedWidget4_26.uasset
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,60 @@ | ||
{ | ||
"FileVersion": 3, | ||
"Version": 1, | ||
"VersionName": "1.3.0.alpha", | ||
"FriendlyName": "Immutable", | ||
"Description": "", | ||
"Category": "Other", | ||
"CreatedBy": "", | ||
"CreatedByURL": "", | ||
"DocsURL": "", | ||
"MarketplaceURL": "", | ||
"SupportURL": "", | ||
"EnabledByDefault": true, | ||
"CanContainContent": true, | ||
"IsBetaVersion": true, | ||
"IsExperimentalVersion": true, | ||
"Installed": true, | ||
"Modules": [ | ||
{ | ||
"Name": "Immutable", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutableEditor", | ||
"Type": "Editor", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutablePluginManager", | ||
"Type": "Runtime", | ||
"LoadingPhase": "EarliestPossible" | ||
}, | ||
{ | ||
"Name": "ImmutableOrderbook", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutablezkEVMAPI", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
} | ||
] | ||
{ | ||
"FileVersion": 3, | ||
"Version": 1, | ||
"VersionName": "1.3.0.alpha", | ||
"FriendlyName": "Immutable", | ||
"Description": "", | ||
"Category": "Other", | ||
"CreatedBy": "", | ||
"CreatedByURL": "", | ||
"DocsURL": "", | ||
"MarketplaceURL": "", | ||
"SupportURL": "", | ||
"EnabledByDefault": true, | ||
"CanContainContent": true, | ||
"IsBetaVersion": true, | ||
"IsExperimentalVersion": true, | ||
"Installed": true, | ||
"Modules": [ | ||
{ | ||
"Name": "Immutable", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutableEditor", | ||
"Type": "Editor", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutablePluginManager", | ||
"Type": "Runtime", | ||
"LoadingPhase": "EarliestPossible" | ||
}, | ||
{ | ||
"Name": "ImmutableOrderbook", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutablezkEVMAPI", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
}, | ||
{ | ||
"Name": "ImmutableMarketplace", | ||
"Type": "Runtime", | ||
"LoadingPhase": "Default" | ||
} | ||
], | ||
"Plugins": [ | ||
{ | ||
"Name": "BLUI", | ||
"Enabled": true | ||
}, | ||
{ | ||
"Name": "WebBrowserWidget", | ||
"Enabled": false | ||
} | ||
] | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#pragma once | ||
|
||
UENUM(BlueprintType) | ||
enum class EPassportEnvironment : uint8 | ||
{ | ||
Development, | ||
Sandbox, | ||
Production, | ||
}; | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.