forked from lavanet/lava
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added support do double spend defence, and max CU usage, work in prog…
…ress
- Loading branch information
1 parent
07a4953
commit 734c1b4
Showing
70 changed files
with
14,208 additions
and
2,871 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
package lavanet.lava.servicer; | ||
|
||
option go_package = "github.com/lavanet/lava/x/servicer/types"; | ||
import "servicer/user_payment_storage.proto"; | ||
|
||
message SessionPayments { | ||
string index = 1; | ||
repeated UserPaymentStorage usersPayments = 2; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
package lavanet.lava.servicer; | ||
|
||
option go_package = "github.com/lavanet/lava/x/servicer/types"; | ||
|
||
message UniquePaymentStorageUserServicer { | ||
string index = 1; | ||
uint64 block = 2; | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
syntax = "proto3"; | ||
package lavanet.lava.servicer; | ||
|
||
option go_package = "github.com/lavanet/lava/x/servicer/types"; | ||
import "servicer/unique_payment_storage_user_servicer.proto"; | ||
|
||
message UserPaymentStorage { | ||
string index = 1; | ||
repeated UniquePaymentStorageUserServicer uniquePaymentStorageUserServicer = 2; | ||
uint64 totalCU = 3; | ||
uint64 session = 4; | ||
|
||
} | ||
|
Oops, something went wrong.