commit 47bd29c607d62db418530f4de722bc11ca5d8710 Author: mleku Date: Wed May 28 19:36:53 2025 +0100 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4457245 --- /dev/null +++ b/.gitignore @@ -0,0 +1,88 @@ +# Allowlisting gitignore template for GO projects prevents us +# from adding various unwanted local files, such as generated +# files, developer configurations or IDE-specific files etc. +# +# Recommended: Go.AllowList.gitignore + +# Ignore everything +* + +# Especially these +.vscode +.vscode/ +.vscode/** +**/.vscode +**/.vscode/** +.idea +.idea/ +.idea/** +**/.idea +**/.idea/ +**/.idea/** +node_modules +node_modules/ +node_modules/** +**/node_modules +**/node_modules/ +**/node_modules/** +/test* +# and others +/go.work.sum +/secp256k1/ + +# But not these files... +!/.gitignore +!*.go +!go.sum +!go.mod +!*.md +!LICENSE +!*.sh +!Makefile +!*.json +!*.pdf +!*.csv +!*.py +!*.mediawiki +!*.did +!*.rs +!*.toml +!*.file +!.gitkeep +!pkg/eth/** +!*.h +!*.c +!*.proto +!bundleData +!*.item +!*.bin +!*.yml +!*.yaml +!*.tmpl +!*.s +!*.asm +!.gitmodules +!*.txt +!*.sum +!version +!*.service +!*.benc +!*.png +!*.adoc +!*.js +!*.bash +!PATENTS +!*.css +!*.ts +!*.html +!Dockerfile +!*.lock +!*.nix +!license +!readme + +# ...even if they are in subdirectories +!*/ +/blocklist.json +/gui/gui/main.wasm +/gui/gui/index.html diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fdddb29 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..931df31 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module x.realy.lol + +go 1.24.3 diff --git a/main.go b/main.go new file mode 100644 index 0000000..7905807 --- /dev/null +++ b/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +} diff --git a/readme.adoc b/readme.adoc new file mode 100644 index 0000000..a78b17d --- /dev/null +++ b/readme.adoc @@ -0,0 +1,18 @@ += ⚠️ x.realy.lol ⚠️ +:toc: +:note-caption: note 👉 +:warning-caption: ⚠️ + +image:https://img.shields.io/badge/godoc-documentation-blue.svg[Documentation,link=https://pkg.go.dev/x.realy.lol] + +zap me: ⚡mlekudev@getalby.com + +image:./realy.png[realy.png] + +== about + +building out of the relayer codebase made things better than using khatru but it was still so awful by the end of it... too complicated... + +so this is an attempt to uncomplicate everything + +WARNING: work in progress, beware. may cause unknown genetic mutations, cancer, and heart disease. potentially, all of the above! \ No newline at end of file diff --git a/realy.png b/realy.png new file mode 100644 index 0000000..285b9d2 Binary files /dev/null and b/realy.png differ