Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Universal CLI #1662

Merged
merged 61 commits into from
Oct 25, 2024
Merged
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
fc00a77
reflect marshaler
containerman17 Sep 27, 2024
09a8367
go mod tidy
containerman17 Sep 27, 2024
ef66086
Merge branch 'main' into reflect-marshaler
containerman17 Sep 28, 2024
ee78c67
nits by ARR4N
containerman17 Sep 30, 2024
f6a144a
lint
containerman17 Sep 30, 2024
6a97f02
Merge branch 'main' into reflect-marshaler
containerman17 Oct 1, 2024
15153e2
some error tests
containerman17 Oct 1, 2024
f350683
Merge branch 'reflect-marshaler' of https://github.com/ava-labs/hyper…
containerman17 Oct 1, 2024
2a28d5a
Merge branch 'main' into reflect-marshaler
containerman17 Oct 8, 2024
e70a7e0
tidy
containerman17 Oct 8, 2024
b67fbae
replace codec.LinearCodec.Unmarshal for UnmarshalFrom
containerman17 Oct 8, 2024
ddb5e6f
format
containerman17 Oct 8, 2024
c4253e7
Merge branch 'main' into reflect-marshaler
containerman17 Oct 10, 2024
cb969a9
nits
containerman17 Oct 10, 2024
d81655d
fix error name
containerman17 Oct 10, 2024
11dd321
working with addresses
containerman17 Oct 14, 2024
48e370e
Merge branch 'main' into cli
containerman17 Oct 14, 2024
1c8581a
ping
containerman17 Oct 14, 2024
ab5d63f
reorganize ping
containerman17 Oct 14, 2024
cb01730
actions
containerman17 Oct 14, 2024
bf3dc64
endpoint command
containerman17 Oct 14, 2024
af035e8
read result
containerman17 Oct 21, 2024
f3f62bf
read result
containerman17 Oct 21, 2024
9c2c631
add support for 0x
containerman17 Oct 21, 2024
36bb8e1
request keys
containerman17 Oct 21, 2024
b3263fb
use hex
containerman17 Oct 21, 2024
4cb50cf
parse int and uint
containerman17 Oct 21, 2024
42ae749
update readme
containerman17 Oct 24, 2024
27a38a3
remove base64
containerman17 Oct 24, 2024
cd15478
update morpheus address
containerman17 Oct 24, 2024
3f0561d
sign tx example
containerman17 Oct 24, 2024
7018f74
sign multi actions
containerman17 Oct 24, 2024
2dd46dc
stuck with txs hanging
containerman17 Oct 24, 2024
adaf68d
readme
containerman17 Oct 24, 2024
e7d292c
Merge branch 'main' into cli
containerman17 Oct 24, 2024
0d9e79c
rename package
containerman17 Oct 24, 2024
6c764e4
update readme
containerman17 Oct 24, 2024
978190a
return uint and linmt
containerman17 Oct 24, 2024
12ccaed
lint
containerman17 Oct 24, 2024
1a073a0
remove extra test
containerman17 Oct 24, 2024
ad6420e
lint
containerman17 Oct 24, 2024
f8cd8e4
Fix code scanning alert no. 114: Incorrect conversion between integer…
containerman17 Oct 24, 2024
135bb9e
lint
containerman17 Oct 24, 2024
2cdcdb8
lint
containerman17 Oct 24, 2024
4656625
simplify Uint function
containerman17 Oct 24, 2024
4510f51
simplify Int
containerman17 Oct 24, 2024
59dcdaa
readme update
containerman17 Oct 24, 2024
20ca2a6
reverse consts
containerman17 Oct 24, 2024
45266e3
lint
containerman17 Oct 24, 2024
fcea895
remove InvalidAddress
containerman17 Oct 24, 2024
4269a1b
bring back the NonExistentAddress test
containerman17 Oct 24, 2024
dfc4900
(optional nit) maybe text instead of human?
containerman17 Oct 25, 2024
5170175
switch from reading the config manually to using cobra/viper to read…
containerman17 Oct 25, 2024
8ad54d5
descriptive variable name
containerman17 Oct 25, 2024
40611e0
unexpected field provided error
containerman17 Oct 25, 2024
c648b25
add TODO for timestamp and max fee
containerman17 Oct 25, 2024
d80ed67
change ws to indexer
containerman17 Oct 25, 2024
1a47159
lint
containerman17 Oct 25, 2024
d100ff0
Merge branch 'main' into cli
containerman17 Oct 25, 2024
0ae0c9a
go mod tidy (viper)
containerman17 Oct 25, 2024
83bd857
move manual tx signing to chain package + nits
aaronbuchwald Oct 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
tidy
  • Loading branch information
containerman17 committed Oct 8, 2024
commit e70a7e09e3aa3f77f2e285ea916dfd95590c6b6b
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ require (
go.uber.org/zap v1.26.0
golang.org/x/crypto v0.22.0
golang.org/x/exp v0.0.0-20231127185646-65229373498e
golang.org/x/sync v0.7.0
golang.org/x/text v0.14.0
golang.org/x/sync v0.7.0
golang.org/x/text v0.14.0
google.golang.org/grpc v1.62.0
google.golang.org/protobuf v1.34.2
gopkg.in/yaml.v2 v2.4.0
Expand Down Expand Up @@ -144,7 +144,6 @@ require (
golang.org/x/net v0.24.0 // indirect
golang.org/x/sys v0.19.0 // indirect
golang.org/x/term v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.17.0 // indirect
gonum.org/v1/gonum v0.11.0 // indirect
Expand Down
Loading