mirror of
https://github.com/autistic-symposium/web3-starter-sol.git
synced 2025-07-24 15:35:29 -04:00
Clean up
This commit is contained in:
parent
c2d0866191
commit
db37d209ab
58 changed files with 4663 additions and 1043 deletions
14
advanced_knowledge/wallets/send_tx_multisig.sol
Normal file
14
advanced_knowledge/wallets/send_tx_multisig.sol
Normal file
|
@ -0,0 +1,14 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.8.17;
|
||||
|
||||
contract TestContract {
|
||||
uint public i;
|
||||
|
||||
function callMe(uint j) public {
|
||||
i += j;
|
||||
}
|
||||
|
||||
function getData() public pure returns (bytes memory) {
|
||||
return abi.encodeWithSignature("callMe(uint256)", 123);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue