Skip to content

Commit

Permalink
Merge pull request #27 from miancan/fix/update_move_args
Browse files Browse the repository at this point in the history
Fix/update move args
  • Loading branch information
JaydenLink authored Jun 12, 2024
2 parents 461cac4 + 057689b commit 13f0bd3
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions models/read_transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,11 @@ type ProgrammableTransaction struct {
}

type MoveCallSuiTransaction struct {
Package string `json:"package"`
Module string `json:"module"`
Function string `json:"function"`
TypeArguments []string `json:"type_arguments"`
Arguments []struct {
Input int `json:"Input"`
Result int `json:"Result"`
} `json:"arguments"`
Package string `json:"package"`
Module string `json:"module"`
Function string `json:"function"`
TypeArguments []string `json:"type_arguments"`
Arguments []interface{} `json:"arguments"`
}

type SuiTransactionBlockData struct {
Expand Down

0 comments on commit 13f0bd3

Please sign in to comment.