You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@chrisli30 We already defined it but just haven't implement. In the avs.proto right now
message GetWalletReq {
string salt = 1;
// this is the factory address for the wallet, when leaving its empty, we will use our default factory address
string factory_address = 2;
}
message ListWalletReq {
// filter out by factory address or salt
// otherwise return all the wallet
string factory = 1; # TODO: VInh to rename this to factory_address for consistent
string salt = 2;
}
Since we added a factoryAddress param to getWallet,
getWallets
seems to need it too.Currently,
The text was updated successfully, but these errors were encountered: