@polkadot/types
Version:
Implementation of the Parity codec
18 lines (17 loc) • 537 B
JavaScript
export const rpc = {
getFinalizedHead: {
description: 'Returns hash of the latest BEEFY finalized block as seen by this client.',
params: [],
type: 'H256'
},
subscribeJustifications: {
description: 'Returns the block most recently finalized by BEEFY, alongside its justification.',
params: [],
pubsub: [
'justifications',
'subscribeJustifications',
'unsubscribeJustifications'
],
type: 'BeefyVersionedFinalityProof'
}
};