github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/tm2/pkg/crypto/ed25519/package.go (about)

     1  package ed25519
     2  
     3  import (
     4  	"github.com/gnolang/gno/tm2/pkg/amino"
     5  )
     6  
     7  var Package = amino.RegisterPackage(amino.NewPackage(
     8  	"github.com/gnolang/gno/tm2/pkg/crypto/ed25519",
     9  	"tm",
    10  	amino.GetCallersDirname(),
    11  ).WithDependencies().WithTypes(
    12  	PubKeyEd25519{}, "PubKeyEd25519",
    13  	PrivKeyEd25519{}, "PrivKeyEd25519",
    14  ))