Smart Contract

AuthChecker

A.f5b0eb433389ac3f.AuthChecker

Deployed

12h ago
Feb 28, 2026, 04:34:50 AM UTC

Dependents

0 imports
1access(all) contract AuthChecker {
2
3  pub event AddressNonceEvent(nonceString: String)
4
5  pub fun checkLogin(_ nonceString: String): Void {
6    pre {
7      nonceString.length != 0: "Empty string"
8    }
9
10    emit AddressNonceEvent(nonceString: nonceString)   
11  }
12}
13