CoreBitcoin icon indicating copy to clipboard operation
CoreBitcoin copied to clipboard

私钥生成的隔离见证地址和助记词生成的隔离见证地址不一样的吗?

Open LoveBadBoy opened this issue 5 years ago • 2 comments

私钥生成的隔离见证地址和助记词生成的隔离见证地址不一样的吗?

Originally posted by @iphoneten in https://github.com/oleganza/CoreBitcoin/issues/128#issuecomment-628997449

你找到生成隔离见证的方法。

LoveBadBoy avatar Oct 28 '20 09:10 LoveBadBoy

const MobileList: FC<{ className?: string; connections: AccountConnection[]; onDisconnect: (app: AccountConnection) => void; }> = ({ className, connections, onDisconnect }) => { const { t } = useTranslation(); return ( <ListBlock className={className}> {connections.map((app, index) => ( <> <MobileList.false} key={app.clientSessionId}> <SafeDappImage src={app.manifest.iconUrl} /> <DappTextBlock> <Label2>{formatDappUrl(app.manifest.url)}</Label2> <Body3>{app.manifest.name}</Body3> </DappTextBlock> <DisconnectButton size="small" onClick={() => onDisconnect(app)}> {t('disconnect')} </DisconnectButton> </MobileListItem> {index !== connections.length - 1 && <Divider />} </> ))} </ListBlock> ); };

Hassan222-ux avatar Apr 02 '25 01:04 Hassan222-ux

app.manifest.name

Hassan222-ux avatar Apr 02 '25 01:04 Hassan222-ux