Skip to content

Commit a5eb08b

Browse files
feat(galois): rename from to
1 parent 389ba65 commit a5eb08b

File tree

3,407 files changed

+41
-43
lines changed

Some content is hidden

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

3,407 files changed

+41
-43
lines changed

ARCHITECTURE.md

Lines changed: 3 additions & 3 deletions

README.md

Lines changed: 1 addition & 1 deletion

cspell.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"uniond/vendor",
2020
"uniond/x/union/types",
2121
"uniond/proto",
22-
"unionpd/vendor",
22+
"galoisd/vendor",
2323
"**/go.mod",
2424
"**/go.sum",
2525
"evm",

dictionary.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,6 @@ unionmodule
531531
unionmodulekeeper
532532
unionmoduletypes
533533
unionp
534-
unionpd
535534
unionsimulation
536535
unionvisor
537536
unjail

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
[ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ];
6565
imports = [
6666
./uniond/uniond.nix
67-
./unionpd/unionpd.nix
67+
./galoisd/galoisd.nix
6868
./unionvisor/unionvisor.nix
6969
./relayer/relayer.nix
7070
./lib/ethereum-verifier/ethereum-verifier.nix
@@ -135,9 +135,9 @@
135135
name = "uniond-proto";
136136
path = ./uniond/proto;
137137
};
138-
unionpd = builtins.path {
139-
name = "unionpd-proto";
140-
path = ./unionpd/proto;
138+
galoisd = builtins.path {
139+
name = "galoisd-proto";
140+
path = ./galoisd/proto;
141141
};
142142
cometbls = builtins.fetchGit {
143143
name = "cometbls";
File renamed without changes.

unionpd/README.md renamed to galoisd/README.md

Lines changed: 2 additions & 2 deletions

unionpd/cmd/unionpd/cmd/client.go renamed to galoisd/cmd/galoisd/cmd/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ package cmd
33
import (
44
"context"
55
"crypto/tls"
6+
provergrpc "galois/grpc/api/v1"
67
"github.com/spf13/cobra"
78
"google.golang.org/grpc"
89
"google.golang.org/grpc/credentials"
910
"google.golang.org/grpc/credentials/insecure"
1011
"log"
1112
"time"
12-
provergrpc "unionp/grpc/api/v1"
1313
)
1414

1515
const (

unionpd/cmd/unionpd/cmd/example_prove.go renamed to galoisd/cmd/galoisd/cmd/example_prove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"encoding/base64"
66
"encoding/hex"
77
"fmt"
8+
provergrpc "galois/grpc/api/v1"
89
"log"
910
"math/big"
10-
provergrpc "unionp/grpc/api/v1"
1111

1212
cometbn254 "github.com/cometbft/cometbft/crypto/bn254"
1313
ce "github.com/cometbft/cometbft/crypto/encoding"

0 commit comments

Comments
 (0)