From 4865c46b55857c8b80f9c2dc0cb55f3303f1c29f Mon Sep 17 00:00:00 2001 From: Megha-Dev-19 <100185149+Megha-Dev-19@users.noreply.github.com> Date: Wed, 13 Dec 2023 21:33:18 +0530 Subject: [PATCH 1/2] fix: Fixed deposit error for grant_write_permissions call to social.near (#563) --- src/devhub/entity/post/Post.jsx | 1 + src/devhub/entity/post/PostEditor.jsx | 1 + src/devhub/page/create.jsx | 1 + 3 files changed, 3 insertions(+) diff --git a/src/devhub/entity/post/Post.jsx b/src/devhub/entity/post/Post.jsx index 3ff2e0615..b2c34661e 100644 --- a/src/devhub/entity/post/Post.jsx +++ b/src/devhub/entity/post/Post.jsx @@ -296,6 +296,7 @@ const onLike = () => { keys: [context.accountId + "/index/notify"], }, gas: Big(10).pow(14), + deposit: Big(10).pow(22), }); } diff --git a/src/devhub/entity/post/PostEditor.jsx b/src/devhub/entity/post/PostEditor.jsx index 06d539f4e..c03168076 100644 --- a/src/devhub/entity/post/PostEditor.jsx +++ b/src/devhub/entity/post/PostEditor.jsx @@ -226,6 +226,7 @@ const onSubmit = () => { keys: [context.accountId + "/index/notify"], }, gas: Big(10).pow(14), + deposit: Big(10).pow(22), }); } Near.call(txn); diff --git a/src/devhub/page/create.jsx b/src/devhub/page/create.jsx index 63a12251d..70a1c62eb 100644 --- a/src/devhub/page/create.jsx +++ b/src/devhub/page/create.jsx @@ -191,6 +191,7 @@ const onSubmit = () => { keys: [context.accountId + "/index/notify"], }, gas: Big(10).pow(14), + deposit: Big(10).pow(22), }); } Near.call(txn); From 705132c1211b87e6b0085428e59142d56df56d0b Mon Sep 17 00:00:00 2001 From: T guntenaar Date: Sat, 16 Dec 2023 14:20:21 +0100 Subject: [PATCH 2/2] add elliot and thomas to CODEOWNERS (#570) --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index f6969bac1..354110763 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1 @@ -* @ailisp @frol +* @ailisp @frol @Tguntenaar @elliotBraem