FOT3GB4YWBKJHNS5IOY3BFFYTOXDR4FMODXDOSRQ44RO4K7QHCHQC
}
#gif_spiral2 {
border: none;
background-color: transparent;
background-image: url('https://philia-chat-pullz.b-cdn.net/spiral_014.gif');
background-size: cover; /* This will ensure the GIF covers the entire element */
background-repeat: no-repeat; /* This will prevent the GIF from repeating */
background-position: center; /* This will center the GIF within the element */
cursor: pointer;
border-radius: 50%; /* This will create a circular shape */
overflow: hidden; /* This will clip anything outside the circular shape */
width: 80px; /* Adjust to the desired width */
height: 80px; /* Adjust to the desired height */
margin: auto;
box-shadow: 30px 30px 35px rgba(202, 70, 235, 0.25);
.gap {
border-bottom: 2px solid #08f5e9;
width: 120px;
display: inline-block;
}
.bubble-button {
width: auto; /* Adjust as needed */
padding: 5px 10px; /* Padding to give the button some space */
color: #c108f9;
font-family: 'Courier New', Courier, monospace;
font-size: 14px;
border-radius: 25px; /* Adjust to get the desired rounded effect */
background-color: #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
border: 2px solid #ec95e1;
cursor: pointer; /* Change cursor to pointer on hover */
text-align: center; /* Centering text horizontally */
margin: 5px;
}
#zk_mess_cont {
width: 350px;
height: 375px;
display: block;
overflow-y: scroll;
overflow-x: hidden;
margin: auto;
}
.flex-container {
display: flex;
justify-content: center;
align-items: center;
/* Adjust height as needed */
}
// The data you want to include with your transaction
if (isValidUrl(text)) {
const divElement = document.createElement('div');
divElement.id = "gif_spiral2";
integratorElement.appendChild(divElement);
modal.appendChild(integratorElement);
integratorElement.onclick = () => {
window.open(`${text}`, '_blank');
};
} else {
integratorElement.textContent = text;
modal.appendChild(integratorElement);
}
console.log('Transaction hash:', tx.hash);
} catch (error) {
console.error('Failed to send txn:', error);
}
// console.log('Transaction hash:', tx.hash);
// showModal(tx.hash);
if(tx.hash) {
await sendWords(tx.hash, connectedAddress);
// showModal();
} else {
console.error('Transaction hash is not available');
}
} catch (error) {
console.error('Failed to send txn:', error);
}
}
async function sendWords(txnhash: string, connectedaddr: string): Promise<void> {
const serverUrl = 'https://checking-philiasocial.replit.app/getTransaction';
console.log(txnhash)
console.log(connectedaddr)
console.log(JSON.stringify({ txnhash: txnhash, connectedaddress: connectedaddr }))
try {
const response = await fetch(serverUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ txnhash: txnhash, connectedaddress: connectedaddr })
});
// Assume `response` is the Response object you get from calling fetch
let rendering = await response.text()
console.log(rendering)
showModal(rendering)
// Output: the link or error message from the server
} catch (error) {
console.error('Error:', error.message);
}
function wordCount(text: string): number {
return text.split(/\s+/).filter(function(word: string) {
return word.length > 0;
}).length;
gaps = [];
console.log(gaps);
for (let i = 1; i <= 7; i++) {
const gapText = $(`#gap${i}`).text().trim();
gaps.push(gapText);
}
// const text: string = $("#zkevm_message").text();
console.log(gaps.toString())
sending_post(gaps);
// Function to check the endpoint and enable or disable the button accordingly
// async function checkButtonState() {
// try {
// const response = await fetch('https://clozevalidator-philiasocial.replit.app/check-button-state');
// if (!response.ok) {
// throw new Error('Network response was not ok ' + response.statusText);
// }
// const data = await response.text();
// console.log(data); // Use .text() instead of .json()
// if (data.trim() === 'true') {
// $('#generate_algo').prop('disabled', true) // Disable button and unbind click event
// } else if (data.trim() === 'false') {
// $('#generate_algo').prop('disabled', false); // Keep button active if response is 'false'
// } else {
// console.warn('Unexpected response:', data);
// }
// } catch (error) {
// console.error('Error checking button state:', error);
// }
// }
// Bind the click event handler
$("#generate_algo").on("click", handleClick);
$("#generate_algo").click(function() {
const text: string = $("#zkevm_message").val() as string;;
if (wordCount(text) <= 500) {
sending_post(text);
} else {
showModal();
}
});
// function wordCount(str: string): number {
// return str.split(/\s+/).filter(Boolean).length; // Count non-empty words
// }
function closeModal(): void {
const modal: HTMLElement | null = document.getElementById('modal_seed_message');
if (modal) {
modal.style.display = 'none';
}
};
// function closeModal(): void {
// const modal: HTMLElement | null = document.getElementById('modal_seed_message');
// if (modal) {
// modal.style.display = 'none';
// }
// };
(window as any).getSuggestions = async function(gapId: string): Promise<void> {
const spanElement = document.getElementById(gapId) as HTMLSpanElement;
const words = spanElement.textContent?.split(' ') || [];
const query = words[words.length - 1];
if (query.length === 0) {
clearSuggestions();
return;
}
try {
const response = await fetch(`https://autofillgame-philiasocial.replit.app/get-words?query=${query}`);
const suggestions = await response.json();
displaySuggestions(suggestions, words.slice(0, -1).join(' '), gapId);
} catch (error) {
// Handle error
console.error(error);
}
}
for (const suggestion of suggestions) {
const listItem = document.createElement('button');
listItem.textContent = suggestion;
listItem.className = 'bubble-button'; // Apply the class to each button
listItem.onclick = function() {
const spanElement = document.getElementById(gapId) as HTMLSpanElement;
spanElement.textContent = `${precedingWords} ${suggestion} `;
clearSuggestions();
};
listElement.appendChild(listItem);
}
}
} catch (error) {
// Handle error
;
}
}
function clearSuggestions(): void {
const listElement = document.querySelector('.suggestions-list') as HTMLUListElement;
if (listElement) {
listElement.innerHTML = '';
}
}
}
},
"node_modules/@walletconnect/browser-utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/browser-utils/-/browser-utils-1.8.0.tgz",
"integrity": "sha512-Wcqqx+wjxIo9fv6eBUFHPsW1y/bGWWRboni5dfD8PtOmrihrEpOCmvRJe4rfl7xgJW8Ea9UqKEaq0bIRLHlK4A==",
"dependencies": {
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.2.0"
}
},
"node_modules/@walletconnect/browser-utils/node_modules/@walletconnect/safe-json": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"node_modules/@walletconnect/browser-utils/node_modules/@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==",
"deprecated": "WalletConnect's v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/"
},
"node_modules/@walletconnect/browser-utils/node_modules/@walletconnect/window-getters": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
"integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
},
"node_modules/@walletconnect/browser-utils/node_modules/@walletconnect/window-metadata": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
"integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
"dependencies": {
"@walletconnect/window-getters": "^1.0.0"
}
},
"node_modules/@walletconnect/browser-utils/node_modules/detect-browser": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz",
"integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA=="
},
"node_modules/@walletconnect/client": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/client/-/client-1.8.0.tgz",
"integrity": "sha512-svyBQ14NHx6Cs2j4TpkQaBI/2AF4+LXz64FojTjMtV4VMMhl81jSO1vNeg+yYhQzvjcGH/GpSwixjyCW0xFBOQ==",
"deprecated": "WalletConnect's v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/",
"dependencies": {
"@walletconnect/core": "^1.8.0",
"@walletconnect/iso-crypto": "^1.8.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
}
},
"node_modules/@walletconnect/client/node_modules/@walletconnect/core": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-1.8.0.tgz",
"integrity": "sha512-aFTHvEEbXcZ8XdWBw6rpQDte41Rxwnuk3SgTD8/iKGSRTni50gI9S3YEzMj05jozSiOBxQci4pJDMVhIUMtarw==",
"dependencies": {
"@walletconnect/socket-transport": "^1.8.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
"node_modules/@walletconnect/client/node_modules/@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==",
"deprecated": "WalletConnect's v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/"
},
"node_modules/@walletconnect/client/node_modules/@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"dependencies": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"node_modules/@walletconnect/client/node_modules/bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"node_modules/@walletconnect/client/node_modules/query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"dependencies": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
},
"node_modules/@walletconnect/iso-crypto": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/iso-crypto/-/iso-crypto-1.8.0.tgz",
"integrity": "sha512-pWy19KCyitpfXb70hA73r9FcvklS+FvO9QUIttp3c2mfW8frxgYeRXfxLRCIQTkaYueRKvdqPjbyhPLam508XQ==",
"dependencies": {
"@walletconnect/crypto": "^1.0.2",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
}
"node_modules/@walletconnect/iso-crypto/node_modules/@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==",
"deprecated": "WalletConnect's v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/"
},
"node_modules/@walletconnect/iso-crypto/node_modules/@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"dependencies": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"node_modules/@walletconnect/iso-crypto/node_modules/bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"node_modules/@walletconnect/iso-crypto/node_modules/query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"dependencies": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
}
},
"node_modules/@walletconnect/socket-transport": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/socket-transport/-/socket-transport-1.8.0.tgz",
"integrity": "sha512-5DyIyWrzHXTcVp0Vd93zJ5XMW61iDM6bcWT4p8DTRfFsOtW46JquruMhxOLeCOieM4D73kcr3U7WtyR4JUsGuQ==",
"dependencies": {
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0",
"ws": "7.5.3"
}
},
"node_modules/@walletconnect/socket-transport/node_modules/@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg==",
"deprecated": "WalletConnect's v1 SDKs are now deprecated. Please upgrade to a v2 SDK. For details see: https://docs.walletconnect.com/"
},
"node_modules/@walletconnect/socket-transport/node_modules/@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"dependencies": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"node_modules/@walletconnect/socket-transport/node_modules/bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"node_modules/@walletconnect/socket-transport/node_modules/query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"dependencies": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
},
"engines": {
"node": ">=6"
},
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/@walletconnect/socket-transport/node_modules/ws": {
"version": "7.5.3",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz",
"integrity": "sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==",
"engines": {
"node": ">=8.3.0"
},
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
}
},
"@walletconnect/browser-utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/browser-utils/-/browser-utils-1.8.0.tgz",
"integrity": "sha512-Wcqqx+wjxIo9fv6eBUFHPsW1y/bGWWRboni5dfD8PtOmrihrEpOCmvRJe4rfl7xgJW8Ea9UqKEaq0bIRLHlK4A==",
"requires": {
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.2.0"
},
"dependencies": {
"@walletconnect/safe-json": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz",
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"@walletconnect/window-getters": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.0.tgz",
"integrity": "sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA=="
},
"@walletconnect/window-metadata": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@walletconnect/window-metadata/-/window-metadata-1.0.0.tgz",
"integrity": "sha512-9eFvmJxIKCC3YWOL97SgRkKhlyGXkrHwamfechmqszbypFspaSk+t2jQXAEU7YClHF6Qjw5eYOmy1//zFi9/GA==",
"requires": {
"@walletconnect/window-getters": "^1.0.0"
}
},
"detect-browser": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/detect-browser/-/detect-browser-5.2.0.tgz",
"integrity": "sha512-tr7XntDAu50BVENgQfajMLzacmSe34D+qZc4zjnniz0ZVuw/TZcLcyxHQjYpJTM36sGEkZZlYLnIM1hH7alTMA=="
}
}
},
"@walletconnect/client": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/client/-/client-1.8.0.tgz",
"integrity": "sha512-svyBQ14NHx6Cs2j4TpkQaBI/2AF4+LXz64FojTjMtV4VMMhl81jSO1vNeg+yYhQzvjcGH/GpSwixjyCW0xFBOQ==",
"requires": {
"@walletconnect/core": "^1.8.0",
"@walletconnect/iso-crypto": "^1.8.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
},
"dependencies": {
"@walletconnect/core": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-1.8.0.tgz",
"integrity": "sha512-aFTHvEEbXcZ8XdWBw6rpQDte41Rxwnuk3SgTD8/iKGSRTni50gI9S3YEzMj05jozSiOBxQci4pJDMVhIUMtarw==",
"requires": {
"@walletconnect/socket-transport": "^1.8.0",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
}
},
"@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"requires": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"requires": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
}
}
}
}
},
"@walletconnect/iso-crypto": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/iso-crypto/-/iso-crypto-1.8.0.tgz",
"integrity": "sha512-pWy19KCyitpfXb70hA73r9FcvklS+FvO9QUIttp3c2mfW8frxgYeRXfxLRCIQTkaYueRKvdqPjbyhPLam508XQ==",
"requires": {
"@walletconnect/crypto": "^1.0.2",
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0"
},
"dependencies": {
"@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"requires": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"requires": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
}
"@walletconnect/socket-transport": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/socket-transport/-/socket-transport-1.8.0.tgz",
"integrity": "sha512-5DyIyWrzHXTcVp0Vd93zJ5XMW61iDM6bcWT4p8DTRfFsOtW46JquruMhxOLeCOieM4D73kcr3U7WtyR4JUsGuQ==",
"requires": {
"@walletconnect/types": "^1.8.0",
"@walletconnect/utils": "^1.8.0",
"ws": "7.5.3"
},
"dependencies": {
"@walletconnect/types": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz",
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"@walletconnect/utils": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-1.8.0.tgz",
"integrity": "sha512-zExzp8Mj1YiAIBfKNm5u622oNw44WOESzo6hj+Q3apSMIb0Jph9X3GDIdbZmvVZsNPxWDL7uodKgZcCInZv2vA==",
"requires": {
"@walletconnect/browser-utils": "^1.8.0",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/types": "^1.8.0",
"bn.js": "4.11.8",
"js-sha3": "0.8.0",
"query-string": "6.13.5"
}
},
"bn.js": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz",
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA=="
},
"query-string": {
"version": "6.13.5",
"resolved": "https://registry.npmjs.org/query-string/-/query-string-6.13.5.tgz",
"integrity": "sha512-svk3xg9qHR39P3JlHuD7g3nRnyay5mHbrPctEBDUxUkHRifPHXJDhBUycdCC0NBjXoDf44Gb+IsOZL1Uwn8M/Q==",
"requires": {
"decode-uri-component": "^0.2.0",
"split-on-first": "^1.0.0",
"strict-uri-encode": "^2.0.0"
}
},
"ws": {
"version": "7.5.3",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.3.tgz",
"integrity": "sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==",
"requires": {}
}
}
},
<h1 class="section">...Is It Not Within Our Dreams That Our <span class="highlight_seeds">Connectedness</span> Remains Unbounded?</h1>
<h1 class="section" id="title_riddle">Unlock that which strengthens our sense of belonging... the <span class="highlight_seeds">Connectedness</span></h1>
<h3 class="section">Unveil Your Wordsmithing on <span class="highlight_seeds">Seeds</span> by PhiliaSocial Collective</h3>
<h3 class="section">Within every individual lies a potential for connection. A seed in need of community, thoughful and careful in its evolution - a realm we term as <span class="highlight_seeds">Connectedness.</span> Embrace and enrich this gift of togetherness by embarking on a unique journey.</h3>
<p>Welcome to <span class="highlight_seeds">Seeds</span>, a cultivated initiative by PhiliaSocial Collective, where your eloquent prose may hold the key to unveiling mysteries. Rooted in the thematic ethos of Forever Awakening: Episode Zero, <span class="highlight_seeds">Seeds</span> beckons you to partake in a challenge, urging you to submit a narrative of under 500 words that potentially unlocks a new dimension to its existing narrative.</p>
</div>
<div class="section">
<p>Commence by downloading the <a href="https://metamask.io/" target="_blank">MetaMask</a> wallet. Within <span class="highlight_seeds">Seeds</span>, you'll find the option to activate the Polygon-zkevm network for your wallet. Once activated, navigate to <a href="https://global.transak.com/" target="_blank">Transak</a>; within the Transak widget, switch from ETH on the Ethereum Network to ETH on Polygon-zkevm, and follow through with the widget’s instructions. For a more personalized Ethereum public address, customize your public wallet address with an <a href="https://app.ens.domains/" target="_blank">ENS</a> domain.</p>
</div>
<div class="section">
<h3>Craft Your Narrative:</h3>
<p>Immerse yourself in the surreal ambiance of Forever Awakening: Episode Zero, allowing its primal essence to fuel your imaginative thought. Construct a micro-fiction piece that resonates with the thematic undercurrents of the film; herein lies the key to the enigmatic riddle. A submission fee of $7 worth of ETH is requisite. Ensure your MetaMask wallet is adequately funded before submitting your narrative along with the fee on the <span class="highlight_seeds">Seeds</span> platform.</p>
</div>
<div class="section">
<h3>Selection and Feature:</h3>
<p>Each submission, or "seed," will undergo a meticulous evaluation both personally and algorithmically. All seeds that adeptly unravel the riddle and reflect the creative spirit of the film will be showcased on the <span class="highlight_seeds">Seeds</span> platform as cherished literary collectibles. These collectibles will be securely housed within digital "pods", with ownership bestowed upon 78 discerning collectors. As collectors engage in purchase or exchange of their seeds, the authors will accrue royalties.</p>
<p>Commence by downloading the <a href="https://metamask.io/" target="_blank">MetaMask</a> wallet. Within <span class="highlight_seeds">Connectedness</span>, you'll find the option to activate the Polygon-zkevm network for your wallet. Once activated, navigate to <a href="https://global.transak.com/" target="_blank">Transak</a>; within the Transak widget, switch from ETH on the Ethereum network to ETH on Polygon-zkevm, and adhere to the instructions provided by the widget. Moreover, for a more personalized Ethereum public address, customize your public wallet address with an <a href="https://app.ens.domains/" target="_blank">ENS</a> domain.</p>
<h3>Engagement and Appreciation:</h3>
<p>We also extend the option for readers to tip the authors as a token of acknowledgment for their creative endeavor. Express your appreciation and engage in thoughtful dialogue with your favorite authors using the <a href="https://xmtp.chat/" target="_blank">XMTP Chat</a> feature.</p>
<h3>Hidden Information:</h3>
<p>Immerse yourself in the surreal ambiance of the Forever Awakening: Origins film, allowing its primal essence to fuel your imaginative thought; embrace the emotinal journey, allow it to be your guide as you dive into <span class="highlight_seeds">Connectedness</span>. The journey commences with a cloze exercize... inferring the solution garners more than rewards, it renders a platform for cooperative impact. To submit solutions for the cloze, a fee of approx. $7 worth of Polygon-zkevm ETH in addition to <a href="https://zkevm.polygonscan.com/chart/gasprice" target="_blank">Gas Prices</a> is requisite. Ensure your MetaMask wallet is adequately funded before submitting your responses along with the fee on <span class="highlight_seeds">Connectedness</span> platform.
For every instance that a Integrator solves a cloze, a new cloze emerges.</p>
<p><span class="highlight_seeds">Seeds</span> transcends being merely a submission platform; it serves as a portal for venturing into the therapeutic essence of artistic expression. Your micro-fiction, woven into the narrative fabric of Forever Awakening: Episode 0, contributes to a collective exploration of narrative as a therapeutic venture, engendering a rich tapestry of creative resonance.</p>
<h3>Be Rewarded:</h3>
<p>As Integrators, solving clozes earns you Credentials, granting access to a philiaSocial Chat space. Herein, unveil the gateway to exclusive philiaSocial <a href="https://bafybeiemtyn7c7wp36crtvbpy74t6ng3nkbe2mg3eomnrylakne4k46xya.ipfs.w3s.link/philiaSocial_world2.png" target="_blank">rare fashion</a> collections, Encrypted Lovers, crafted in collaboration with embroidery artist <a href="https://www.instagram.com/kathrin_marchenko/" target="_blank">@Kathrin_Marchenko</a>. Additionally, with every cloze resolved, we pledge a donation of $10,000 in ETH to <a href="https://www.actionagainsthunger.org/" target="_blank">Action Against Hunger</a>. The more challenges conquered, the stronger our <span class="highlight_seeds">Connectedness</span> grows in making a significant impact.
<div class="line-break1"></div>
Embark on this voyage of discovery, solve challenges, and fortify the essence of community, all while contributing to a noble cause.
</p>
<div class="line-break2"></div>
<textarea id="zkevm_message" class="neumorphic-input" placeholder="Message: Max 500" rows="3"></textarea>
</div>
<div class="line-break1"></div>
<!-- <textarea id="zkevm_message" class="neumorphic-input" placeholder="Message: Max 500" rows="3"></textarea> -->
<div class="flex-container">
<div id="zk_mess_cont">
<div id="zkevm_message" class="neumorphic-input">
The Harmonic Hues by chat.philia.social
<div class="line-break1"></div>
Once in a realm of thoughts, where ideas bloomed and wilted with each fleeting <span class="gap" id="gap1" contenteditable="true" oninput="getSuggestions('gap1')"></span>, there existed a society known as the Harmonic Hues. They were souls of varied shades and tones, each representing a unique blend of virtues and traits from the extensive spectrum of human existence. Every shade was a person, and every person was a shade, living in a rhythm of empathy and understanding.
<div class="line-break1"></div>
Their life was a melody, each note contributing to the perfect harmony of existence. They lived by a <span class="gap" id="gap2" contenteditable="true" oninput="getSuggestions('gap2')"></span>, a common purpose that bound them, an unwavering commitment to foster kindness, trust, and openness amongst themselves. They were more than just a community; they were a symphony, each individual a unique note, yet together they created a masterpiece of camaraderie and mutual respect.
<div class="line-break1"></div>
In this world of hues, every conversation was an opportunity for growth, every interaction a chance for enlightenment. They believed in the essence of authentic feedback, in the gentle nurturing of one another’s abilities and the noble act of self-improvement. They reveled in the joy of shared experiences, every <span class="gap" id="gap3" contenteditable="true" oninput="getSuggestions('gap3')"></span> and tear, a testament to their unity and bond.
<div class="line-break1"></div>
The Harmonic Hues were the epitome of resilience and adaptability, their <span class="gap" id="gap4" contenteditable="true" oninput="getSuggestions('gap4')"></span> fortified by the solid foundation of trust and understanding. Every challenge they faced, they faced together with undeterred perseverance, their shared vision a beacon of hope amidst the storm of life.
<div class="line-break1"></div>
As they danced through the journey of existence, they discovered the beauty of vulnerability, the courage in transparency, and the strength in acceptance. The values they shared were their guiding <span class="gap" id="gap5" contenteditable="true" oninput="getSuggestions('gap5')"></span>, illuminating the path of altruism and companionship.
<div class="line-break1"></div>
And as they lived, they painted the canvas of life with shades of love, respect, and brotherhood. Their existence was a melody of positivity, a <span class="gap" id="gap6" contenteditable="true" oninput="getSuggestions('gap6')"></span> of humanity that echoed through the realms of thoughts, leaving behind a legacy of benevolence, a tale of a society bound by the cords of goodwill, empathy, and mutual respect.
<div class="line-break1"></div>
And though the dance of life carried them to different corners of existence, the harmony they created remained, an immortal melody of love, earnestness, and togetherness, resonating through the endless spectrum of human emotions and virtues, a gentle reminder of the power of unity and the <span class="gap" id="gap7" contenteditable="true" oninput="getSuggestions('gap7')"></span> of harmonious coexistence.
</div>
<div class="line-break1"></div>
<div class="suggestions-list"></div>
</div>
</div>