Skip to content

Commit

Permalink
Update ContractManager - ability to increase storage.
Browse files Browse the repository at this point in the history
  • Loading branch information
TeknoPT committed Mar 4, 2024
1 parent b394e54 commit 490ffb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phantasma-hub",
"version": "1.0.12",
"version": "1.0.13",
"private": true,
"scripts": {
"dev": "npm run version:update && vite dev --cors true",
Expand All @@ -11,7 +11,7 @@
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prod": "npm run version:update && vite dev --host --port 4000",
"prod": "bun run version:update && vite dev --host --port 4000",
"bun": "bun build"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Components/Contract/ContractManager.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@
</div>
</div>

{#if tokenDataInformation && link}
{#if link.account && link.account.address == tokenDataInformation.owner}
{#if link}
{#if link.account}
<div class="mb-6">
<button
on:click={toggleIncreaseStorage}
Expand Down
2 changes: 1 addition & 1 deletion static/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.0.12"
"version": "1.0.13"
}

0 comments on commit 490ffb5

Please sign in to comment.