go get github.com/everFinance/goar
Send winston
package main
import (
"fmt"
"math/big"
"github.com/everFinance/goar/types"
"github.com/everFinance/goar"
)
func main() {
wallet, err := goar.NewWalletFromPath("./test-keyfile.json", "https://arweave.net")
if err != nil {
panic(err)
}
id, err := wallet.SendWinston(
big.NewInt(1), // Winston amount
{{target}}, // target address
[]types.Tag{
types.Tag{
Name: "testSendWinston",
Value: "1",
},
},
)
fmt.Println(id, err) // {{id}}, nil
}
Send Data
package main
import (
"fmt"
"github.com/everFinance/goar/types"
"github.com/everFinance/goar"
)
func main() {
wallet, err := goar.NewWalletFromPath("./test-keyfile.json", "https://arweave.net")
if err != nil {
panic(err)
}
id, err := wallet.SendData(
[]byte("123"), // Data bytes
[]types.Tag{
types.Tag{
Name: "testSendData",
Value: "123",
},
},
)
fmt.Println(id, err) // {{id}}, nil
}
- GetInfo
- GetTransactionByID
- GetTransactionStatus
- GetTransactionField
- GetTransactionData
- GetTransactionPrice
- GetTransactionAnchor
- SubmitTransaction
- Arql(Deprecated)
- GraphQL
- GetWalletBalance
- GetLastTransactionID
- GetBlockByID
- GetBlockByHeight
Initialize the instance:
arClient := goar.NewClient("https://arweave.net")
// if your network is not good, you can config http proxy
proxyUrl := "http://127.0.0.1:8001"
arClient := goar.NewClient("https://arweave.net", proxyUrl)
- SendAR
- SendARSpeedUp
- SendWinston
- SendWinstonSpeedUp
- SendData
- SendDataSpeedUp
- SendTransaction
Initialize the instance, use a keyfile.json:
arWallet := goar.NewWalletFromPath("./keyfile.json")
// if your network is not good, you can config http proxy
proxyUrl := "http://127.0.0.1:8001"
arWallet := NewWalletFromPath("./keyfile.json", "https://arweave.net", proxyUrl)
Package for Arweave develop toolkit.
- Base64Encode
- Base64Decode
- Sign
- Verify
- DeepHash
- GenerateChunks
- ValidatePath
- OwnerToAddress
- OwnerToPubKey
- TagsEncode
- TagsDecode
- PrepareChunks
- GetChunk
- SignTransaction
- GetSignatureData
- VerifyTransaction
- CreateTcKeyPair
- ThresholdSign
- AssembleSigShares
- VerifySigShare
Create RSA Threshold Cryptography:
bitSize := 512 // If the values are 2048 and 4096, then the generation functions below will perform minute-level times, and we need 4096 bits as the maximum safety level for production environments.
l := 5
k := 3
keyShares, keyMeta, err := goar.CreateTcKeyPair(bitSize, k, l)
New sign instance:
exampleData := []byte("aaabbbcccddd112233") // need sign data
ts, err := goar.NewTcSign(keyMeta, exampleData)
// signer threshold sign
signer01 := keyShares[0]
signedData01, err := ts.ThresholdSign(signer01)
// assemble sign
signedShares := tcrsa.SigShareList{
signedData01,
...
}
signature, err := ts.AssembleSigShares(signedShares)
// verify share sign
err := ts.VerifySigShare(signer01)
make test
- First, we use Chunk transactions for all types of transactions in this library, so we only support transactions where format equals 2.
- Second, the library already encapsulates a common interface for sending transactions : e.g
SendAR; SendData
. The user only needs to call this interface to send the transaction and do not need to worry about the usage of chunks. - The third,If the user needs to control the transaction such as breakpoint retransmission and breakpoint continuation operations. Here is how to do it.
The method of sumbitting a data transaction is to use chunk uploading. This method will allow larger transaction zises,resuming a transaction upload if it's interrupted and give progress updates while uploading. Simple example:
arNode := "https://arweave.net"
w, err := goar.NewWalletFromPath("../example/testKey.json", arNode) // your wallet private key
anchor, err := w.Client.GetTransactionAnchor()
if err != nil {
return
}
data, err := ioutil.ReadFile("./2.3MBPhoto.jpg")
if err != nil {
return
}
tx.LastTx = anchor
reward, err := w.Client.GetTransactionPrice(data, nil)
if err != nil {
return
}
tx := &types.Transaction{
Format: 2,
Target: "",
Quantity: "0",
Tags: utils.TagsEncode(tags),
Data: utils.Base64Encode(data),
DataSize: fmt.Sprintf("%d", len(data)),
Reward: fmt.Sprintf("%d", reward*(100+speedFactor)/100),
}
if err = utils.SignTransaction(tx, w.PubKey, w.PrvKey); err != nil {
return
}
id = tx.ID
uploader, err := goar.CreateUploader(w.Client, tx, nil)
if err != nil {
return
}
for !uploader.IsComplete() {
err = uploader.UploadChunk()
if err != nil {
return
}
}
You can resume an upload from a saved uploader object, that you have persisted in storage some using json.marshal(uploader) at any stage of the upload.To resume, parse it back into an object and pass it to getUploader() along with the transactions data:
uploaderBuf, err := ioutil.ReadFile("./jsonUploaderFile.json")
lastUploader := &txType.TransactionUploader{}
err = json.Unmarshal(uploaderBuf, lastUploader)
assert.NoError(t, err)
// new uploader object by last time uploader
newUploader, err := txType.CreateUploader(wallet.Client, lastUploader.FormatSerializedUploader(), bigData)
assert.NoError(t, err)
for !newUploader.IsComplete() {
err := newUploader.UploadChunk()
assert.NoError(t, err)
}
When resuming the upload, you must provide the same data as the original upload. When you serialize the uploader object with json.marshal() to save it somewhere, it will not include the data.
You can also resume an upload from just the transaction ID and data, once it has been mined into a block. This can be useful if you didn't save the uploader somewhere but the upload got interrupted. This will re-upload all of the data from the beginning, since we don't know which parts have been uploaded:
bigData, err := ioutil.ReadFile(filePath)
txId := "myTxId"
// get uploader by txId and post big data by chunks
uploader, err := goar.CreateUploader(wallet.Client, txId, bigData)
assert.NoError(t, err)
for !uploader.IsComplete() {
err := uploader.UploadChunk()
assert.NoError(t, err)
}