Skip to main content
Version: 0.42

Access control

Access control allows making certain parts of the program accessible/visible and making other parts inaccessible/invisible.

In Flow and Cadence, there are two types of access control:

  1. Access control on objects in account storage using capability security.

    Within Flow, a caller is not able to access an object unless it owns the object or has a specific reference to that object. This means that nothing is truly public by default. Other accounts can not read or write the objects in an account unless the owner of the account has granted them access by providing references to the objects.

  2. Access control within contracts and objects using pub and access keywords.

    For the explanations of the following keywords, we assume that the defining type is either a contract, where capability security doesn't apply, or that the caller would have valid access to the object governed by capability security.

The high-level reference-based security (point 1 above) will be covered in a later section.

Top-level declarations (variables, constants, functions, structures, resources, interfaces) and fields (in structures, and resources) are always only able to be written to and mutated (modified, such as by indexed assignment or methods like append) in the scope where it is defined (self).

There are four levels of access control defined in the code that specify where a declaration can be accessed or called.

  • Public or access(all) means the declaration is accessible/visible in all scopes.

    This includes the current scope, inner scopes, and the outer scopes.

    For example, a public field in a type can be accessed using the access syntax on an instance of the type in an outer scope. This does not allow the declaration to be publicly writable though.

    An element is made publicly accessible / by any code by using the pub or access(all) keywords.

  • access(account) means the declaration is only accessible/visible in the scope of the entire account where it is defined. This means that other contracts in the account are able to access it,

    An element is made accessible by code in the same account (e.g. other contracts) by using the access(account) keyword.

  • access(contract) means the declaration is only accessible/visible in the scope of the contract that defined it. This means that other types and functions that are defined in the same contract can access it, but not other contracts in the same account.

    An element is made accessible by code in the same contract by using the access(contract) keyword.

  • Private or access(self) means the declaration is only accessible/visible in the current and inner scopes.

    For example, an access(self) field can only be accessed by functions of the type is part of, not by code in an outer scope.

    An element is made accessible by code in the same containing type by using the access(self) keyword.

Access level must be specified for each declaration

The (set) suffix can be used to make variables also publicly writable and mutable.

To summarize the behavior for variable declarations, constant declarations, and fields:

Declaration kindAccess modifierRead scopeWrite scopeMutate scope
letpriv / access(self)Current and innerNoneCurrent and inner
letaccess(contract)Current, inner, and containing contractNoneCurrent and inner
letaccess(account)Current, inner, and other contracts in same accountNoneCurrent and inner
letpub,access(all)AllNoneCurrent and inner
varaccess(self)Current and innerCurrent and innerCurrent and inner
varaccess(contract)Current, inner, and containing contractCurrent and innerCurrent and inner
varaccess(account)Current, inner, and other contracts in same accountCurrent and innerCurrent and inner
varpub / access(all)AllCurrent and innerCurrent and inner
varpub(set)AllAllAll

To summarize the behavior for functions:

Access modifierAccess scope
priv / access(self)Current and inner
access(contract)Current, inner, and containing contract
access(account)Current, inner, and other contracts in same account
pub / access(all)All

Declarations of structures, resources, events, and contracts can only be public. However, even though the declarations/types are publicly visible, resources can only be created from inside the contract they are declared in.


_10
// Declare a private constant, inaccessible/invisible in outer scope.
_10
//
_10
access(self) let a = 1
_10
_10
// Declare a public constant, accessible/visible in all scopes.
_10
//
_10
pub let b = 2


_104
// Declare a public struct, accessible/visible in all scopes.
_104
//
_104
pub struct SomeStruct {
_104
_104
// Declare a private constant field which is only readable
_104
// in the current and inner scopes.
_104
//
_104
access(self) let a: Int
_104
_104
// Declare a public constant field which is readable in all scopes.
_104
//
_104
pub let b: Int
_104
_104
// Declare a private variable field which is only readable
_104
// and writable in the current and inner scopes.
_104
//
_104
access(self) var c: Int
_104
_104
// Declare a public variable field which is not settable,
_104
// so it is only writable in the current and inner scopes,
_104
// and readable in all scopes.
_104
//
_104
pub var d: Int
_104
_104
// Declare a public variable field which is settable,
_104
// so it is readable and writable in all scopes.
_104
//
_104
pub(set) var e: Int
_104
_104
// Arrays and dictionaries declared without (set) cannot be
_104
// mutated in external scopes
_104
pub let arr: [Int]
_104
_104
// The initializer is omitted for brevity.
_104
_104
// Declare a private function which is only callable
_104
// in the current and inner scopes.
_104
//
_104
access(self) fun privateTest() {
_104
// ...
_104
}
_104
_104
// Declare a public function which is callable in all scopes.
_104
//
_104
pub fun privateTest() {
_104
// ...
_104
}
_104
_104
// The initializer is omitted for brevity.
_104
_104
}
_104
_104
let some = SomeStruct()
_104
_104
// Invalid: cannot read private constant field in outer scope.
_104
//
_104
some.a
_104
_104
// Invalid: cannot set private constant field in outer scope.
_104
//
_104
some.a = 1
_104
_104
// Valid: can read public constant field in outer scope.
_104
//
_104
some.b
_104
_104
// Invalid: cannot set public constant field in outer scope.
_104
//
_104
some.b = 2
_104
_104
// Invalid: cannot read private variable field in outer scope.
_104
//
_104
some.c
_104
_104
// Invalid: cannot set private variable field in outer scope.
_104
//
_104
some.c = 3
_104
_104
// Valid: can read public variable field in outer scope.
_104
//
_104
some.d
_104
_104
// Invalid: cannot set public variable field in outer scope.
_104
//
_104
some.d = 4
_104
_104
// Valid: can read publicly settable variable field in outer scope.
_104
//
_104
some.e
_104
_104
// Valid: can set publicly settable variable field in outer scope.
_104
//
_104
some.e = 5
_104
_104
// Invalid: cannot mutate a public field in outer scope.
_104
//
_104
some.f.append(0)
_104
_104
// Invalid: cannot mutate a public field in outer scope.
_104
//
_104
some.f[3] = 1
_104
_104
// Valid: can call non-mutating methods on a public field in outer scope
_104
some.f.contains(0)