Skip to content

Commit

Permalink
chore: Added docs for artifact files (#2362)
Browse files Browse the repository at this point in the history
Resolves #2190
  • Loading branch information
sirasistant authored Sep 18, 2023
1 parent 5b2cf75 commit 6d3ba3f
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 1 deletion.
107 changes: 107 additions & 0 deletions docs/docs/dev_docs/contracts/artifacts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
# Contract artifacts

After compiling a contract you'll get a Contract Artifact file, that contains the data needed to interact with a specific contract, including its name, functions that can be executed, and the interface and code of those functions. Since private functions are not published in the Aztec network, you'll need this artifact file to be able to call private functions of contracts.

The artifact file can be used with `aztec.js` to instantiate contract objects and interact with them.

## Contract Artifact Structure

The structure of a contract artifact is as follows:
```json
{
"name": "CardGame",
"functions": [
{
"name": "constructor",
"functionType": "secret",
"isInternal": false,
"parameters": [],
"returnTypes": [],
"bytecode": "...",
"verificationKey": "..."
},
{
"name": "on_card_played",
"functionType": "open",
"isInternal": true,
"parameters": [
{
"name": "game",
"type": {
"kind": "integer",
"sign": "unsigned",
"width": 32
},
"visibility": "private"
},
{
"name": "player",
"type": {
"kind": "field"
},
"visibility": "private"
},
{
"name": "card_as_field",
"type": {
"kind": "field"
},
"visibility": "private"
}
],
"returnTypes": [
...
],
"bytecode": "...",
"verificationKey": "..."
},
...
]
}

```

### `name`
It is a simple string that matches the name that the contract developer used for this contract in noir. It's used for logs and errors.

### `functions`
A contract is a collection of several functions that can be called. Each function has the following properties:

#### `function.name`
A simple string that matches the name that the contract developer used for this function in noir. For logging and debugging purposes.

#### `function.functionType`
The function type can have one of the following values:

- Secret: The function is ran and proved locally by the clients, and its bytecode not published to the network.
- Open: The function is ran and proved by the sequencer, and its bytecode is published to the network.
- Unconstrained: The function is ran locally by the clients to generate digested information useful for the user. It's not meant to be transacted against.

#### `function.isInternal`
The is internal property is a boolean that indicates whether the function is internal to the contract and cannot be called from outside.

#### `function.parameters`
Each function can have multiple parameters that are arguments to execute the function. Parameters have a name, and type (like integers, strings, or complex types like arrays and structures).

#### `function.returnTypes`
The return types property defines the types of values that the function returns after execution.

#### `function.bytecode`
The bytecode is a string representing the compiled ACIR of the function, ready for execution on the network.

#### `function.verificationKey`
The verification key is an optional property that contains the verification key of the function. This key is used to verify the proof of the function execution.

### `debug` (Optional)
Although not significant for non-developer users, it is worth mentioning that there is a debug section in the contract artifact which helps contract developers to debug and test their contracts. This section mainly contains debug symbols and file maps that link back to the original source code.

## Understanding Parameter and Return Types
To make the most of the functions, it's essential to understand the types of parameters and return values. Here are some common types you might encounter:

- `field`: A basic type representing a field element in the finite field of the curve used in the Aztec protocol.
- `boolean`: A simple true/false value.
- `integer`: Represents whole numbers. It has attributes defining its sign (positive or negative) and width (the number of bits representing the integer).
- `array`: Represents a collection of elements, all of the same type. It has attributes defining its length and the type of elements it holds.
- `string`: Represents a sequence of characters with a specified length.
- `struct`: A complex type representing a structure with various fields, each having a specific type and name.

2 changes: 1 addition & 1 deletion docs/docs/dev_docs/contracts/compiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Then run the `compile` command with the path to your [contract project folder](.
aztec-cli compile ./path/to/my_aztec_contract_project
```

This will output a JSON artifact for each contract in the project to a `target` folder containing their [ABI](./abi.md), which you can use for deploying or interacting with your contracts.
This will output a JSON [artifact](./artifacts.md) for each contract in the project to a `target` folder containing their [ABI](./abi.md), which you can use for deploying or interacting with your contracts.

### Typescript Interfaces

Expand Down
1 change: 1 addition & 0 deletions docs/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ const sidebars = {
"dev_docs/contracts/constrain",
"dev_docs/contracts/compiling",
"dev_docs/contracts/deploying",
"dev_docs/contracts/artifacts",
"dev_docs/contracts/abi",
{
label: "Portals",
Expand Down

0 comments on commit 6d3ba3f

Please sign in to comment.