Skip to content

Commit

Permalink
fix(namada): expose fetchBlockResults in Chain
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Sep 26, 2024
1 parent 2505610 commit a14eb8e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/namada/NamadaChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ export default class NamadaChain extends CW.Chain {
throw new Error('Transacting on Namada is currently not supported.')
}

fetchBlockResults (options?: { height?: number|bigint }) {
return this.getConnection().fetchBlockResultsImpl(options)
}
fetchProtocolParameters () {
return this.getConnection().fetchProtocolParametersImpl()
}
Expand Down

0 comments on commit a14eb8e

Please sign in to comment.