Skip to content

Commit 30092df

Browse files
authored
Merge branch 'main' into pagination-fix
2 parents e8b99de + 8dcc9fc commit 30092df

File tree

24 files changed

+1185
-1857
lines changed

24 files changed

+1185
-1857
lines changed

.coderabbit.yaml

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
# yaml-language-server: $schema=https://storage.googleapis.com/coderabbit_public_assets/schema.v2.json
2+
---
3+
language: en-US
4+
tone_instructions: ""
5+
early_access: true
6+
enable_free_tier: true
7+
reviews:
8+
profile: chill
9+
request_changes_workflow: false
10+
high_level_summary: false
11+
auto_title_instructions: ""
12+
review_status: true
13+
commit_status: true
14+
fail_commit_status: false
15+
collapse_walkthrough: false
16+
changed_files_summary: true
17+
sequence_diagrams: true
18+
assess_linked_issues: true
19+
related_issues: true
20+
related_prs: true
21+
suggested_labels: true
22+
auto_apply_labels: false
23+
suggested_reviewers: true
24+
auto_assign_reviewers: false
25+
poem: true
26+
labeling_instructions:
27+
- label: ""
28+
instructions: ""
29+
path_filters: []
30+
path_instructions:
31+
- path: ""
32+
instructions: ""
33+
abort_on_close: true
34+
disable_cache: false
35+
auto_review:
36+
enabled: true
37+
auto_incremental_review: true
38+
ignore_title_keywords: []
39+
labels: []
40+
drafts: false
41+
base_branches: []
42+
finishing_touches:
43+
docstrings:
44+
enabled: true
45+
unit_tests:
46+
enabled: true
47+
tools:
48+
ast-grep:
49+
rule_dirs: []
50+
util_dirs: []
51+
essential_rules: true
52+
packages: []
53+
shellcheck:
54+
enabled: true
55+
ruff:
56+
enabled: true
57+
markdownlint:
58+
enabled: true
59+
github-checks:
60+
enabled: true
61+
timeout_ms: 90000
62+
languagetool:
63+
enabled: true
64+
enabled_rules: []
65+
disabled_rules: []
66+
enabled_categories: []
67+
disabled_categories: []
68+
enabled_only: false
69+
level: default
70+
biome:
71+
enabled: true
72+
hadolint:
73+
enabled: true
74+
swiftlint:
75+
enabled: true
76+
config_file: ""
77+
phpstan:
78+
enabled: true
79+
level: default
80+
golangci-lint:
81+
enabled: true
82+
config_file: ""
83+
yamllint:
84+
enabled: true
85+
gitleaks:
86+
enabled: true
87+
checkov:
88+
enabled: true
89+
detekt:
90+
enabled: true
91+
config_file: ""
92+
eslint:
93+
enabled: true
94+
rubocop:
95+
enabled: true
96+
buf:
97+
enabled: true
98+
regal:
99+
enabled: true
100+
actionlint:
101+
enabled: true
102+
pmd:
103+
enabled: true
104+
config_file: ""
105+
cppcheck:
106+
enabled: true
107+
semgrep:
108+
enabled: true
109+
config_file: ""
110+
circleci:
111+
enabled: true
112+
clippy:
113+
enabled: true
114+
sqlfluff:
115+
enabled: true
116+
prismaLint:
117+
enabled: true
118+
pylint:
119+
enabled: true
120+
oxc:
121+
enabled: true
122+
shopifyThemeCheck:
123+
enabled: true
124+
luacheck:
125+
enabled: true
126+
brakeman:
127+
enabled: true
128+
dotenvLint:
129+
enabled: true
130+
checkmake:
131+
enabled: true
132+
chat:
133+
auto_reply: true
134+
integrations:
135+
jira:
136+
usage: auto
137+
linear:
138+
usage: auto
139+
knowledge_base:
140+
opt_out: false
141+
web_search:
142+
enabled: true
143+
code_guidelines:
144+
enabled: true
145+
filePatterns: []
146+
learnings:
147+
scope: auto
148+
issues:
149+
scope: auto
150+
jira:
151+
usage: auto
152+
project_keys: []
153+
linear:
154+
usage: auto
155+
team_keys: []
156+
pull_requests:
157+
scope: auto
158+
code_generation:
159+
docstrings:
160+
language: en-US
161+
path_instructions:
162+
- path: ""
163+
instructions: ""
164+
unit_tests:
165+
path_instructions:
166+
- path: ""
167+
instructions: ""

.goreleaser.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -80,25 +80,6 @@ builds:
8080
- "{{ .Env.STRIP_FLAGS }}"
8181
- "-linkmode={{ .Env.LINKMODE }}"
8282
- -extldflags "-lc -lrt -lpthread --static"
83-
- id: akash-windows-amd64
84-
binary: akash
85-
main: ./cmd/akash
86-
goarch:
87-
- amd64
88-
goos:
89-
- windows
90-
env:
91-
- CC=x86_64-w64-mingw32-gcc
92-
- CXX=x86_64-w64-mingw32-g++
93-
flags:
94-
- "-mod={{ .Env.MOD }}"
95-
- "-tags={{ .Env.BUILD_TAGS }}"
96-
- -trimpath
97-
- -buildmode=exe
98-
ldflags:
99-
- "{{ .Env.BUILD_VARS }}"
100-
- "{{ .Env.STRIP_FLAGS }}"
101-
- "-linkmode={{ .Env.LINKMODE }}"
10283
universal_binaries:
10384
- id: akash-darwin-universal
10485
ids:
@@ -112,7 +93,6 @@ archives:
11293
- akash-darwin-universal
11394
- akash-linux-amd64
11495
- akash-linux-arm64
115-
- akash-windows-amd64
11696
name_template: "akash_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
11797
wrap_in_directory: false
11898
formats:
@@ -124,7 +104,6 @@ archives:
124104
- akash-darwin-universal
125105
- akash-linux-amd64
126106
- akash-linux-arm64
127-
- akash-windows-amd64
128107
name_template: "akash_{{ .Os }}_{{ .Arch }}"
129108
wrap_in_directory: false
130109
formats:

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is just a short list of ideas, if you have other ideas for contributing ple
2828

2929
#### I've found a typo
3030

31-
* A Pull Request is not necessary. Raise an [Issue](https://github.com/akash-network/node/issues) and we'll fix it as soon as we can.
31+
* A Pull Request is not necessary. Raise an [Issue](https://github.com/akash-network/support/issues) and we'll fix it as soon as we can.
3232

3333
#### I have a (great) idea
3434

@@ -260,7 +260,7 @@ There is a forum which you are welcome to join to discuss Akash Network, Kuberne
260260

261261
### Roadmap
262262

263-
* Browse open issues in [overclock/akash](https://github.com/akash-network/node/issues)
263+
* Browse open issues in [support](https://github.com/akash-network/support/issues)
264264

265265
## License
266266

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,15 @@
1313
For a high-level overview of the Akash protocol and network economics, check out the [whitepaper](https://ipfs.io/ipfs/QmVwsi5kTrg7UcUEGi5UfdheVLBWoHjze2pHy4tLqYvLYv); a detailed protocol definition can be
1414
found in the [design documentation](https://docs.akash.network); and the target workload definition spec is [here](https://docs.akash.network/sdl).
1515

16-
For an indept understanding of the code [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/akash-network/node)
16+
For an indepth understanding of the code [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/akash-network/node)
1717

18+
# Roadmap and contributing
19+
20+
Should you with to suggest feature or report an issue please open ticket in [support repo](https://github.com/akash-network/support/issues)
21+
22+
Akash is written in Golang and is Apache 2.0 licensed - contributions are welcomed whether that means providing feedback, testing existing and new feature or hacking on the source.
1823

24+
To become a contributor, please see the guide on [contributing](CONTRIBUTING.md)
1925

2026
# Branching and Versioning
2127

@@ -78,12 +84,6 @@ Or install a specific version with [GoDownloader](https://github.com/goreleaser/
7884
$ curl -sSfL https://raw.githubusercontent.com/akash-network/node/main/install | sh -s -- v0.22.0
7985
```
8086

81-
# Roadmap and contributing
82-
83-
Akash is written in Golang and is Apache 2.0 licensed - contributions are welcomed whether that means providing feedback, testing existing and new feature or hacking on the source.
84-
85-
To become a contributor, please see the guide on [contributing](CONTRIBUTING.md)
86-
8787
## Development environment
8888
[This doc](https://github.com/akash-network/node/blob/main/_docs/development-environment.md) guides through setting up local development environment
8989

app/sim_test.go

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ import (
77
"os"
88
"testing"
99

10+
atypes "github.com/akash-network/akash-api/go/node/audit/v1beta3"
11+
ctypes "github.com/akash-network/akash-api/go/node/cert/v1beta3"
12+
dtypes "github.com/akash-network/akash-api/go/node/deployment/v1beta3"
13+
mtypes "github.com/akash-network/akash-api/go/node/market/v1beta4"
14+
ptypes "github.com/akash-network/akash-api/go/node/provider/v1beta3"
15+
taketypes "github.com/akash-network/akash-api/go/node/take/v1beta3"
1016
"github.com/cosmos/cosmos-sdk/x/authz"
1117
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
1218
"github.com/stretchr/testify/require"
@@ -181,6 +187,36 @@ func TestAppImportExport(t *testing.T) {
181187
{app.skeys[authz.ModuleName], newApp.skeys[authz.ModuleName], [][]byte{
182188
authzkeeper.GranteeKey,
183189
}},
190+
{
191+
app.GetKey(atypes.StoreKey),
192+
newApp.GetKey(atypes.StoreKey),
193+
[][]byte{},
194+
},
195+
{
196+
app.GetKey(ctypes.StoreKey),
197+
newApp.GetKey(ctypes.StoreKey),
198+
[][]byte{},
199+
},
200+
{
201+
app.GetKey(dtypes.StoreKey),
202+
newApp.GetKey(dtypes.StoreKey),
203+
[][]byte{},
204+
},
205+
{
206+
app.GetKey(mtypes.StoreKey),
207+
newApp.GetKey(mtypes.StoreKey),
208+
[][]byte{},
209+
},
210+
{
211+
app.GetKey(ptypes.StoreKey),
212+
newApp.GetKey(ptypes.StoreKey),
213+
[][]byte{},
214+
},
215+
{
216+
app.GetKey(taketypes.StoreKey),
217+
newApp.GetKey(taketypes.StoreKey),
218+
[][]byte{},
219+
},
184220
}
185221

186222
for _, skp := range storeKeysPrefixes {

0 commit comments

Comments
 (0)