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
ui->addressType->setItemData((int)OutputType::BECH32, "Generates a native segwit addresses (BIP-173), which reduces your transaction fees later on and offers better protection against typos, but some old wallets don't support it.", Qt::ToolTipRole);
if (model->wallet().getDefaultAddressType() == type) ui->addressType->setCurrentIndex(index);
96
+
};
97
+
add_address_type(OutputType::LEGACY, "Base58 (Legacy)", "Not recommended due to higher fees and less protection against typos.");
98
+
add_address_type(OutputType::P2SH_SEGWIT, "Base58 (P2SH-SegWit)", "Generates an address compatible with older wallets.");
99
+
add_address_type(OutputType::BECH32, "Bech32 (SegWit)", "Generates a native segwit addresses (BIP-173), which reduces your transaction fees later on and offers better protection against typos, but some old wallets don't support it.");
ui->addressType->setItemData((int)OutputType::BECH32M, "Although Bech32m (BIP-350) looks similar to Bech32, there is a slight difference and only some newer wallets support it.", Qt::ToolTipRole);
101
+
add_address_type(OutputType::BECH32M, "Bech32m (Taproot)", "Although Bech32m (BIP-350) looks similar to Bech32, there is a slight difference and only some newer wallets support it.");
0 commit comments