Skip to content

Commit 2014ea8

Browse files
committed
Bump default fee wrt Prop 52. Bump version
1 parent 8b2ca05 commit 2014ea8

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

.github/workflows/tg-notify.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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}}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,3 +161,7 @@ cython_debug/
161161

162162
# Custom
163163
*.seed
164+
165+
# Eclipse
166+
.project
167+
.pydevproject

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "sentinel_sdk"
7-
version = "0.0.3"
7+
version = "0.0.4"
88
description = "A Sentinel SDK Written in Python"
99
authors = [
1010
{ name = "NAST0R" },

src/sentinel_sdk/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class NodeType(Enum):
2222
@dataclass
2323
class TxParams:
2424
denom: str = "udvpn"
25-
fee_amount: int = 20000
25+
fee_amount: int = 314159
2626
gas: float = 0
2727
gas_multiplier: float = 1.5
2828

0 commit comments

Comments
 (0)