From 7a14ce7d61c2446ea5acabb62ff5a941802b59c1 Mon Sep 17 00:00:00 2001 From: 0xOZ Date: Sat, 7 Oct 2023 18:53:05 +0300 Subject: [PATCH 1/2] fixing missing curly brackets at the end of main function --- morpheus.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/morpheus.js b/morpheus.js index d3e6684..bc17630 100644 --- a/morpheus.js +++ b/morpheus.js @@ -539,4 +539,5 @@ async function node() { } } - main() +} +main() From 533d6f30a39989fa0bbb85f77ab6e7eb13937219 Mon Sep 17 00:00:00 2001 From: 0xOZ Date: Sat, 7 Oct 2023 19:04:35 +0300 Subject: [PATCH 2/2] removing .env and adding .env_example from staging --- .env | 7 ------- .env_example | 7 +++++++ .gitignore | 4 ++++ 3 files changed, 11 insertions(+), 7 deletions(-) delete mode 100644 .env create mode 100644 .env_example diff --git a/.env b/.env deleted file mode 100644 index 88a515a..0000000 --- a/.env +++ /dev/null @@ -1,7 +0,0 @@ -RPC=https://sepolia.gateway.tenderly.co -OOFAddress= -PK= -OPENAI_API_KEY= -MINFEE=0 -WEBHOOK= -WEBHOOKMSG= \ No newline at end of file diff --git a/.env_example b/.env_example new file mode 100644 index 0000000..314e65a --- /dev/null +++ b/.env_example @@ -0,0 +1,7 @@ +RPC= +OOFAddress= +PK= +MINFEE=10000000000000000 +OPENAI_API_KEY= +WEBHOOK= +WEBHOOKMSG= diff --git a/.gitignore b/.gitignore index ebbf460..72f916b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ +# nodejs files +yarn.lock node_modules/ +# env secrets and variables env_vars +.env