rddl-network / rddl-2-plmnt-service

GNU Affero General Public License v3.0
1 stars 0 forks source link

add client lib #38

Closed LaurentMontBlanc closed 6 months ago

LaurentMontBlanc commented 6 months ago

The rddl-2-plmnt-service is and can be used for a multitude of token schemes. We need to add a client lib for easy maintenance of other services.

type IR2PClient interface {
  GetReceiveAddress(plmntAddress string) (ReceiveAddressResponse)
}

type R2PClient struct {
  host string
}