We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature Request
1. Add Final Balance Field to Transactions Table:
Purpose: To track the wallet balance immediately after each transaction.
Implementation:
Add a new column to the Transactions table named final_balance.
Ensure the field is automatically populated with the wallet balance after the transaction is applied.
Validate the calculation by referencing the wallets table's balance and the transaction amount.
2. Add Checksum Field for Transaction Validation:
Purpose: To enhance the integrity and validation of transaction data.
Introduce a checksum field in the Transactions table.
The checksum should be a unique identifier based on transaction details (e.g., using a hash of transaction ID, timestamp, and amount).
Validate the checksum during transaction processing to detect any data tampering.
3. Add Frozen Balance Field to Wallets Table:
Purpose: To track the portion of the wallet balance that is currently frozen and unavailable for transactions.
Add a new column to the Wallets table named frozen_balance.
Update business logic to ensure that transactions respect the frozen balance (e.g., only the available balance can be used for transactions).
Include functionality to freeze or unfreeze specific amounts as required by business needs.
The text was updated successfully, but these errors were encountered:
rez1dent3
No branches or pull requests
Feature Request
1. Add Final Balance Field to Transactions Table:
Purpose: To track the wallet balance immediately after each transaction.
Implementation:
Add a new column to the Transactions table named final_balance.
Ensure the field is automatically populated with the wallet balance after the transaction is applied.
Validate the calculation by referencing the wallets table's balance and the transaction amount.
2. Add Checksum Field for Transaction Validation:
Purpose: To enhance the integrity and validation of transaction data.
Implementation:
Introduce a checksum field in the Transactions table.
The checksum should be a unique identifier based on transaction details (e.g., using a hash of transaction ID, timestamp, and amount).
Validate the checksum during transaction processing to detect any data tampering.
3. Add Frozen Balance Field to Wallets Table:
Purpose: To track the portion of the wallet balance that is currently frozen and unavailable for transactions.
Implementation:
Add a new column to the Wallets table named frozen_balance.
Update business logic to ensure that transactions respect the frozen balance (e.g., only the available balance can be used for transactions).
Include functionality to freeze or unfreeze specific amounts as required by business needs.
The text was updated successfully, but these errors were encountered: