Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Gravity-Tech/gravity-node-data-extractor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ErgoGravity/gravity-node-data-extractor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: pre-release
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 17 commits
  • 10 files changed
  • 2 contributors

Commits on Jun 23, 2021

  1. erg2erg

    Aseyed authored and vorujack committed Jun 23, 2021
    Copy the full SHA
    06ef26d View commit details
  2. Merge branch 'erg2erg' into 'dev'

    erg2erg
    
    See merge request gateway/gravity-node-data-extractor!1
    vorujack committed Jun 23, 2021
    Copy the full SHA
    3b6572b View commit details

Commits on Jul 19, 2021

  1. Test

    Aseyed authored and vorujack committed Jul 19, 2021
    Copy the full SHA
    aa5083f View commit details
  2. Merge branch 'test' into 'dev'

    Test
    
    See merge request gateway/gravity-node-data-extractor!2
    vorujack committed Jul 19, 2021
    Copy the full SHA
    d65f8f6 View commit details

Commits on Aug 14, 2021

  1. merge

    Aseyed committed Aug 14, 2021
    Copy the full SHA
    ab34c23 View commit details

Commits on Aug 16, 2021

  1. addresses modified

    Aseyed committed Aug 16, 2021
    Copy the full SHA
    445bbd1 View commit details

Commits on Sep 9, 2021

  1. Copy the full SHA
    1998fcf View commit details

Commits on Sep 18, 2021

  1. bugfix data serialization

    Aseyed committed Sep 18, 2021
    Copy the full SHA
    d01a04a View commit details

Commits on Sep 22, 2021

  1. bugfix fix parse data

    Aseyed committed Sep 22, 2021
    Copy the full SHA
    cba321d View commit details
  2. data parsing bugfix

    Aseyed committed Sep 22, 2021
    Copy the full SHA
    cfc7387 View commit details

Commits on Sep 26, 2021

  1. bugfix in reverse mode

    Aseyed committed Sep 26, 2021
    Copy the full SHA
    3c14e69 View commit details

Commits on Oct 3, 2021

  1. big endian bug

    Aseyed committed Oct 3, 2021
    Copy the full SHA
    b37b3e5 View commit details
  2. remove comment codes

    Aseyed committed Oct 3, 2021
    Copy the full SHA
    d53b4da View commit details
  3. edit some routes

    Aseyed committed Oct 3, 2021
    Copy the full SHA
    fd38928 View commit details
  4. edit some routes

    Aseyed committed Oct 3, 2021
    Copy the full SHA
    80ac8c6 View commit details

Commits on Oct 5, 2021

  1. merge with main

    Aseyed committed Oct 5, 2021
    Copy the full SHA
    df55345 View commit details

Commits on Oct 6, 2021

  1. update readme

    Aseyed committed Oct 6, 2021
    Copy the full SHA
    b1a1e9f View commit details
Showing with 628 additions and 132 deletions.
  1. +6 −0 README.md
  2. +1 −1 config/config.go
  3. BIN data-extractor
  4. +21 −11 extractors/susy/bridge/common.go
  5. +205 −0 extractors/susy/bridge/ergo.go
  6. +123 −0 extractors/susy/bridge/ergo_test.go
  7. +6 −1 extractors/susy/gateway.go
  8. +7 −3 go.mod
  9. +2 −116 go.sum
  10. +257 −0 helpers/ergo.go
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -56,3 +56,9 @@ go build -o data-extractor
```
go test tests/*.go -v
```

### 2. Ergo extractors

Ergo extractors are under development.
At this moment, we developed erg-erg extractors to test gravity on our network.
We add other extractors when all tests passed.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ const (
)

const (
MountedVolume = "/etc/extractor"
MountedVolume = "."
)

type MainConfig struct {
Binary file added data-extractor
Binary file not shown.
32 changes: 21 additions & 11 deletions extractors/susy/bridge/common.go
Original file line number Diff line number Diff line change
@@ -6,15 +6,16 @@ import (
"fmt"

"github.com/Gravity-Tech/gravity-node-data-extractor/v2/extractors"
"github.com/Gravity-Tech/gravity-node-data-extractor/v2/helpers"
"github.com/ethereum/go-ethereum/common"
"github.com/mr-tron/base58"
wavescrypto "github.com/wavesplatform/go-lib-crypto"

"math/big"

solclient "github.com/portto/solana-go-sdk/client"
solcommon "github.com/portto/solana-go-sdk/common"
soltoken "github.com/portto/solana-go-sdk/tokenprog"

"math/big"
)

/**
@@ -68,21 +69,20 @@ type Action int
type RequestType int

const (
NewStatus Status = 1
CompletedStatus Status = 2
NewStatus Status = 1
CompletedStatus Status = 2

ApproveAction Action = 1
UnlockAction Action = 2
MintAction Action = 1
ChangeStatusAction Action = 2

IssueType RequestType = 1
BurnType RequestType = 2
LockType RequestType = 1
UnlockType RequestType = 2
IssueType RequestType = 1
BurnType RequestType = 2
LockType RequestType = 1
UnlockType RequestType = 2
)


func ValidateEthereumBasedAddress(address string) bool {
return common.IsHexAddress(address)
}
@@ -124,7 +124,7 @@ func ValidateSolanaTokenAccountOwnershipByTokenProgram(client *solclient.Client,
if tokenAccountState.Mint.ToBase58() != tokenMint {
return false, fmt.Errorf("token mint mismatch - got: %v; expected: %v", tokenAccountState.Mint.ToBase58(), tokenMint)
}

fmt.Printf("tokenAccount: %+v \n", tokenAccount)

return true, nil
@@ -136,4 +136,14 @@ func ValidateSolanaAddress(address string) bool {
return false
}
return true
}
}

func ValidateErgoAddress(address string, proxyUrl string) bool {
isValid, err := helpers.ValidateErgoAddress(address, proxyUrl)
if err != nil {
fmt.Printf("error: %v", err)
return false
}
return isValid
}

205 changes: 205 additions & 0 deletions extractors/susy/bridge/ergo.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
package bridge

import (
"context"
"encoding/base64"
"encoding/binary"
"fmt"
"github.com/Gravity-Tech/gravity-node-data-extractor/v2/extractors"
"github.com/Gravity-Tech/gravity-node-data-extractor/v2/helpers"
"math/big"
"strconv"
)

// TODO: Implement general queue iterator (Waves & ETH)

type ErgoRequestsState struct {
requests map[string]interface{}
}

const (
ErgoRequestStatusSuccess = true
)

type ErgoToErgoExtractionBridge struct {
config ConfigureCommand
configured bool

ergClientSource *helpers.ErgClient
ergClientTarget *helpers.ErgClient
}

func (provider *ErgoToErgoExtractionBridge) Configure(config ConfigureCommand) error {
if provider.configured {
return fmt.Errorf("bridge is configured already")
}

provider.config = config

// Node clients instantiation
var err error
provider.ergClientSource, err = helpers.NewClient(helpers.ErgOptions{BaseUrl: config.SourceNodeUrl})
if err != nil {
return err
}
provider.ergClientTarget, err = helpers.NewClient(helpers.ErgOptions{BaseUrl: config.SourceNodeUrl})
if err != nil {
return err
}
provider.configured = true

return nil
}

func (provider *ErgoToErgoExtractionBridge) pickRequestFromLUPortQueue(luRequests []helpers.Request) (helpers.Request, error) {
var rq helpers.Request
allRequestIds, err := provider.ergClientTarget.GetAllRequestIds(provider.config.DestinationNodeUrl, provider.config.IBPortAddress)
if err != nil {
return rq, nil
}
fmt.Println(allRequestIds)
isExist := func(luRequest helpers.Request) bool {
flag := false
for _, requestId := range allRequestIds {
if luRequest.RequestId == requestId {
flag = true
break
}
}
return flag
}
for _, luRequest := range luRequests {
if isExist(luRequest) {
continue
}
isValid := ValidateErgoAddress(luRequest.Receiver, provider.config.SourceNodeUrl)
if !isValid {
continue
}
rq = luRequest
break
}

return rq, nil
}

func (provider *ErgoToErgoExtractionBridge) pickRequestFromIBPortQueue(ibRequests []helpers.Request) (helpers.Request, error) {
var rq helpers.Request
allRequestIds, err := provider.ergClientTarget.GetAllRequestIds(provider.config.SourceNodeUrl, provider.config.LUPortAddress)
if err != nil {
return rq, nil
}

isExist := func(ibRequest helpers.Request) bool {
flag := false
for _, requestId := range allRequestIds {
if ibRequest.RequestId == requestId {
flag = true
break
}
}
return flag
}
for _, ibRequest := range ibRequests {
if isExist(ibRequest) {
continue
}
isValid := ValidateErgoAddress(ibRequest.Receiver, provider.config.DestinationNodeUrl)
if !isValid {
continue
}
rq = ibRequest
break
}

return rq, nil
}

func (provider *ErgoToErgoExtractionBridge) ExtractDirectTransferRequest(ctx context.Context) (*extractors.Data, error) {
luRequests, err := provider.ergClientSource.GetRequestsList(provider.config.SourceNodeUrl, provider.config.LUPortAddress, ctx)
if err != nil {
return nil, err
}

rq, _ := provider.pickRequestFromLUPortQueue(luRequests)

if rq.RequestId == "" {
return nil, extractors.NotFoundErr
}
rqId := new(big.Int)
rqId, _ = rqId.SetString(rq.RequestId, 10)
fmt.Println(rqId)
amount, err := strconv.ParseInt(rq.Amount, 10, 64)
bigAmount := big.NewInt(amount)
fmt.Println(bigAmount)

sourceDecimals := big.NewInt(10)
sourceDecimals.Exp(sourceDecimals, big.NewInt(provider.config.SourceDecimals), nil)
destinationDecimals := big.NewInt(10)
destinationDecimals.Exp(destinationDecimals, big.NewInt(provider.config.DestinationDecimals), nil)

newAmount := bigAmount.
Mul(bigAmount, destinationDecimals).
Div(bigAmount, sourceDecimals).Int64()
fmt.Println(newAmount)

result := []byte{'m'}
newAmountBytes := make([]byte, 32)
binary.BigEndian.PutUint64(newAmountBytes, uint64(newAmount))
var RequestIdBytes [32]byte
result = append(result, rqId.FillBytes(RequestIdBytes[:])...)
result = append(result, newAmountBytes[:]...)
receiver := []byte(rq.Receiver)
result = append(result, receiver[:]...)

println(base64.StdEncoding.EncodeToString(result))
return &extractors.Data{
Type: extractors.Base64,
Value: base64.StdEncoding.EncodeToString(result),
}, err
}

func (provider *ErgoToErgoExtractionBridge) ExtractReverseTransferRequest(ctx context.Context) (*extractors.Data, error) {
ibRequests, err := provider.ergClientSource.GetRequestsList(provider.config.DestinationNodeUrl, provider.config.IBPortAddress, ctx)
if err != nil {
return nil, err
}

rq, _ := provider.pickRequestFromIBPortQueue(ibRequests)

if rq.RequestId == "" {
return nil, extractors.NotFoundErr
}

rqId := new(big.Int)
rqId, _ = rqId.SetString(rq.RequestId, 10)

amount, err := strconv.ParseInt(rq.Amount, 10, 64)
bigAmount := big.NewInt(amount)

sourceDecimals := big.NewInt(10)
sourceDecimals.Exp(sourceDecimals, big.NewInt(provider.config.SourceDecimals), nil)
destinationDecimals := big.NewInt(10)
destinationDecimals.Exp(destinationDecimals, big.NewInt(provider.config.DestinationDecimals), nil)

newAmount := bigAmount.
Mul(bigAmount, destinationDecimals).
Div(bigAmount, sourceDecimals).Int64()
fmt.Println(newAmount)

result := []byte{'m'}
newAmountBytes := make([]byte, 32)
binary.BigEndian.PutUint64(newAmountBytes, uint64(newAmount))
var RequestIdBytes [32]byte
result = append(result, rqId.FillBytes(RequestIdBytes[:])...)
result = append(result, newAmountBytes[:]...)
receiver := []byte(rq.Receiver)
result = append(result, receiver[:]...)

fmt.Println(newAmount)
println(base64.StdEncoding.EncodeToString(result))
return &extractors.Data{
Type: extractors.Base64,
Value: base64.StdEncoding.EncodeToString(result),
}, err
}
Loading