Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink",
"version": "0.1.2",
"version": "0.1.3",
"private": true,
"workspaces": [
"packages/*"
Expand Down
3 changes: 2 additions & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Link from "next/link";
import { STORY_FACTORY, EXPLORER_URL } from "../../lib/contracts/constants";
import { version } from "../../package.json";

const CONTRACT_URL = `${EXPLORER_URL}/address/${STORY_FACTORY}`;
const GITHUB_URL = "https://github.com/realproject7/plotlink-contracts";
Expand Down Expand Up @@ -36,7 +37,7 @@ export function Footer() {
</span>
</div>
<div className="text-muted text-xs">
PlotLink &copy; {new Date().getFullYear()}
PlotLink &copy; {new Date().getFullYear()} &middot; v{version}
</div>
</div>
</footer>
Expand Down
Loading