-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f49bf8f
commit b505df8
Showing
2 changed files
with
46 additions
and
1 deletion.
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
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,45 @@ | ||
// Package main demonstrates an API client which signs a transaction with a private key ID or wallet account. | ||
package main | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"strconv" | ||
"time" | ||
|
||
"github.com/tkhq/go-sdk" | ||
"github.com/tkhq/go-sdk/pkg/api/client/signing" | ||
"github.com/tkhq/go-sdk/pkg/api/models" | ||
) | ||
|
||
func main() { | ||
// NB: make sure to create and register an API key, first. | ||
client, err := sdk.New("default") | ||
if err != nil { | ||
log.Fatal("failed to create new SDK client:", err) | ||
} | ||
|
||
timestamp := time.Now().UnixMilli() | ||
timestampString := strconv.FormatInt(timestamp, 10) | ||
|
||
var privateKeyID string | ||
var unsignedTransaction string // no 0x prefix necessary | ||
|
||
pkParams := signing.NewSignTransactionParams().WithBody(&models.SignTransactionRequest{ | ||
OrganizationID: client.DefaultOrganization(), | ||
TimestampMs: ×tampString, | ||
Parameters: &models.SignTransactionIntentV2{ | ||
SignWith: &privateKeyID, | ||
Type: models.TransactionTypeEthereum.Pointer(), | ||
UnsignedTransaction: &unsignedTransaction, | ||
}, | ||
Type: (*string)(models.ActivityTypeSignTransactionV2.Pointer()), | ||
}) | ||
|
||
signResp, err := client.V0().Signing.SignTransaction(pkParams, client.Authenticator) | ||
if err != nil { | ||
log.Fatal("failed to make SignTransaction request:", err) | ||
} | ||
|
||
fmt.Printf("Signed tx: %v\n", *signResp.Payload.Activity.Result.SignTransactionResult.SignedTransaction) | ||
} |