diff --git a/CODEOWNERS b/CODEOWNERS index f6969bac1..354110763 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1 +1 @@ -* @ailisp @frol +* @ailisp @frol @Tguntenaar @elliotBraem 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);