github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/docs/assets/how-to-guides/porting-solidity-to-gno/porting-3.gno (about)

     1  var (
     2  	receiver        = std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5")
     3  	auctionEndBlock = std.GetHeight() + uint(300) // in blocks
     4  	highestBidder   std.Address
     5  	highestBid      = uint(0)
     6  	pendingReturns  avl.Tree
     7  	ended           = false
     8  )