Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

DA-587 Update tezos docs (FFI section) #1456

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/reference/firefly_interface_format.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ The type field here is the JSON input type when making a request to FireFly to i

### Schema details

<a name="schema-details"></a>
The details field is quite important in some cases. Because the `details` field is passed to the blockchain plugin, it is used to encapsulate blockchain specific type information about a particular field. Additionally, because each blockchain plugin can add rules to the list of schema requirements above, a blockchain plugin can enforce that certain fields are always present within the `details` field.

For example, the Ethereum plugin always needs to know what Solidity type the field is. It also defines several optional fields. A full Ethereum details field may look like:
Expand Down
129 changes: 129 additions & 0 deletions docs/tutorials/custom_contracts/tezos.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,135 @@ Here we can see that our new contract address is `KT1ED4gj2xZnp8318yxa5NpvyvW15p
As we know from the previous section - smart contracts on the Tezos blockchain are using the domain-specific, stack-based programming language called [Michelson](https://tezos.gitlab.io/active/michelson.html). It is a key component of the Tezos platform and plays a fundamental role in defining the behavior of smart contracts and facilitating their execution.
This language is very efficient but also a bit tricky and challenging for learning, so in order to teach FireFly how to interact with the smart contract, we will be using [FireFly Interface (FFI)](../../reference/firefly_interface_format.md) to define the contract inteface which later will be encoded to Michelson.

### Schema details

The `details` field is used to encapsulate blockchain specific type information about a specific field. (More details at [schema details](../../reference/firefly_interface_format.md#schema-details))

#### Supported Tezos types

- nat
- integer
- string
- address
- bytes
- boolean
- variant
- list
- struct

#### Internal type vs Internal schema

<i>internalType</i> is a field which is used to describe tezos primitive types

``` json
{
"details": {
"type": "address",
"internalType": "address"
}
}
```

<i>internalSchema</i> in turn is used to describe more complex tezos types as <b>list</b>, <b>struct</b> or <b>variant</b>

<i>Struct example:</i>

``` json
{
"details": {
"type": "schema",
"internalSchema": {
"type": "struct",
"args": [
{
"name": "metadata",
"type": "bytes"
},
{
"name": "token_id",
"type": "nat"
}
]
}
}
}
```

<i>List example:</i>

``` json
{
"details": {
"type": "schema",
"internalSchema": {
"type": "struct",
"args": [
{
"name": "metadata",
"type": "bytes"
},
{
"name": "token_id",
"type": "nat"
}
]
}
}
}
```

<i>Variant example:</i>

``` json
{
"details": {
"type": "schema",
"internalSchema": {
"type": "variant",
"variants": [
"add_operator",
"remove_operator"
],
"args": [
{
"type": "struct",
"args": [
{
"name": "owner",
"type": "address"
},
{
"name": "operator",
"type": "address"
},
{
"name": "token_id",
"type": "nat"
}
]
}
]
}
}
}
```

#### Options

<i>Option</i> type is used to indicate a value as optional (see more at [smartpy options](https://smartpy.io/manual/syntax/options-and-variants#options))

``` json
{
"details": {
"type": "string",
"internalType": "string",
"kind": "option"
}
}
```

### FA2 example

The following FFI sample demonstrates the specification for the widely used FA2 (analogue of ERC721 for EVM) smart contract:

```json
Expand Down