forked from monero-project/monero
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Merge Dev Branch into Master for New Hardfork-18 #136
Merged
Conversation
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
offline wallet creation fixed
macos static-build fix
Wallet-api refresh locks
Wallet2-api stake
Openssl functions are replaced with libsodium
Update-encoding
Prepare registration update
burn process by amount/transaction_id
Bump version V5.0.0
Refactor variable names for improved clarity
Added Height for HF-18 in testnet
Resolved Inaccuracies in Small Contributor Unlock Days Display
Establish Mainnet HF-18 Height
…from Integrated Address
Verify presence of value for pubkey_ed25519 in handle_ping()
Implement BNS Confirmation Prompt with Conversion to Primary Address from Integrated Address
sanada08
approved these changes
Dec 18, 2023
sanada08
added a commit
that referenced
this pull request
Dec 18, 2023
Merge pull request #136 from Beldex-Coin/dev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
BNS:
COIN-BURN:
PREPARE-REGISTRATION:
DECOMMISSION-CREDIT:
CONTRIBUTOR-UNLOCK:
OTHERS:
bns_buy_mapping:
usage: bns_buy_mapping [index=[,,...]] [] [years=1y|2y|5y|10y] [owner=] [backup_owner=] [bchat_id=] [belnet_id=] [address=]
curl -X POST http://127.0.0.1:19999/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"bns_buy_mapping","params":{"years":"5y","name":"toretto.bdx","value_bchat":"bdb37ba20b46b5576012eec7547f70eb532276085bb04b6152354de5b187b29807"}}' -H 'Content-Type: application/json'
bns_update_mapping:
usage: bns_update_mapping [index=[,,...]] [] [owner=] [backup_owner=] [bchat_id=] [belnet_id=] [address=] [signature=<hex_signature>]
curl -X POST http://127.0.0.1:19999/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"bns_update_mapping","params":{"name":"toretto.bdx","value_bchat" : "bdff403a579c24edd0b973f9f00211ab3574ec083b2fd97b8b87de0e413e969942","value_belnet":"i85hpmcge4huukrxp8xnobkh7eodhsuy7dy8yphq9zafhcqeeago.bdx"}}' -H 'Content-Type: application/json'
bns_renew_mapping:
usage: bns_renew_mapping [index=[,,...]] [] [years=1y|2y|5y|10y]
curl -X POST http://127.0.0.1:19999/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"bns_renew_mapping","params":{"years":"10y","name":"toretto.bdx"}}' -H 'Content-Type: application/json'
For the CLI : The burn usage is
coin_burn [index=[,,...]] [] <burn=amount | txid>
For the wallet-rpc: The burn usage is
curl -X POST http://127.0.0.1:19999/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"coin_burn","params":{"tx_id" : "9166a47710872ad6cd89f7030ecc882ada2c9920c1d0b587f978ec2e92645fee"}}' -H 'Content-Type: application/json'
curl -X POST http://127.0.0.1:19999/json_rpc -d '{"jsonrpc":"2.0","id":"0","method":"coin_burn","params":{"amount":1000000000}}' -H 'Content-Type: application/json'