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 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()