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 node *avl.Node
func init() {
node = avl.NewNode("key0", "value0")
node, _ = node.Set("key1", "value1")
}
func main(cur realm) {
var updated bool
node, updated = node.Set("key2", "value2")
// println(node, updated)
println(updated, node.Size())
}
// Output:
// false 3
The verified vm/qfuncs operation accepts realm paths only.
Pure packages expose source files but do not have Realm Render.