Documentation Index
Fetch the complete documentation index at: https://thrackle.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Git Source
Inherits:
IInputErrors, IZeroAddressError
Author:
@ShaneDuncan602, @oscarsernarosero, @TJ-Everett
This contract serves as a storage server for user accounts
Uses IDataModule, which has basic ownable functionality. It will get created, and therefore owned, by the app manager
Functions
addAccount
Add the account. Restricted to owner.
function addAccount(address _account) external;
Parameters
| Name | Type | Description |
|---|
_account | address | user address |
removeAccount
Remove the account. Restricted to owner.
function removeAccount(address _account) external;
Parameters
| Name | Type | Description |
|---|
_account | address | user address |
isUserAccount
Checks to see if the account exists
function isUserAccount(address _address) external view returns (bool);
Parameters
| Name | Type | Description |
|---|
_address | address | user address |
Returns
| Name | Type | Description |
|---|
<none> | bool | exists true if exists, false if not exists |