Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit af3ee42

Browse files
authored
Merge pull request #295 from iotaledger/v3
v3 WIP
2 parents 871c779 + 0f93826 commit af3ee42

File tree

143 files changed

+19510
-7626
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+19510
-7626
lines changed

.github/workflows/test_and_benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test_and_benchmark:
55
strategy:
66
matrix:
7-
go-version: [ 1.15.x ]
7+
go-version: [ 1.18.x ]
88
platform: [ ubuntu-latest ]
99
runs-on: ${{ matrix.platform }}
1010
steps:
@@ -16,6 +16,6 @@ jobs:
1616
- name: Checkout code
1717
uses: actions/checkout@v1
1818
- name: Run tests
19-
run: go test -tags="pow_avx pow_sse pow_c pow_c128" -v -covermode=count ./...
19+
run: go test -v -covermode=count ./...
2020
- name: Run Benchmarks
2121
run: go test -bench=. ./...

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/
2+
.vscode/
23
*.exe
34
*.exe~
45
*.dll

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Official Go library.
44

55
This library allows you to do the following:
66

7-
- Create messages with indexation and transaction payloads
8-
- Get messages and outputs
7+
- Create blocks with tagged data and transaction payloads
8+
- Get blocks and outputs
99
- Sign transactions
1010
- Generate addresses
1111
- Interact with an IOTA node
@@ -25,12 +25,12 @@ To use the library, we recommend you update Go [to the latest stable version](ht
2525
Using the library is easy, just `go get` it as any other dependency:
2626

2727
```bash
28-
go get github.com/iotaledger/iota.go/v2
28+
go get github.com/iotaledger/iota.go/v3
2929
```
3030

3131
## API reference
3232

33-
You can read the API reference [here](https://pkg.go.dev/github.com/iotaledger/iota.go/v2).
33+
You can read the API reference [here](https://pkg.go.dev/github.com/iotaledger/iota.go/v3).
3434

3535
## Joining the discussion
3636

0 commit comments

Comments
 (0)