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

refactor: lightclient verification flags #2097

Merged
merged 37 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
482b15f
add more fields to the chains struct
kingpinXD Apr 23, 2024
8091422
add migration script
kingpinXD Apr 24, 2024
27ba5cb
Merge branch 'develop' into refactor-chains
kingpinXD Apr 24, 2024
3f56c13
add comments
kingpinXD Apr 24, 2024
48d1e88
add changelog and generate files
kingpinXD Apr 24, 2024
0aa02a6
add comments for proto files
kingpinXD Apr 24, 2024
1e946c6
generate files after adding comments
kingpinXD Apr 24, 2024
cf23d84
generate files after adding comments
kingpinXD Apr 24, 2024
170a0ba
remove migration script
kingpinXD Apr 24, 2024
d06aeb4
refactor enums to use small case
kingpinXD Apr 24, 2024
61caa74
replace chain functions with variables
kingpinXD Apr 24, 2024
d05d3d2
Merge branch 'develop' into refactor-chains
kingpinXD Apr 24, 2024
d865311
generate files 3
kingpinXD Apr 24, 2024
644db00
Merge remote-tracking branch 'origin/refactor-chains' into refactor-c…
kingpinXD Apr 24, 2024
4a82d45
add section for v15.0.0 in changelog.md
kingpinXD Apr 25, 2024
9fcaeef
add issue for removing pointers from chain list functions
kingpinXD Apr 26, 2024
00eec8e
modify verification flags
kingpinXD Apr 26, 2024
b701017
generate files
kingpinXD Apr 29, 2024
8eb27f6
add cli docs
kingpinXD Apr 29, 2024
7567536
rebase develop
kingpinXD Apr 29, 2024
416f42d
add bitcoin headers
kingpinXD Apr 30, 2024
9569fdd
add changelog
kingpinXD Apr 30, 2024
0a17356
ad some unit tests for verification_flags.go
kingpinXD Apr 30, 2024
ab71ad8
add breaking changes section
kingpinXD Apr 30, 2024
6c3d4db
add trim space for cli inputs
kingpinXD Apr 30, 2024
415adcc
refactor verification flags into enabled chains
kingpinXD Apr 30, 2024
361c07a
add unit tests for block header verification
kingpinXD Apr 30, 2024
494e6f3
fix changelog
kingpinXD Apr 30, 2024
e026968
generate files 3
kingpinXD Apr 30, 2024
d9bab15
rename enabled chains to supported chains
kingpinXD May 1, 2024
3fa5987
add enabled chain query to zetacliet tests
kingpinXD May 1, 2024
65b64d0
generate files 4
kingpinXD May 1, 2024
4e8daa9
Update pkg/chains/chain.go
kingpinXD May 3, 2024
1e5d62c
add check for duplicated chain id
kingpinXD May 3, 2024
3fb0932
Merge remote-tracking branch 'origin/refactor-lightclient-verificatio…
kingpinXD May 3, 2024
ae95014
fix comments and identifier names
kingpinXD May 7, 2024
35a0cd3
rebase develop
kingpinXD May 8, 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
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# CHANGELOG

## Unreleased
### Breaking Changes
* `MsgUpdateVerificationFlags` has been removed, and replaced with `MsgEnableVerificationFlags` and `MsgDisableVerificationFlags` messages.
* `MsgEnableVerificationFlags` message enables the verification flags for a list of chains and can be triggered via `PolicyType_groupOperational`
* `MsgDisableVerificationFlags` message disables the verification flags for a list of chains and can be triggered via `PolicyType_emergency`

### Refactor

* [2032](https://github.com/zeta-chain/node/pull/2032) - improve some general structure of the ZetaClient codebase
* [2097](https://github.com/zeta-chain/node/pull/2097) - refactor lightclient verification flags to account for individual chains

## Unreleased
### Breaking Changes
Expand Down Expand Up @@ -66,6 +71,8 @@
* [2046](https://github.com/zeta-chain/node/pull/2046) - add state variable in crosschain for rate limiter flags
* [2034](https://github.com/zeta-chain/node/pull/2034) - add support for zEVM message passing



### Tests

* [1767](https://github.com/zeta-chain/node/pull/1767) - add unit tests for emissions module begin blocker
Expand Down
5 changes: 4 additions & 1 deletion cmd/zetae2e/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import (
"github.com/zeta-chain/zetacore/e2e/e2etests"
"github.com/zeta-chain/zetacore/e2e/runner"
"github.com/zeta-chain/zetacore/e2e/utils"
"github.com/zeta-chain/zetacore/pkg/chains"
"golang.org/x/sync/errgroup"
)

Expand Down Expand Up @@ -189,7 +190,9 @@ func localE2ETest(cmd *cobra.Command, _ []string) {
logger.Print("⚙️ setting up networks")
startTime := time.Now()

if err := deployerRunner.EnableVerificationFlags(); err != nil {
if err := deployerRunner.EnableVerificationFlags([]int64{
chains.GoerliLocalnetChain.ChainId,
chains.BtcRegtestChain.ChainId}); err != nil {
panic(err)
}

Expand Down
3 changes: 2 additions & 1 deletion docs/cli/zetacored/zetacored_tx_lightclient.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ zetacored tx lightclient [flags]
### SEE ALSO

* [zetacored tx](zetacored_tx.md) - Transactions subcommands
* [zetacored tx lightclient update-verification-flags](zetacored_tx_lightclient_update-verification-flags.md) - Update verification flags
* [zetacored tx lightclient disable-verification-flags](zetacored_tx_lightclient_disable-verification-flags.md) - Disable verification flags for the list of chains separated by comma
* [zetacored tx lightclient enable-verification-flags](zetacored_tx_lightclient_enable-verification-flags.md) - Enable verification flags for the list of chains separated by comma

Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# tx lightclient disable-verification-flags

Disable verification flags for the list of chains separated by comma

### Synopsis

Provide a list of chain ids separated by comma to disable block header verification for the specified chain ids.

Example:
To disable verification flags for chain ids 1 and 56
zetacored tx lightclient disable-verification-flags "1,56"


```
zetacored tx lightclient disable-verification-flags [list of chain-id] [flags]
```

### Options

```
-a, --account-number uint The account number of the signing account (offline mode only)
--aux Generate aux signer data instead of sending a tx
-b, --broadcast-mode string Transaction broadcasting mode (sync|async|block)
--dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it (when enabled, the local Keybase is not accessible)
--fee-granter string Fee granter grants fees for the transaction
--fee-payer string Fee payer pays fees for the transaction instead of deducting from the signer
--fees string Fees to pay along with transaction; eg: 10uatom
--from string Name or address of private key with which to sign
--gas string gas limit to set per-transaction; set to "auto" to calculate sufficient gas automatically. Note: "auto" option doesn't always report accurate results. Set a valid coin value to adjust the result. Can be used instead of "fees". (default 200000)
--gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1)
--gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom)
--generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name)
-h, --help help for disable-verification-flags
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory)
--keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used
--ledger Use a connected Ledger device
--node string [host]:[port] to tendermint rpc interface for this chain
--note string Note to add a description to the transaction (previously --memo)
--offline Offline mode (does not allow any online functionality)
-o, --output string Output format (text|json)
-s, --sequence uint The sequence number of the signing account (offline mode only)
--sign-mode string Choose sign mode (direct|amino-json|direct-aux), this is an advanced feature
--timeout-height uint Set a block timeout height to prevent the tx from being committed past a certain height
--tip string Tip is the amount that is going to be transferred to the fee payer on the target chain. This flag is only valid when used with --aux, and is ignored if the target chain didn't enable the TipDecorator
-y, --yes Skip tx broadcasting prompt confirmation
```

### Options inherited from parent commands

```
--chain-id string The network chain ID
--home string directory for config and data
--log_format string The logging format (json|plain)
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic)
--trace print out full stack trace on errors
```

### SEE ALSO

* [zetacored tx lightclient](zetacored_tx_lightclient.md) - lightclient transactions subcommands

Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
# tx lightclient update-verification-flags
# tx lightclient enable-verification-flags

Update verification flags
Enable verification flags for the list of chains separated by comma

### Synopsis

Provide a list of chain ids separated by comma to enable block header verification for the specified chain ids.

Example:
To enable verification flags for chain ids 1 and 56
zetacored tx lightclient enable-verification-flags "1,56"


```
zetacored tx lightclient update-verification-flags [eth-type-chain-enabled] [btc-type-chain-enabled] [flags]
zetacored tx lightclient enable-verification-flags [list of chain-id] [flags]
```

### Options
Expand All @@ -21,7 +30,7 @@ zetacored tx lightclient update-verification-flags [eth-type-chain-enabled] [btc
--gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1)
--gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom)
--generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name)
-h, --help help for update-verification-flags
-h, --help help for enable-verification-flags
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory)
--keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used
--ledger Use a connected Ledger device
Expand Down
20 changes: 12 additions & 8 deletions docs/openapi/openapi.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53602,8 +53602,6 @@ definitions:
$ref: '#/definitions/chainsConsensus'
is_external:
type: boolean
is_header_supported:
type: boolean
chainsChainName:
type: string
enum:
Expand Down Expand Up @@ -54306,7 +54304,9 @@ definitions:
type: string
format: byte
title: ChainState defines the overall state of the block headers for a given chain
lightclientMsgUpdateVerificationFlagsResponse:
lightclientMsgDisableVerificationFlagsResponse:
type: object
lightclientMsgEnableVerificationFlagsResponse:
type: object
lightclientQueryAllBlockHeaderResponse:
type: object
Expand Down Expand Up @@ -54347,15 +54347,19 @@ definitions:
type: object
properties:
verification_flags:
$ref: '#/definitions/lightclientVerificationFlags'
type: array
items:
type: object
$ref: '#/definitions/lightclientVerificationFlags'
lightclientVerificationFlags:
type: object
properties:
ethTypeChainEnabled:
type: boolean
btcTypeChainEnabled:
chain_id:
type: string
format: int64
enabled:
type: boolean
title: VerificationFlags is a structure containing information which chain types are enabled for block header verification
title: VerificationFlags is a structure containing information of weather a chain is enabled or not for block header verification
observerAdmin_Policy:
type: object
properties:
Expand Down
23 changes: 17 additions & 6 deletions docs/spec/lightclient/messages.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# Messages

## MsgUpdateVerificationFlags
## MsgEnableVerificationFlags

UpdateVerificationFlags updates the light client verification flags.
This disables/enables blocks verification of the light client for the specified chain.
Emergency group can disable flags, it requires operational group if at least one flag is being enabled
EnableVerificationFlags enables the verification flags for the given chain IDs
Enabled chains allow the submissions of block headers and using it to verify the correctness of proofs

```proto
message MsgUpdateVerificationFlags {
message MsgEnableVerificationFlags {
string creator = 1;
VerificationFlags verification_flags = 2;
int64 chain_id_list = 2;
}
```

## MsgDisableVerificationFlags

DisableVerificationFlags disables the verification flags for the given chain IDs
Disabled chains do not allow the submissions of block headers or using it to verify the correctness of proofs

```proto
message MsgDisableVerificationFlags {
string creator = 1;
int64 chain_id_list = 2;
}
```

4 changes: 2 additions & 2 deletions e2e/runner/setup_zeta.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ func (runner *E2ERunner) SetupBTCZRC20() {
}

// EnableVerificationFlags enables the verification flags on ZetaChain
func (runner *E2ERunner) EnableVerificationFlags() error {
func (runner *E2ERunner) EnableVerificationFlags(chainIDList []int64) error {
runner.Logger.Print("⚙️ enabling verification flags for block headers")

return runner.ZetaTxServer.EnableVerificationFlags(e2eutils.FungibleAdminName)
return runner.ZetaTxServer.EnableVerificationFlags(e2eutils.FungibleAdminName, chainIDList)
}

// FundEmissionsPool funds the emissions pool on ZetaChain with the same value as used originally on mainnet (20M ZETA)
Expand Down
7 changes: 3 additions & 4 deletions e2e/txserver/zeta_tx_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ type intoAny interface {
}

// EnableVerificationFlags enables the verification flags for the lightclient module
func (zts ZetaTxServer) EnableVerificationFlags(account string) error {
func (zts ZetaTxServer) EnableVerificationFlags(account string, chainIDList []int64) error {
// retrieve account
acc, err := zts.clientCtx.Keyring.Key(account)
if err != nil {
Expand All @@ -262,10 +262,9 @@ func (zts ZetaTxServer) EnableVerificationFlags(account string) error {
return err
}

_, err = zts.BroadcastTx(account, lightclienttypes.NewMsgUpdateVerificationFlags(
_, err = zts.BroadcastTx(account, lightclienttypes.NewMsgEnableVerificationFlags(
addr.String(),
true,
true,
chainIDList,
))

return err
Expand Down
4 changes: 2 additions & 2 deletions pkg/chains/chain.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ func IsZetaChain(chainID int64) bool {
return ChainIDInChainList(chainID, ChainListByNetwork(Network_zeta))
}

// IsHeaderSupportedEvmChain returns true if the chain is an EVM chain supporting block header-based verification
func IsHeaderSupportedEvmChain(chainID int64) bool {
// IsHeaderSupportedChain returns true if the chain is supports block header-based verification
kingpinXD marked this conversation as resolved.
Show resolved Hide resolved
func IsHeaderSupportedChain(chainID int64) bool {
return ChainIDInChainList(chainID, ChainListForHeaderSupport())
}

Expand Down
6 changes: 3 additions & 3 deletions pkg/chains/chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func TestIsEVMChain(t *testing.T) {
}
}

func TestIsHeaderSupportedEVMChain(t *testing.T) {
func TestIsHeaderSupportedChain(t *testing.T) {
tests := []struct {
name string
chainID int64
Expand All @@ -197,13 +197,13 @@ func TestIsHeaderSupportedEVMChain(t *testing.T) {
{"Sepolia Testnet", SepoliaChain.ChainId, true},
{"BSC Testnet", BscTestnetChain.ChainId, true},
{"BSC Mainnet", BscMainnetChain.ChainId, true},
{"Non-EVM", BtcMainnetChain.ChainId, false},
{"BTC", BtcMainnetChain.ChainId, true},
{"Zeta Mainnet", ZetaChainMainnet.ChainId, false},
}

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
require.Equal(t, tt.want, IsHeaderSupportedEvmChain(tt.chainID))
require.Equal(t, tt.want, IsHeaderSupportedChain(tt.chainID))
})
}
}
Expand Down
Loading
Loading