mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* ark credits * rename "ecash" --> "ark credit" * rework note_test.go * NewFromString * create several notes * note repo: rename "push" to "add" * RegisterInputsForNextRoundRequest: move "notes" to field #3 * use uint64 as note ID * rename to voucher * add nostr notification * nostr notification test and fixes * bump badger to 4.3 * allow npub to be registered * rename poolTxID * add default relays * Update server/internal/config/config.go Co-authored-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> * fix RedeemVouchers test * notification = voucher * WASM wrappers * fix arkd voucher cmd * test_utils.go ignore gosec rule G101 * fix permissions * rename ALL to notes * add URI prefix * note.go : fix signature encoding * fix decode note.Data * Update server/internal/infrastructure/notifier/nostr/nostr.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * Update pkg/client-sdk/wasm/browser/wrappers.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * Update server/internal/infrastructure/notifier/nostr/nostr.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> * rework note and entity db + sqlite implementations * NOTIFICATION_PREFIX -> NOTE_URI_PREFIX * validate NOTE_URI_PREFIX * Update defaults to convenant-less mainnet (#2) * config: defaults to convenant-less tx builder * Drop env var for blockchain scanner --------- Co-authored-by: altafan <18440657+altafan@users.noreply.github.com> * add // before URI prefix * add URI prefix in admin CreateNote * Fixes * rework nonces encoding (#4) * rework nonces encoding * add a check in Musig2Nonce decode function * musig2_test: increase number of signers to 20 * musig2.json: add a test case with a 35 leaves tree * GetEventStream REST rework * fix round phases time intervals * [SDK] Use server-side streams in rest client * Fix history * make the URI optional * Updates * Fix settled txs in history * fix e2e test * go work sync in sdk unit test * fix signMessage in btc and liquid sdk wallets --------- Co-authored-by: Marco Argentieri <3596602+tiero@users.noreply.github.com> Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
136 lines
2.8 KiB
Go
136 lines
2.8 KiB
Go
package e2e
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os/exec"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/nbd-wtf/go-nostr"
|
|
"github.com/nbd-wtf/go-nostr/nip19"
|
|
)
|
|
|
|
const (
|
|
Password = "password"
|
|
// #nosec G101
|
|
NostrTestingSecretKey = "07959d1d2bc6507403449c556585d463a9ca4374eb0ec07b3929088ce6c34a7e"
|
|
)
|
|
|
|
type ArkBalance struct {
|
|
Offchain struct {
|
|
Total int `json:"total"`
|
|
} `json:"offchain_balance"`
|
|
Onchain struct {
|
|
Spendable int `json:"spendable_amount"`
|
|
Locked []struct {
|
|
Amount int `json:"amount"`
|
|
SpendableAt string `json:"spendable_at"`
|
|
} `json:"locked_amount"`
|
|
} `json:"onchain_balance"`
|
|
}
|
|
|
|
type ArkReceive struct {
|
|
Offchain string `json:"offchain_address"`
|
|
Boarding string `json:"boarding_address"`
|
|
}
|
|
|
|
func GenerateBlock() error {
|
|
if _, err := RunCommand("nigiri", "rpc", "--liquid", "generatetoaddress", "1", "el1qqwk722tghgkgmh3r2ph4d2apwj0dy9xnzlenzklx8jg3z299fpaw56trre9gpk6wmw0u4qycajqeva3t7lzp7wnacvwxha59r"); err != nil {
|
|
return err
|
|
}
|
|
if _, err := RunCommand("nigiri", "rpc", "generatetoaddress", "1", "bcrt1qe8eelqalnch946nzhefd5ajhgl2afjw5aegc59"); err != nil {
|
|
return err
|
|
}
|
|
|
|
time.Sleep(6 * time.Second)
|
|
return nil
|
|
}
|
|
|
|
func RunDockerExec(container string, arg ...string) (string, error) {
|
|
args := append([]string{"exec", "-t", container}, arg...)
|
|
return RunCommand("docker", args...)
|
|
}
|
|
|
|
func RunCommand(name string, arg ...string) (string, error) {
|
|
errb := new(strings.Builder)
|
|
cmd := newCommand(name, arg...)
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if err := cmd.Start(); err != nil {
|
|
return "", err
|
|
}
|
|
output := new(strings.Builder)
|
|
errorb := new(strings.Builder)
|
|
|
|
var wg sync.WaitGroup
|
|
wg.Add(2)
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
if _, err := io.Copy(output, stdout); err != nil {
|
|
fmt.Fprintf(errb, "error reading stdout: %s", err)
|
|
}
|
|
}()
|
|
|
|
go func() {
|
|
defer wg.Done()
|
|
if _, err := io.Copy(errorb, stderr); err != nil {
|
|
fmt.Fprintf(errb, "error reading stderr: %s", err)
|
|
}
|
|
}()
|
|
|
|
wg.Wait()
|
|
if err := cmd.Wait(); err != nil {
|
|
if errMsg := errorb.String(); len(errMsg) > 0 {
|
|
return "", fmt.Errorf("%s", errMsg)
|
|
}
|
|
|
|
if outMsg := output.String(); len(outMsg) > 0 {
|
|
return "", fmt.Errorf("%s", outMsg)
|
|
}
|
|
|
|
return "", err
|
|
}
|
|
|
|
if errMsg := errb.String(); len(errMsg) > 0 {
|
|
return "", fmt.Errorf("%s", errMsg)
|
|
}
|
|
|
|
return strings.Trim(output.String(), "\n"), nil
|
|
}
|
|
|
|
func newCommand(name string, arg ...string) *exec.Cmd {
|
|
cmd := exec.Command(name, arg...)
|
|
return cmd
|
|
}
|
|
|
|
// nostr
|
|
// use nak utils https://github.com/fiatjaf/nak
|
|
|
|
func GetNostrKeys() (secretKey, publicKey string, npub string, err error) {
|
|
secretKey = NostrTestingSecretKey
|
|
|
|
publicKey, err = nostr.GetPublicKey(secretKey)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
npub, err = nip19.EncodePublicKey(publicKey)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|