Skip to content

Commit

Permalink
add package headers
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jun 5, 2024
1 parent 9a0ff28 commit a898c90
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions zetaclient/authz/authz_signer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package authz provides a signer object for transactions using grants
package authz

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/chains/bitcoin/observer/observer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package observer implements the Bitcoin chain observer
package observer

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/chains/bitcoin/signer/signer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package signer implements the ChainSigner interface for BTC
package signer

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/chains/evm/observer/observer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package observer implements the EVM chain observer
package observer

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/chains/evm/signer/signer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package signer implements the ChainSigner interface for EVM chains
package signer

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/chains/interfaces/interfaces.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package interfaces provides interfaces for clients and signers for the chain to interact with
package interfaces

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/compliance/compliance.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package compliance provides functions to check for compliance of cross-chain transactions
package compliance

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/config/config.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package config provides functions to load and save ZetaClient config
package config

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/context/app_context.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package context provides global app context for ZetaClient
package context

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/metrics/metrics.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package metrics provides metrics functionalities for the zetaclient
package metrics

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/orchestrator/orchestrator.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package orchestrator provides the orchestrator for orchestrating cross-chain transactions
package orchestrator

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/outboundprocessor/outbound_processor_manager.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package outboundprocessor provides functionalities to track outbound processing
package outboundprocessor

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/ratelimiter/rate_limiter.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package ratelimiter provides functionalities for rate limiting the cross-chain transactions
package ratelimiter

import (
Expand Down
2 changes: 2 additions & 0 deletions zetaclient/supplychecker/zeta_supply_checker.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Package supplychecker provides functionalities to check the total supply of Zeta tokens
// Currently not used in the codebase
package supplychecker

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/tss/tss_signer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tss provides the TSS signer functionalities for the zetaclient to sign transactions on external chains
package tss

import (
Expand Down
1 change: 1 addition & 0 deletions zetaclient/zetacore/client.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package zetacore provides functionalities for interacting with ZetaChain
package zetacore

import (
Expand Down

0 comments on commit a898c90

Please sign in to comment.