Skip to content

Commit

Permalink
fix(namada): imports
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Dec 19, 2024
1 parent 8d0c2e5 commit cdb2e78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/namada/NamadaConnection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as PoS from './NamadaPoS.ts'
import * as PGF from './NamadaPGF.ts'
import * as Gov from './NamadaGov.ts'
import * as Epoch from './NamadaEpoch.ts'
import * as Token from './NamadaToken.ts'
import type { Chain as Namada } from './Namada.ts'
import { decode, u256 } from '@hackbg/borshest'

Expand Down
2 changes: 1 addition & 1 deletion packages/namada/NamadaToken.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { decode, u64 } from '@hackbg/borshest'
import type { NamadaConnection as Connection } from './namada-connection'
import type { NamadaConnection as Connection } from './NamadaConnection'

export async function fetchDenomination (connection: Connection, token: string) {
const binary = await connection.abciQuery(`/vp/token/denomination/${token}`)
Expand Down

0 comments on commit cdb2e78

Please sign in to comment.