mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* Renaming * Add server-side support for onboarding * add onboard --amount command * support client side onboarding * Drop dummy tx builder * Drop faucet * Fixes * fix public key encoding * fix schnorr pub key check in validation * fix server/README to accomodate onboarding --------- Co-authored-by: Louis <louis@vulpem.com> Co-authored-by: João Bordalo <bordalix@users.noreply.github.com>
11 lines
198 B
Go
11 lines
198 B
Go
package tree
|
|
|
|
import "github.com/vulpemventures/go-elements/psetv2"
|
|
|
|
type TreeFactory func(outpoint psetv2.InputArgs) (CongestionTree, error)
|
|
|
|
type Receiver struct {
|
|
Pubkey string
|
|
Amount uint64
|
|
}
|