Search Apps Documentation Source Content File Folder Download Copy Actions Download

instance.gno

0.21 Kb ยท 13 lines
 1package v1
 2
 3import (
 4	"gno.land/r/gnoswap/gov/staker"
 5)
 6
 7type govStakerV1 struct {
 8	store staker.IGovStakerStore
 9}
10
11func NewGovStakerV1(store staker.IGovStakerStore) staker.IGovStaker {
12	return &govStakerV1{ store }
13}