Pure package detail
uint256
gno.land/p/samcrew/deps/onbloc/uint256
Indexed deployment identity with independently loaded latest RPC source. Functions and Render are realm-only RPC capabilities.
Indexed deployment
Identity
- Package path
- gno.land/p/samcrew/deps/onbloc/uint256
- Block
- 98882
- Deployed (UTC)
- Transaction
- GLBlSSXAnrRAX3C5qtFwTcv8uIlxbjzHDmh13OfDm3Y=
Latest RPC state
Source
package uint256
func checkNumberS(input string) error {
const fn = "UnmarshalText"
l := len(input)
if l == 0 {
return errEmptyString(fn, input)
}
if l < 2 || input[0] != '0' ||
(input[1] != 'x' && input[1] != 'X') {
return errMissingPrefix(fn, input)
}
if l == 2 {
return errEmptyNumber(fn, input)
}
if len(input) > 3 && input[2] == '0' {
return errLeadingZero(fn, input)
}
return nil
}
The verified vm/qfuncs operation accepts realm paths only.
Pure packages expose source files but do not have Realm Render.