Smart Contract

ContractVersion

A.a49cc0ee46c54bfb.ContractVersion

Deployed

1d ago
Feb 26, 2026, 09:43:52 PM UTC

Dependents

0 imports
1//Interface to enforce version on a contract
2//This interface will be used by migration tools to manage versions for updates.
3//If an existing 'old' contract can't implement this interface by updating,
4//then add a getVersion method to that contract without the interface
5//
6pub contract interface ContractVersion {
7    pub fun getVersion():String
8}