Add channel name hex data to streamkey
Also adds individual debug fields to help when debugging a channel verify currently
This commit is contained in:
parent
464f530264
commit
1a8e7b0973
1 changed files with 56 additions and 6 deletions
|
@ -50,7 +50,7 @@ export default function CreatorDashboardPage(props: Props) {
|
||||||
|
|
||||||
function createStreamKey() {
|
function createStreamKey() {
|
||||||
if (!activeChannelClaim || !sigData.signature || !sigData.signing_ts) return null;
|
if (!activeChannelClaim || !sigData.signature || !sigData.signing_ts) return null;
|
||||||
return `${activeChannelClaim.claim_id}?sig=${sigData.signature}&ts=${sigData.signing_ts}`;
|
return `${activeChannelClaim.claim_id}?d=${toHex(activeChannelClaim.name)}&s=${sigData.signature}&t=${sigData.signing_ts}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
/******/
|
/******/
|
||||||
|
@ -143,8 +143,10 @@ export default function CreatorDashboardPage(props: Props) {
|
||||||
{/* Stream Claim(s) */}
|
{/* Stream Claim(s) */}
|
||||||
{ livestreamClaim ? (
|
{ livestreamClaim ? (
|
||||||
<div style={{marginTop: 'var(--spacing-l)'}}>
|
<div style={{marginTop: 'var(--spacing-l)'}}>
|
||||||
<h4>Your LiveStream Claims</h4>
|
<h3>Your LiveStream Claims</h3>
|
||||||
<ClaimPreview uri={livestreamClaim.permanent_url} />
|
<ClaimPreview
|
||||||
|
uri={livestreamClaim.permanent_url}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<div style={{marginTop: 'var(--spacing-l)'}}>
|
<div style={{marginTop: 'var(--spacing-l)'}}>
|
||||||
|
@ -153,9 +155,57 @@ export default function CreatorDashboardPage(props: Props) {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeChannelClaim &&
|
{/* Debug Stuff */}
|
||||||
<div>Public Key: {activeChannelClaim.value.public_key}</div>
|
{ streamKey && (
|
||||||
}
|
<div style={{marginTop: 'var(--spacing-l)'}}>
|
||||||
|
<h3>Debug Info</h3>
|
||||||
|
|
||||||
|
{/* Channel ID */}
|
||||||
|
<FormField
|
||||||
|
name={'channelId'}
|
||||||
|
label={'Channel ID'}
|
||||||
|
type={'text'}
|
||||||
|
defaultValue={activeChannelClaim.claim_id}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Signature */}
|
||||||
|
<FormField
|
||||||
|
name={'signature'}
|
||||||
|
label={'Signature'}
|
||||||
|
type={'text'}
|
||||||
|
defaultValue={sigData.signature}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Signature TS */}
|
||||||
|
<FormField
|
||||||
|
name={'signaturets'}
|
||||||
|
label={'Signature Timestamp'}
|
||||||
|
type={'text'}
|
||||||
|
defaultValue={sigData.signing_ts}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Hex Data */}
|
||||||
|
<FormField
|
||||||
|
name={'datahex'}
|
||||||
|
label={'Hex Data'}
|
||||||
|
type={'text'}
|
||||||
|
defaultValue={toHex(activeChannelClaim.name)}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Channel Public Key */}
|
||||||
|
<FormField
|
||||||
|
name={'channelpublickey'}
|
||||||
|
label={'Public Key'}
|
||||||
|
type={'text'}
|
||||||
|
defaultValue={activeChannelClaim.value.public_key}
|
||||||
|
readOnly
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
)}
|
)}
|
||||||
</Page>
|
</Page>
|
||||||
|
|
Loading…
Reference in a new issue