-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: added some Telegram tests * chore: added /help tests * chore: added /aliases tests * chore: forgot to commit file * chore: moved templates manager to a separate module * chore: added /status tests * chore: added /alias tests * chore: added internal error test * chore: added rest telegram tests * chore: added reporters test * chore: removed unused utils * chore: added tests for telegram templates manager * chore: added more stub tests * chore: added one more test
- Loading branch information
1 parent
5f1cd79
commit b0c76e7
Showing
49 changed files
with
2,573 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,6 @@ linters: | |
- funlen | ||
- nlreturn | ||
- wrapcheck | ||
- gomnd | ||
- cyclop | ||
- err113 | ||
- exhaustruct | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[subscription] | ||
[subscription.chain] | ||
wallet = "test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<strong>ChainName</strong> | ||
- test -> <code>wallet</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<a href="https://github.com/QuokkaStake/cosmos-transactions-bot">cosmos-transactions-bot</a> v1.2.3 | ||
|
||
This bot can track any transactions on any Cosmos-compatible network | ||
and report them on different reporters (currently, only Telegram is supported). | ||
|
||
Created by <a href="https://quokkastake.io">🐹 Quokka Stake</a> with ❤️. | ||
|
||
The bot can understand the following commands: | ||
- /help - display this message | ||
- /status - see nodes status | ||
- /config - see app config | ||
- /alias [chain] [address] [alias] - set an alias for wallet | ||
- /aliases - see wallets aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Saved alias: alias -> <code>address</code> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<strong>Nodes status</strong> | ||
|
||
<strong>Chain chain1:</strong> | ||
🔴 <code>https://example1.com</code> -> not active | ||
🔴 <code>https://example2.com</code> -> not active |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"ok": true, | ||
"result": { | ||
"id": 123, | ||
"is_bot": true, | ||
"first_name": "TestBot", | ||
"username": "TestBot", | ||
"can_join_groups": true, | ||
"can_read_all_group_messages": false, | ||
"supports_inline_queries": false, | ||
"can_connect_to_business": false, | ||
"has_main_web_app": false | ||
} | ||
} |
Oops, something went wrong.