diff --git a/suchwowx/static/js/main.js b/suchwowx/static/js/main.js
index 22461c2..992760e 100644
--- a/suchwowx/static/js/main.js
+++ b/suchwowx/static/js/main.js
@@ -1,12 +1,3 @@
-async function getSignedData(publicAddress, jsonData) {
- const signedData = await window.ethereum.request({
- method: 'eth_signTypedData_v3',
- params: [publicAddress, JSON.stringify(jsonData)]
- });
- console.log(signedData);
- return signedData
-}
-
async function notif(s, t) {
new Noty({
type: t,
diff --git a/suchwowx/static/js/metamask.js b/suchwowx/static/js/metamask.js
index 78297f2..90b159d 100644
--- a/suchwowx/static/js/metamask.js
+++ b/suchwowx/static/js/metamask.js
@@ -2,6 +2,15 @@ window.addEventListener('DOMContentLoaded', () => {
onboardMetaMask();
})
+async function getSignedData(publicAddress, jsonData) {
+ const signedData = await window.ethereum.request({
+ method: 'eth_signTypedData_v3',
+ params: [publicAddress, JSON.stringify(jsonData)]
+ });
+ console.log(signedData);
+ return signedData
+}
+
async function onboardMetaMask(){
const onboarding = new MetaMaskOnboarding();
const onboardButton = document.getElementById('metamaskConnect');
diff --git a/suchwowx/templates/includes/footer.html b/suchwowx/templates/includes/footer.html
index 0a0425a..13d853f 100644
--- a/suchwowx/templates/includes/footer.html
+++ b/suchwowx/templates/includes/footer.html
@@ -1,5 +1,5 @@
diff --git a/suchwowx/templates/includes/web3.html b/suchwowx/templates/includes/web3.html
new file mode 100644
index 0000000..ad146c9
--- /dev/null
+++ b/suchwowx/templates/includes/web3.html
@@ -0,0 +1,15 @@
+
+
diff --git a/suchwowx/templates/meme.html b/suchwowx/templates/meme.html
index 3a0792d..feed5ce 100644
--- a/suchwowx/templates/meme.html
+++ b/suchwowx/templates/meme.html
@@ -27,7 +27,7 @@
{% else %}
{% endif %}
-
+
Title: {{ meme.title }}
Description: {{ meme.description }}
Poster Address: {{ meme.user.handle }}
@@ -39,7 +39,7 @@ {% endif %}Meme ID: {{ meme }}