You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contracts/account/UserAccount.sol
+104-1Lines changed: 104 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,15 @@ pragma solidity >=0.5.0 <0.6.0;
3
3
import"./UserAccountInterface.sol";
4
4
import"./AccountGasAbstract.sol";
5
5
import"../cryptography/ECDSA.sol";
6
+
import"../common/LibBytes.sol";
6
7
7
8
/**
8
9
* @author Ricardo Guilherme Schmidt (Status Research & Development GmbH)
9
10
* @notice Defines an account which can be setup by a owner address (multisig contract), recovered by a recover address (a sort of secret multisig contract), and execute actions from a list of addresses (authorized contracts, extensions, etc)
0 commit comments