在可替代令牌中:
pub struct FungibleToken {
/// sha256(AccountID) -> Account details.
pub accounts: UnorderedMap<Vec<u8>, Account>,
/// Total supply of the all token.
pub total_supply: Balance,
}
https://github.com/near-examples/FT/blob/master/contracts/rust/src/lib.rs
帐户和总供应量标记为公开,不能只是任何人都能够更改帐户和总供应量
区块链是否只允许访问功能?但我能够更改测试中的变量。