Pure package detail
avl
gno.land/p/samcrew/avl
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/avl
- Block
- 98865
- Deployed (UTC)
- Transaction
- pEV5R4TBM0Eh4djQvIR2+iEvQZ9N4nyAbQKneKbDWCw=
Latest RPC state
Source
// PKGPATH: gno.land/r/test
package test
import (
"gno.land/p/samcrew/avl"
)
var tree avl.Tree
func init() {
tree.Set("key0", "value0")
tree.Set("key1", "value1")
}
func main(cur realm) {
var updated bool
updated = tree.Set("key2", "value2")
println(updated, tree.Size())
}
// Output:
// false 3
The verified vm/qfuncs operation accepts realm paths only.
Pure packages expose source files but do not have Realm Render.