Skip to content

Commit

Permalink
64-bit migration prep: load 32-bit version of ananas (#258)
Browse files Browse the repository at this point in the history
* Load 32bit version.

* Add link to beta.
  • Loading branch information
tomusdrw authored Dec 19, 2024
1 parent 8602487 commit bb87d71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/components/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export const Header = () => {
<div className="flex items-center gap-5">
<img src={Logo} alt="FluffyLabs logo" className="w-[90px] ml-3" />
<pre className="text-brand">PVM debugger</pre>
<pre className="text-white text-xs">
<a href="https://pvm-debugger.netlify.app/">64-bit beta</a>
</pre>
</div>
<div className="mr-3 text-white flex flex-row items-center justify-center gap-5">
<TooltipProvider>
Expand Down
3 changes: 2 additions & 1 deletion src/components/PvmSelect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ interface WasmMetadata {
resetPolkaVM: boolean;
};
wasmBlobUrl: string;
wasmBlobUrl32?: string;
}

export interface SelectedPvmWithPayload {
Expand Down Expand Up @@ -170,7 +171,7 @@ export const PvmSelect = () => {
id: value,
type: PvmTypes.WASM_URL,
params: {
url: path.join(url, "../", metadata.wasmBlobUrl),
url: path.join(url, "../", metadata.wasmBlobUrl32 || metadata.wasmBlobUrl),
lang,
},
},
Expand Down

0 comments on commit bb87d71

Please sign in to comment.