Search Apps Documentation Source Content File Folder Download Copy Actions Download

testdeploy.gno

0.19 Kb ยท 13 lines
 1package testdeploy
 2
 3import "chain/runtime"
 4
 5var admin address
 6
 7func init() {
 8	admin = runtime.OriginCaller()
 9}
10
11func Render(path string) string {
12	return "# Test DAO\nAdmin: " + string(admin)
13}