Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cdcf807
wip pepe messaging
nicktaras Jul 25, 2024
bebee9a
feat: 🎸 erc-20 chat service implementation
nicktaras Sep 2, 2024
bf492ca
feat: 🎸 PEPE TS solution (core functionality in place)
nicktaras Sep 5, 2024
5aeee75
chore: 🤖 corrected the paths for dev and staging
nicktaras Sep 5, 2024
656ed97
feat: 🎸 added generically named erc-20-chat example.
nicktaras Sep 5, 2024
718186c
chore: 🤖 corrected name for generic messaging version of pepe.
nicktaras Sep 6, 2024
a950e11
chore: 🤖 corrected name for generic messaging version of pepe.
nicktaras Sep 6, 2024
3e5af46
feat: 🎸 styling update frens view
nicktaras Sep 6, 2024
c8172f4
feat: 🎸 PEPE UX enhancements and improvements.
nicktaras Sep 9, 2024
7bbbef0
feat: 🎸 update duration of error notification shown and applied fixed…
nicktaras Sep 11, 2024
9fad0f4
feat: 🎸 ux improvements to hide some details when the user balance is…
nicktaras Sep 11, 2024
18ba28f
feat: 🎸 improvements made to error handling, copy and trigger points.
nicktaras Sep 11, 2024
d9514e6
fix: 🐛 attempt to fix race cond found with some wallets.
nicktaras Sep 11, 2024
f4d5481
fix: 🐛 revert change added for challenge.
nicktaras Sep 12, 2024
28ed4d8
fix: 🐛 sending token address fix, to auto display msgs after sending.
nicktaras Sep 12, 2024
0ca5b31
feat: 🎸 removed auto scroll interval and added ux solution for user t…
nicktaras Sep 12, 2024
ae4aa69
feat: 🎸 added logic to notify in message popup of new messages
nicktaras Sep 12, 2024
772a299
feat: 🎸 clean up ui
nicktaras Sep 12, 2024
93852e5
feat: 🎸 add success message when user invite sent
nicktaras Sep 12, 2024
f547e95
fix: 🐛 opacity of scroll to recent btn and updating of messages menu …
nicktaras Sep 12, 2024
4cea234
feat: 🎸 added encrypted to status of p2p messages when encrypted
nicktaras Sep 13, 2024
3db652f
feat: 🎸 updated the messaging for when a non-token owner has accessed…
nicktaras Sep 16, 2024
8422198
feat: 🎸 added instructions and copy changes
nicktaras Sep 17, 2024
19a4b62
feat: 🎸 added new styles for selected and unread msg state
nicktaras Sep 17, 2024
eb99f00
feat: 🎸 update to copy
nicktaras Sep 17, 2024
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
13 changes: 13 additions & 0 deletions erc-20-messaging/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
30 changes: 30 additions & 0 deletions erc-20-messaging/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
root: true,
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:svelte/recommended',
'prettier'
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
sourceType: 'module',
ecmaVersion: 2020,
extraFileExtensions: ['.svelte']
},
env: {
browser: true,
es2017: true,
node: true
},
overrides: [
{
files: ['*.svelte'],
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
}
}
]
};
12 changes: 12 additions & 0 deletions erc-20-messaging/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
/dist
/out
13 changes: 13 additions & 0 deletions erc-20-messaging/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.DS_Store
node_modules
/build
/.svelte-kit
/package
.env
.env.*
!.env.example

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
package-lock.json
yarn.lock
9 changes: 9 additions & 0 deletions erc-20-messaging/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": ["prettier-plugin-svelte"],
"pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
}
5 changes: 5 additions & 0 deletions erc-20-messaging/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<script type="module" src="./src/main.ts"></script>

Loading