-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
671dc30
commit c4675cc
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
"strconv" | ||
|
||
"github.com/chia-network/go-chia-libs/pkg/types" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
var coin types.Coin | ||
|
||
func init() { | ||
rootCmd.AddCommand(coinIdCmd) | ||
} | ||
|
||
var coinIdCmd = &cobra.Command{ | ||
Use: "coin_id <parent_coin_id> <puzzle_hash> <amount>", | ||
Args: func(cmd *cobra.Command, args []string) error { | ||
if err := cobra.ExactArgs(3)(cmd, args); err != nil { | ||
return err | ||
} | ||
|
||
// Parent | ||
if !isHex(args[0]) { | ||
return fmt.Errorf("invalid hex value specified: %s", args[0]) | ||
} | ||
parent, err := types.Bytes32FromHexString(formatHex(args[0])) | ||
if err != nil { | ||
return fmt.Errorf("invalid hex value specified: %s", args[0]) | ||
} | ||
coin.ParentCoinInfo = parent | ||
|
||
// Puzzle Hash | ||
if !isHex(args[1]) { | ||
return fmt.Errorf("invalid hex value specified: %s", args[1]) | ||
} | ||
puzzle_hash, err := types.Bytes32FromHexString(formatHex(args[1])) | ||
if err != nil { | ||
return fmt.Errorf("invalid hex value specified: %s", args[1]) | ||
} | ||
coin.PuzzleHash = puzzle_hash | ||
|
||
// Amount | ||
amount, err := strconv.ParseUint(args[2], 10, 64) | ||
if err != nil { | ||
return fmt.Errorf("invalid amount: %s", args[2]) | ||
} | ||
coin.Amount = amount | ||
|
||
return nil | ||
}, | ||
Short: "Compute a coin id from parent, puzzle and amount", | ||
Long: `Compute a coin id from parent, puzzle and amount`, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
fmt.Printf("%s\n", coin.ID().String()) | ||
}, | ||
} |