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
/// - `public_key`: Compressed public key, represented as [H264].
4363
4366
/// - `public_key_uncompressed`: Uncompressed public key, represented as [H520].
4364
4367
/// - `session_topic`: WalletConnect session that was used to activate this coin.
4368
+
// TODO: We want to have different variants of WalletConnect policy for different coin types:
4369
+
// - ETH uses the structure found here.
4370
+
// - Tendermint doesn't use this variant all together. Tendermint generalizes one level on top of PrivKeyPolicy by having a different activation policy
4371
+
// structure that is either Priv(PrivKeyPolicy) or Pubkey(PublicKey) and when activated via wallet connect it uses the Pubkey(PublicKey) variant.
4372
+
// - UTXO coins on the otherhand need to keep a list of all the addresses activated in the wallet and not just a single account.
4373
+
// - Note: We need to have a way to select which account and address are the active ones (WalletConnect just spams us with all the addresses in every account).
0 commit comments