Use wasm to decode stake account

This commit is contained in:
Justin Starry
2020-05-14 15:30:33 +08:00
committed by Michael Vines
parent 29ec98d0a1
commit 26e4767fdd
43 changed files with 1522 additions and 129 deletions

View File

@@ -39,7 +39,7 @@ export function AssignWithSeedDetailsCard(props: {
<td>Program</td>
<td className="text-right">
<Copyable bottom text={SystemProgram.programId.toBase58()}>
<code>{displayAddress(SystemProgram.programId)}</code>
<code>{displayAddress(SystemProgram.programId.toBase58())}</code>
</Copyable>
</td>
</tr>
@@ -75,7 +75,7 @@ export function AssignWithSeedDetailsCard(props: {
<td>Assigned Owner</td>
<td className="text-right">
<Copyable text={params.programId.toBase58()}>
<code>{displayAddress(params.programId)}</code>
<code>{displayAddress(params.programId.toBase58())}</code>
</Copyable>
</td>
</tr>