Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.13.2 #83

Merged
merged 42 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fa0e3e3
daemon: get_hard_forks rpc method
Slixe Jul 10, 2024
60c0d29
common: serde on hardfork struct
Slixe Jul 10, 2024
322ea22
common: replace tostring trait to display
Slixe Jul 11, 2024
7d49ccf
daemon: add block version and pow algorithm in status command
Slixe Jul 11, 2024
23c2893
daemon: fix wrong chain order for V2
Slixe Jul 11, 2024
78e8fcc
daemon: fix chain sync
Slixe Jul 11, 2024
8080d83
common: add varuint serde test
Slixe Jul 11, 2024
f3f71a8
all: set version to 1.13.2
Slixe Jul 11, 2024
364d646
common: add bytes_sent/bytes_recv for peer entry
Slixe Jul 11, 2024
6db4dcd
daemon: add bytes_rcv/bytes_sent for peer entry
Slixe Jul 11, 2024
3e7ae13
wallet: use IndexMap for XSWD to keep correct order of permissions
Slixe Jul 11, 2024
b5910bc
daemon: fix wrong block version checked for chain sync
Slixe Jul 12, 2024
e7a6216
common: delete from context, delete all commands
Slixe Jul 14, 2024
2079901
wallet: logout command
Slixe Jul 14, 2024
ea61aa8
wallet: register default commands on logout
Slixe Jul 14, 2024
6c48fec
daemon: improve verify_chain cli command
Slixe Jul 15, 2024
1442c2b
daemon: check for nonce version in verify chain command
Slixe Jul 15, 2024
556b871
wallet: add clear_tx_cache rpc method
Slixe Jul 15, 2024
d69df3c
misc: add clear_tx_cache rpc method in API.md
Slixe Jul 15, 2024
d209043
wallet: fix burn cli command to be as transfer command
Slixe Jul 15, 2024
484ba0f
wallet: add more debug logs
Slixe Jul 15, 2024
866f931
wallet: add more debug logs
Slixe Jul 15, 2024
5c10209
wallet: track assets changed for burn tx
Slixe Jul 15, 2024
42bfc65
daemon: launch option --skip-block-template-txs-verification
Slixe Jul 15, 2024
aa82732
daemon: no allocation for txs verify if empty
Slixe Jul 15, 2024
c947c0e
wallet: add more debug logs to track tx issue
Slixe Jul 16, 2024
8d70a49
common: add fee & nonce in burn type
Slixe Jul 16, 2024
e973c77
wallet: add fee & nonce in burn type
Slixe Jul 16, 2024
7206a3e
daemon: don't show unexecuted txs in account history
Slixe Jul 16, 2024
7f08ecb
wallet: show real error for tx creation
Slixe Jul 17, 2024
13c3cff
miner: added api to miner for stats
Epsiloong Jul 19, 2024
b2059b1
miner: improve stats api
Slixe Jul 19, 2024
12a02b2
Merge pull request #82 from xelis-project/miner-api
Slixe Jul 19, 2024
a1dfe42
all: update dependencies
Slixe Jul 20, 2024
afbe9be
common: set max block size in config, use aggregated messages for ws …
Slixe Jul 20, 2024
11ee29c
daemon: use common import for max block size
Slixe Jul 20, 2024
e3db18a
common: improve text error msg
Slixe Jul 21, 2024
f9c7973
common: improve send error msg for json rpc
Slixe Jul 21, 2024
1a5aded
daemon: fix chain validator error
Slixe Jul 21, 2024
567e12f
daemon: add debug logs, use correct function for tips from provider
Slixe Jul 21, 2024
76a0e60
include miner_reward and dev_reward in get_info api
g45t345rt Jul 22, 2024
6b6b196
daemon: no unwrap for block rewards
Slixe Jul 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,8 @@ No parameters
"result": {
"average_block_time": 16494,
"block_reward": 145979248,
"miner_reward": 1313813232,
"dev_reward": 14597924,
"block_time_target": 15000,
"circulating_supply": 3155962164200,
"difficulty": "62283705000",
Expand Down Expand Up @@ -8156,6 +8158,32 @@ When it's not provided, Fee Builder is set by default to multiplier 1 to pay wha
}
```

#### Clear TX Cache
In case of a failure while broadcasting a TX from this wallet by yourself, you can erase the TX cache stored in the wallet.

##### Method `clear_tx_cache`

##### Parameters
No parameters

##### Request
```json
{
"jsonrpc": "2.0",
"method": "clear_tx_cache",
"id": 1
}
```

##### Response
```json
{
"id": 1,
"jsonrpc": "2.0",
"result": true
}
```

#### List Transactions
Search transactions based on various parameters.
By default it accepts every TXs.
Expand Down
Loading
Loading