# Smart Contract Specifications

TheAngel smart contracts are:

* ERC-compliant
* Audited
* Non-upgradable (immutable issuance rules)
* Multi-sig protected
* Compliance-gated

***

### Token Functions (Simplified)

#### Core Functions

```solidity
mint()
burn()
transfer()
balanceOf()
ownerOf()
getISIN()
```

***

### Compliance Layer Modifiers

```solidity
onlyKYCVerified()
onlyDuringLiquidityWindow()
onlyAdmin()
onlyMultiSig()
```

These prevent:

* Unauthorised transfers
* Secondary trading outside regulatory windows
* Trading by unverified investors

***

### Token Storage Structure

```solidity
mapping(address => uint256) balances;
mapping(address => bool) KYCVerified;
mapping(address => bool) transferLocked;
uint256 totalSupply;
string public ISIN;
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.theangel.app/api-and-technical-documentation/smart-contract-specifications.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
