Skip to content

Commit

Permalink
Bump default fee wrt Prop 52. Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
freQniK committed May 22, 2024
1 parent 8b2ca05 commit 2014ea8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tg-notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: tg-notify
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update status
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: | #https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context
${{ github.actor }} created commit:
Commit message: ${{ github.event.head_commit.message }}
Repository: ${{ github.repository }}
Branch: ${{ github.ref_name }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,7 @@ cython_debug/

# Custom
*.seed

# Eclipse
.project
.pydevproject
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "sentinel_sdk"
version = "0.0.3"
version = "0.0.4"
description = "A Sentinel SDK Written in Python"
authors = [
{ name = "NAST0R" },
Expand Down
2 changes: 1 addition & 1 deletion src/sentinel_sdk/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class NodeType(Enum):
@dataclass
class TxParams:
denom: str = "udvpn"
fee_amount: int = 20000
fee_amount: int = 314159
gas: float = 0
gas_multiplier: float = 1.5

Expand Down

0 comments on commit 2014ea8

Please sign in to comment.