Actors and contracts
Actors are blocks of code that run on the Filecoin virtual machine. Smart contracts are small, self-executing blocks of code that run on Ethereum. Both actors and smart-contracts are used within the FVM.
On this page
THIS SECTION IS UNDER DEVELOPMENT
We’re still working on this section. Feel free to dive into the docs, but keep in mind that things will likely change pretty often.
Actors
For those familiar with the Ethereum virtual machine (EVM), actors work similarly to smart contracts. There are two types of actors:
- Built-in actors: code that the Filecoin network team has written deployed directly into the Filecoin network. An example of a built-in actor is the multi-sig actor, a system that requires multiple private keys to perform some action.
- User actors: code that any developer can write and deploy to the Filecoin network using the FVM.
Unless otherwise specified, the term actor refers to a user actor.
Smart contracts
Smart contracts are small, self-executing blocks of code that run on Ethereum. The term smart contract is also used in other blockchains to describe custom code that can run on their networks. In the Filecoin network, the term smart contract is a synonym for user actor. You may see the term smart contract used in tandem with actor, but there is no difference between the two; this documentation mainly uses smart contract to ease learning for Ethereum developers.
Deeper dive
If you want to learn more about how actors work, check out Zenground’s on Filecoin Actors and how they work: