Commit Graph

3877 Commits

Author SHA1 Message Date
bruce-riley 7bf815e79c
Node/CCQ: Allow address wildcard (#4062)
* Node/CCQ: Allow address wildcard

* Code review rework

* Update the docs
2024-08-06 14:54:44 -05:00
John Saigle fc9ba90425
node: Add Makefile test target for arm64 (#4057)
* node: Add Makefile test target for arm64

* node: Fix comment in Makefile
2024-08-05 22:08:10 -04:00
Evan Gray c381d6b272 sdk: add Mantle and X Layer relayer addresses 2024-08-05 15:07:26 -04:00
bruce-riley 7e205e1e3a
Node/P2P: Allow disabling subscribing to VAAs (#4019) 2024-08-05 13:21:22 -05:00
bruce-riley e351236967
Node: Processor performance improvements (#3988)
* Node: Processor db write separation

* Handle additional update while writing to db

* Move the broadcasting of signed VAA to the worker

* Tweak signaturesToVaaFormat

* Eliminate map look up in HandleQuorum

* Remove unnecessary check for already submitted

* Use BadgerDB batch API to store VAAs

* Don't move broadcasting to worker

* Speed up processing our own observation

* Simplify handleMessage and broadastSignature

* Code review rework
2024-08-05 11:28:41 -05:00
bruce-riley d3533aa2ca
Node: Gossip Topic Split (#4000)
* WIP: topic split

* Add cutover support

* Remove measurements that were moved to PR#3988

* Code review rework

* Code review rework

---------

Co-authored-by: Evan Gray <battledingo@gmail.com>
2024-08-05 11:28:10 -05:00
Evan Gray c2496cd2af ci: bump foundry to 2024-08-04 nightly 2024-08-04 12:29:56 -04:00
bruce-riley 83c5e498c3
Terra2: Use "docker compose", not docker-compose (#4056) 2024-08-02 15:00:29 -05:00
André Claro 71fd49642d
sdk: update karura testnet contracts and tokenBridgeVAA (#4055)
* env: add slow option to FORGE_ARGS on karura testnet

* vaa: update karura testnet tokenBridgeVAA

* karura: update karura testnet contracts
2024-08-02 14:22:55 -04:00
John Saigle 6b72e576d5
node: Fix missing tokens in generated token list due to outdated SDK (#4053)
- The script used to generate the updated token list was using an
  outdated version of the TS SDK. This caused newer chains to return a
  result of 'undefined' when they were converted to the custom ChainId
  type as they were not encluded in the enum of valid chain IDs
- Update the local SDK version used by the script via `npm update @certusone/wormhole-sdk`
- Adds additional logging to the script to help troubleshoot similar
  errors in the future
2024-08-02 11:50:16 -04:00
bruce-riley f20a42eb42
Node: Gateway relayer can ignore already attested return (#4052) 2024-08-02 09:28:23 -05:00
bruce-riley bc9ed5163c
CI: query-sdk-ci fails intermittently (#4046)
* CI: query-sdk-ci fails intermittently

* Make query-ci wait for more peers

* Add new key for accountant on guardian-0

* Force to run on instance-2

* Undo instance change

* Change accountant key for guardian 1 to ensure it's unique

* Restore log levels

* Fix solana query tests

* Enable logging

* Remove now-redundant query-ci tests
2024-08-01 11:03:17 -05:00
Paul Noel 9f98901d2d clients/js: move towards sdkV2 2024-08-01 09:46:42 -05:00
Evan Gray eebc7ae883 ci: reveal sdk/js-query test errors 2024-07-31 17:00:35 -04:00
bruce-riley 3e13e79c66
ci: fix node tests fail intermittently (#4044) 2024-07-31 09:19:59 -05:00
John Saigle caf6346a27
node: Update token entries for devnet and testnet configs (#4045)
* node: Update token entries for devnet and testnet configs

The previous entries had incorrect CoinGecko symbol information. This
commit updates the values in these config files to use the same data as
their counterparts in the generated token list for mainnet.

* node: revert devnet/testnet token address changes
2024-07-30 23:04:17 -04:00
Kaku 1c06d70082
wormchain: refresh interchaintest (#3991)
* Add interchaintest tests to wormchain

* chore: refreshed icts

* chore: updated wasm binaries for ict

---------

Co-authored-by: Steve Miskovetz <steve.miskovetz@gmail.com>
2024-07-30 14:03:43 -04:00
Charlton Liv 10184638ba
wormchain: change ioutil to io and os (#3970)
* ioutil to io and os

* io to os
2024-07-30 13:24:40 -04:00
bruce-riley b90ea59b64
Tilt: More multiple guardian changes (#4043) 2024-07-30 10:58:51 -05:00
John Saigle 5042ff14d3
node: Flow cancel enhancements and bug fixes (#4016)
* node: Fix issue where transfers that were loaded from the DB did not add
a flow-cancel transfer on the TargetChain

Flow-canceling is done in the `ProcessMsgForTime` loop when a new
message occurs. However, this was not done when a node restarted and
reloaded transfers from the past 24 hours. As a result it was possible
for the node to calculate a result that showed that the outgoing
transfers for an emitter chain exceeded the daily limit. In effect this
is true but only with the condition that there was incoming flow to
allow this to happen. This appeared to violate an invariant and so the
node did not start properly.

node: Add unit tests when reloading flow cancel transactions from the
database

node: fix lint errors in governor_test.go

* node: Add a command-line flag to enable or disable flow-canceling on restart

Added a command-line flag to enable or disable flow-canceling when
starting the node. This should allow Guardians to disable flow canceling
in the case of future bugs or during a security incident. This should
prevent the need to rollback to earlier Guardian versions. (@mdulin2 )

* node: Use deterministic iteration order over chains when changing Governor state

- Adds a field that stores a sorted slice of chain IDs to the governor.
- Use this field to iterate in a determinstic order when performing
  actions that change the state of the Governor
- This should help Guardians reach a more similar view of the Governor
  in scenarios where iteration order might impact whether a transfer is
  queued. (This is relevant especially in the case of Flow Canceling)
- Cases where only a single VAA is being modified were not changed.
  Iteration order should not matter here and determinstic order may
  may worse for performance when searching for a particular element.

* node: Fix tokenEntry when checking flow cancel for pending transfers

(Squash and merge bug fix from PR #4001)
Similar to a previous issue in the function `ProcessMsgForTime`, the
tokenEntry was not being generated properly.
This should result in queued "small transfers" being able to flow cancel
when they are released from the queue.
Also adds a comment on the CheckedInt64 function to indicate what its
error states mean and when they occur.

Add comments and change variable names for governor_monitoring
- Add function comments to explain what they do and what their error
  states mean
- Adds governor logging to error cases
- Change variable names in publishStatus function. `value` was used
  first to indicate the "governor usage" and then reused to indicate the
  remaining available notional value for a chain. This refactor tries to
  make it clear that these are different concepts

Add unit test for flow cancelling when a pending transfer is
released

- Add a unit test to ensure that, when a pending transfer is released,
  it also does flow-cancelling on the TargetChain (previously we had a
  bug here)
- Add documentation for CheckPendingForTime to clarify that it has
  side-effects

* node: Modify error handling for CheckPending method in the Governor

Previous rollouts of the Flow Cancel feature contained issues when
calculating the Governor usage when usage was near the daily limit. This
caused an invariant to be violated. However, this was propagated to the
processor code and resulted in the processor restarting the entire
process. Instead, the Governor should simply fail-closed and report that
there is no remaining capacity, causing further VAAs to be queued until
the usage diminishes over time.
The circumstances leading to the invariant violations are not addressed
in this commit. Instead this commit reworks the way errors are handled
by the CheckPending, making careful choices about when the process
should or should not be killed.

- Change "invariant" error handling: instead of causing the process to
  die, log an error and skip further for a single chain while allowing
  processing for other chains to continue
- Remove 'invariant error' in TrimAndSumValueForChain as it can occur
  somewhat regularly with the addition of the flow cancel feature
- Return dailyLimit in error condition rather than 0 so that future
  transfers will be queued
- Do not cap the sum returned from TrimAndSumValueForChain: instead
  allow it to exceed the daily limit.
- Modify unit tests to reflect this
- Add unit tests for overflow/underflow scenarios in the TrimAndSumValue
  functions
- Change other less severe error cases to log warnings instead of
  returning errors.
- Generally prevent flow-cancel related issues from affecting normal
  Governor operations. Instead the flow cancel transfers should simply
  not be populated and thus result in "GovernorV1" behavior.
- Add documentation to CheckPendingForTime to explain the dangers of
  returning an error
- Reword error messages to be more precise and include more relevant
  fields. Add documentation explaining when the process should and
  should not die

* node: Add additional metrics for Governor status

Modify the monitoring code and protobuf files to make the status of the
Governor more legible when flow-canceling is enabled. This can be
consumed by Wormhole Dashboard to better reflect the effects of flow
cancelling.

On the level of the Governor:
- whether the Guardian has enabled flow cancel or not

On the level of the Governor's emitters, reports 24h metrics for:
- net value that has moved across the chain
- total outgoing amount
- total incoming flow cancel amount

Currently big transfers are not accounted for as they do not affect the
Governor's capacity. (They are always queued.)

* node: Add new flow cancel parameter to Governor in tests

* node: goimports formatting

* node: Bug fix in changes to governor monitoring

- Fix issue where stats weren't being populated unless flow cancel was
  enabled
- Fix wrong return value used in unit test
- Fix typo in proto variable name
- Move sorting outside of a for loop for efficiency
- Restore unit test that was deleted in the process of rebasing

* node: address prealloc lint error in governor code

* node: Fix "generated proto differs from committed proto"

* node: Fix bug in chainIds allocation

- This resolves a mistake with allocating the chainIds in the governor
initialization that causes nil entries in the slice.
- Add unit tests to ensure that the chainIds slice matches the chains
  map
- Add unit test to ensure that TrimAndSumValueForChain checks for a nil
  pointer to avoid panics

* node: Fix returning nil on err in governor_test.go

* node: Cleanup comments in governor code

* node: fix governor comment

* node: enable flow cancel in governor_monitoring tests

* node: Add flow cancel information to p2p heartbeat features

* node: Remove outdated comment from governor

* node: Upgrade logs to Error from Warn when reloading transfers from
database

* node: Enable flow cancel in check_query test function

* node: Cleanup comments and redundant code in governor

* node: Refactor how the flow cancel token list gets populated

- Only populate the flow cancel tokens list once
- Change default behavior to use an empty flow cancel assets list, rather
than first populating the list and then clearing it
- Refactor the logic around enabling the flow cancel token field for
  governed assets. Now it only executes if flow cancel is enabled,
  rather than operating over an empty slice when flow cancel is disabled
- Modify devnet/testnet configs so that they are responsible for
  returning the correct list of flow cancelling assets

* node: Add unit test for flow cancel feature flag

* node: Move new Governor status proto fields from Emitter to Chain

* node: lint governor_monitoring

---------

Co-authored-by: Maxwell Dulin <strikeout@maxwells-mbp.lan>
2024-07-30 10:27:05 -04:00
John Saigle 038d76b10c
node/cleanup: Add some documentation and an ignore-list to mainnet_chains_test.go (#4038)
* node: Add test to ensure that governed chains also have governed assets

* node: Update test that checks if governed chains have governed assets

- Verify tokens against the Governor's mainnet chains rather than
  querying against the values configured in the SDK. (These should be
  the same but it avoid a package import and ties in more closely to the
  Governor's functionality.)
- Add test message on failure to help with debugging
- Remove outdated exceptions to existing the unit test
- Merge test from previous commit into a similar unit test that already
  existed

* node: Revert chainList() so that its scope is private
2024-07-30 10:26:46 -04:00
Bruce Riley 30e40426f8 Node: Minor logging changes 2024-07-30 09:46:49 -04:00
André Claro a80d3079ba acala/karura: update testnet environments 2024-07-30 09:37:40 -04:00
André Claro 6be0660960 acala: update testnet contracts and VAA due to network reset 2024-07-30 07:04:52 -04:00
John Saigle 03be0c9310 node: Fix lint violation in hack/repair_eth/repair_eth.go 2024-07-29 23:31:00 -04:00
Evan Gray 37e5f13d15 node/evm: retry tx once before timing out 2024-07-29 17:27:58 -04:00
bruce-riley 984a4e78e5
Tilt: Reenable query tests (#4040) 2024-07-29 14:14:47 -05:00
Bruce Riley 6622d759a9 Tilt: Various fixes 2024-07-29 14:45:26 -04:00
Maxwell "ꓘ" Dulin cf2c439598
Input Validation on Generated Token List (#4026)
* Add input validation on the generated go code

* Change denylist and comment associated with it

* Add changes to the text file and more restrictive chars

* Removing unnecessary async code

---------

Co-authored-by: Maxwell Dulin <strikeout@maxwells-mbp.lan>
Co-authored-by: Maxwell Dulin <strikeout@Maxwells-MacBook-Pro.local>
2024-07-29 09:28:04 -07:00
bruce-riley f3e6a9398e
Deploy Snaxchain to testnet (#4035)
* Deploy Snaxchain to testnet

* Code review rework
2024-07-25 13:19:26 -05:00
Csongor Kiss 5995fd65b5 cosmwasm: add missing feature flags in Cargo.toml files
These flags were previously not declared, which is now reported by
clippy.
Also fixed the docstring indentation, which clippy also complains about now.
2024-07-25 11:23:35 -04:00
Evan Gray 81d1db57cc node: devcontainer support 2024-07-24 11:00:51 -04:00
yukionfire 450b41c891
chore(node/cmd): replace `fmt.Errorf` without parameters with `errors.New` (#4030) 2024-07-24 09:05:48 -05:00
Evan Gray cdc23d152a sdk/js-query: add signaturesToSolanaArray util 2024-07-24 10:03:07 -04:00
John Saigle 1f1a6df757 docs: Typo in CONTRIBUTING 2024-07-19 11:36:57 -04:00
John Saigle 9494a96acb docs: Update CONTRIBUTING.md to forbid low-effort dependency changes 2024-07-19 11:36:57 -04:00
Paul Noel 29de12360e node: remove sui websocket from watcher 2024-07-19 08:23:56 -05:00
Adam f6eba05ebc
Update issue templates (#4024)
* Update issue templates

removed unused tracker, split bug reports into guardian vs non-guardian

* Update bug_report_guardian.md

smaller guardian bug report template
2024-07-18 20:12:32 +01:00
djb15 80c26eb872 node: governor token list update 2024-07-17 08:01:18 -07:00
bruce-riley 26c7ce8fea
Deploy Berachain V2 testnet (#4020) 2024-07-15 14:56:48 -05:00
bruce-riley d1b1aca728
Node/Acct: Remove obsolete pending transfers from db (#4003) 2024-07-15 10:44:30 -05:00
Dirk Brink 6236a9a6cb node/hack: Update Sui RPC endpoint 2024-07-09 11:48:47 -07:00
bruce-riley f0d6a96ebe
Node/EVM: Add more cases to canRetryGetBlockTime (#4010)
* Node/EVM: Add more cases to canRetryGetBlockTime

* Code review rework
2024-07-05 13:45:28 -05:00
bruce-riley 2eb5cca8e7
Node/GWRelayer: Should check emitter for ibc transfers (#4007) 2024-07-04 11:33:41 -05:00
John Saigle 7c6e4c597c
node: Fix issue where transfers that were loaded from the DB did not add a flow-cancel transfer on the TargetChain (#4002)
node: Fix issue where transfers that were loaded from the DB did not add
a flow-cancel transfer on the TargetChain

Flow-canceling is done in the `ProcessMsgForTime` loop when a new
message occurs. However, this was not done when a node restarted and
reloaded transfers from the past 24 hours. As a result it was possible
for the node to calculate a result that showed that the outgoing
transfers for an emitter chain exceeded the daily limit. In effect this
is true but only with the condition that there was incoming flow to
allow this to happen. This appeared to violate an invariant and so the
node did not start properly.

Add unit tests when reloading flow cancel transactions from the
database
2024-07-03 15:15:35 -04:00
bruce-riley d146f82bca
Node: p2p.Run interface change (#3996)
* Node: p2p.Run interface change

* Guardian should be able to set disableHeartbeatVerify
2024-07-01 10:01:13 -05:00
djb15 fdbfc0b085 node: governor token list update 2024-07-01 09:13:06 -04:00
Jason Matthyser 32f3b788ec
docs: update governor docs to reflect reset-release-timer change (#3999)
* docs: update governor docs to reflect reset-release-timer change

* docs: fix spelling mistake in governor docs

---------

Co-authored-by: Jason Matthyser <jason@asymmetric.re>
2024-06-28 21:06:46 +02:00
Nikhil Suri d100515609
node: Add emitters for Lido wstETH NTT deployment to NTT Accountant mainnet tracking (#3997) 2024-06-26 13:54:26 -04:00
John Saigle dc3a6cf804
node: Fix bug in flow cancel mechanism where the wrong values were being used for tokenEntry (#3990)
* node: add more unit tests for flow cancel

* node: Fix tokenEntry indexing issue in Governor flow cancel logic

- Indexes the tokenEntry for flow cancel tokens properly (using the
  token's origin chain and origin address
- Add many more tests to check flow cancel logic in more detail and at
  the resolution of the ProcessMsgForTime method.

Big thanks to Max for helping to debug the issue and the unit tests.

* node: add check to ensure the governor usage is not zero

* node: Change flow cancel test so that origin and emitter chain are different

* node: Add unit test for partial flow cancel

Add additional test for flow cancel mechanism where the numbers do not
cleanly cancel out.

* node: fix lint issues in governor test
2024-06-24 11:00:38 -04:00