-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added get account list intent - this allows a user to check the accounts/login methods associated with a wallet address; useful for account federation * increment package version
- Loading branch information
1 parent
ced06ba
commit 5d227ee
Showing
11 changed files
with
107 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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
16 changes: 16 additions & 0 deletions
16
...ty/Sequence/SequenceSDK/EmbeddedWallet/DataTypes/ParameterTypes/IntentDataListAccounts.cs
This file contains 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,16 @@ | ||
using System; | ||
using Newtonsoft.Json; | ||
|
||
namespace Sequence.EmbeddedWallet | ||
{ | ||
[Serializable] | ||
public class IntentDataListAccounts | ||
{ | ||
public string wallet; | ||
|
||
public IntentDataListAccounts(string walletAddress) | ||
{ | ||
this.wallet = walletAddress; | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...quence/SequenceSDK/EmbeddedWallet/DataTypes/ParameterTypes/IntentDataListAccounts.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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
14 changes: 14 additions & 0 deletions
14
...ty/Sequence/SequenceSDK/EmbeddedWallet/DataTypes/ReturnTypes/IntentResponseAccountList.cs
This file contains 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,14 @@ | ||
namespace Sequence.EmbeddedWallet | ||
{ | ||
public class IntentResponseAccountList | ||
{ | ||
public Account[] accounts; | ||
public string currentAccountId; | ||
|
||
public IntentResponseAccountList(Account[] accounts, string currentAccountId) | ||
{ | ||
this.accounts = accounts; | ||
this.currentAccountId = currentAccountId; | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
...quence/SequenceSDK/EmbeddedWallet/DataTypes/ReturnTypes/IntentResponseAccountList.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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