Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/wasm-dot/js/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
* Follows wallet-platform pattern: buildTransaction(intent, context)
*/

import { BuilderNamespace } from "./wasm/wasm_dot";
import { DotTransaction } from "./transaction";
import type { TransactionIntent, BuildContext } from "./types";
import { BuilderNamespace } from "./wasm/wasm_dot.js";
import { DotTransaction } from "./transaction.js";
import type { TransactionIntent, BuildContext } from "./types.js";

/**
* Build a DOT transaction from an intent and context.
Expand Down Expand Up @@ -78,4 +78,4 @@ export function buildTransaction(intent: TransactionIntent, context: BuildContex
}

// Re-export types for convenience
export type { TransactionIntent, BuildContext } from "./types";
export type { TransactionIntent, BuildContext } from "./types.js";