for coded
diff --git a/src/events:TODO/stickerUpdate.ts b/src/events:TODO/stickerUpdate.ts
new file mode 100644
index 0000000..33e4cdf
--- /dev/null
+++ b/src/events:TODO/stickerUpdate.ts
@@ -0,0 +1,27 @@
+const {addLog} = require('../scripts/addLogs');
+const JsonDiff = require('json-diff');
+module.exports = {
+    name:'stickerUpdate',
+    once:false,
+    async execute(oldSticker, newSticker) {
+        let os = {
+            id: sticker.id,
+            description: sticker.description,
+            name: sticker.name,
+            type: sticker.type,
+            tags: sticker.tags,
+        }
+
+        let ns = {
+            id: sticker.id,
+            description: sticker.description,
+            name: sticker.name,
+            type: sticker.type,
+            tags: sticker.tags,
+        }
+
+        let data = JsonDiff.diff(os, ns, {full: true});
+
+        addLog(role.guild.id, data);
+    }
+}
\ No newline at end of file