-
Notifications
You must be signed in to change notification settings - Fork 19
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
Feat 3.5 implementation #196
Conversation
common transaction
add sc event with data field
update and create public endpoints that will call create_transaction_common
Coverage SummaryTotals
FilesExpand
|
Contract comparison - from b88edf9 to 1ca0e7d
|
multicontract added to remove onlyowner endpoint
blackbox-esdt-safe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Solve clippy issues. Also sign commits.
c34a91b
to
b36d232
Compare
…ntation # Conflicts: # esdt-safe/sc-config.toml # multi-transfer-esdt/src/lib.rs # multi-transfer-esdt/tests/multi_transfer_blackbox_test.rs
#[endpoint(setTotalBalances)] | ||
#[label("test-only")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After the merge of feat/v3 setTotalBalances & setMintBalances can be deleted 👍
#[indexed] amount: BigUint, | ||
#[indexed] fee: BigUint, | ||
#[indexed] to: ManagedBuffer, | ||
#[indexed] from: ManagedBuffer, | ||
#[indexed] data: ManagedBuffer, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#[indexed] amount: BigUint, | |
#[indexed] fee: BigUint, | |
#[indexed] to: ManagedBuffer, | |
#[indexed] from: ManagedBuffer, | |
#[indexed] data: ManagedBuffer, | |
amount: BigUint, | |
fee: BigUint, | |
to: ManagedBuffer, | |
from: ManagedBuffer, | |
data: ManagedBuffer, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can do the same for create_transaction_event
No description provided.