File tree Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Expand file tree Collapse file tree 4 files changed +26
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : tg-notify
2
+ on : [push, pull_request]
3
+ jobs :
4
+ build :
5
+ runs-on : ubuntu-latest
6
+ steps :
7
+ - name : Update status
8
+ uses : appleboy/telegram-action@master
9
+ with :
10
+ to : ${{ secrets.TELEGRAM_TO }}
11
+ token : ${{ secrets.TELEGRAM_TOKEN }}
12
+ message : | # https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context
13
+ ${{ github.actor }} created commit:
14
+ Commit message: ${{ github.event.head_commit.message }}
15
+
16
+ Repository: ${{ github.repository }}
17
+
18
+ Branch: ${{ github.ref_name }}
19
+
20
+ See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
Original file line number Diff line number Diff line change @@ -161,3 +161,7 @@ cython_debug/
161
161
162
162
# Custom
163
163
* .seed
164
+
165
+ # Eclipse
166
+ .project
167
+ .pydevproject
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
5
5
[project ]
6
6
name = " sentinel_sdk"
7
- version = " 0.0.3 "
7
+ version = " 0.0.4 "
8
8
description = " A Sentinel SDK Written in Python"
9
9
authors = [
10
10
{ name = " NAST0R" },
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class NodeType(Enum):
22
22
@dataclass
23
23
class TxParams :
24
24
denom : str = "udvpn"
25
- fee_amount : int = 20000
25
+ fee_amount : int = 314159
26
26
gas : float = 0
27
27
gas_multiplier : float = 1.5
28
28
You can’t perform that action at this time.
0 commit comments