Commit Graph

3808 Commits

Author SHA1 Message Date
Nikhil Suri 2cce7a5b04
Update wormchain CODEOWNERS (#4094) 2024-08-28 08:57:24 -07:00
Bruce Riley 6ea6c1a399 Node: Fix repair_solana tool 2024-08-27 15:06:17 -06:00
Bruce Riley 954723852a Node: Solana watcher cleanup 2024-08-27 15:06:17 -06:00
bruce-riley e66e62f722
Node: Enable batching and gossip split in tilt (#4097) 2024-08-26 14:34:35 -05:00
bruce-riley 43c96f9464
Node: Processor benchmarking (#4075) 2024-08-26 12:59:21 -05:00
bruce-riley 92b54bb749
Node: DB not logging to Grafana (#4093)
* Node: DB not logging to Grafana

* Code review rework

* Remove unnecessary variable
2024-08-26 09:41:29 -05:00
Dirk Brink 78771ff529
node: Fix + update governor manual tokens list (#4086) 2024-08-23 16:08:31 -04:00
bruce-riley a3284d66d5
Node: Add cutover feature flags to heartbeats (#4092) 2024-08-21 11:48:41 -06:00
Edgardo Quiroga 6ec30f53a4 docs: instructions for deploying a wormchain validator added. 2024-08-21 09:05:36 -04:00
Evan Gray c60e755908 ethereum/forge-test: clean up warnings 2024-08-20 16:30:34 -06:00
Evan Gray 750645b350 ethereum: rm truffle 2024-08-20 16:30:34 -06:00
derpy-duck 2f4811c190 ethereum: migrate truffle tests to forge 2024-08-20 16:30:34 -06:00
bruce-riley 088c18b39a
Node/P2P: Add WithComponents (#4089) 2024-08-20 17:27:19 -05:00
Dirk Brink c5241ad817
node: Governor token list update (#4077)
* node: governor token list update

* Manually fix Moonbeam USDC price

---------

Co-authored-by: djb15 <djb15@users.noreply.github.com>
2024-08-20 12:24:20 -07:00
bruce-riley f27ee2da4a
Node/CCQ: Add rate limiting to proxy (#4080)
* Node/CCQ: Add rate limiting

* Code review rework

* Node/CCQ: Make burst size default to one not zero

* Tweak description of burst size in doc
2024-08-19 15:16:17 -05:00
bruce-riley 530fea1b06
Eth: Make registerAllChainsOnTokenBridge not require worm support (#4083) 2024-08-16 14:53:49 -05:00
Bruce Riley 22eecc6b72 Code review rework 2024-08-16 13:44:23 -04:00
Bruce Riley b06132d638 Fix governor test for Snax 2024-08-16 13:44:23 -04:00
Bruce Riley 092cbfcc62 Deploy Snaxchain mainnet 2024-08-16 13:44:23 -04:00
Evan Gray 61c44ca184 github: fix codeowners errors 2024-08-16 11:02:58 -04:00
Dirk Brink dfcad36c92 Github: Update Governor code owners 2024-08-16 10:02:13 -04:00
John Saigle 31a9a3e94f node/test: fix incorrect control flow in governed assets test
The control flow for this function should be `continue` rather than
`return`, otherwise the entire test will exit early when evaluating an
ignored chain rather than skip the current iteration as intended.

In practice, this test just so happened to work OK because:
- the only ignored chain is Wormchain with ID 3104
- 3104 is the last entry in the slice
- iteration over slices is deterministic
And so the test always returned early when hitting Wormchain, but
Wormchain is the last item in the list.
2024-08-16 08:05:30 -04:00
bruce-riley 8b9f9b55f4
Node: Unknown guardian tweaks (#4076)
* Node: Unknown guardian tweaks

* Code review rework
2024-08-14 15:43:20 -05:00
Dirk Brink 5a1e2355b9 node: Update governor manual tokens list 2024-08-14 08:36:32 -07:00
bruce-riley 9bd569d9db
Node: Observation batching with override (#4066)
* Node: Observation batching with override

* Add cutover time

* Code review rework
2024-08-13 11:49:33 -05:00
bruce-riley 7bef236c96
Node/CCQ: Add command to verify the permissions file (#4071) 2024-08-12 15:13:42 -05:00
bruce-riley cb94143e3f
Node/CCQ: Solana should retry block read (#4068)
* Node/CCQ: Solana should retry block read

* Code review rework
2024-08-12 09:54:36 -05:00
Dirk Brink b150623df4 node: governor token list update 2024-08-12 09:41:23 -04:00
André Claro 6daeb04608
client/js: update Acala, add Snaxchain support
* client/js: update wormhole-foundation/sdk (0.9.0) and certusone/wormhole-sdk (0.10.17)

* client/js: update acala testnet chain id (597)

* clients/js: add Snaxchain

---------

Co-authored-by: Paul Noel <panoel007@gmail.com>
2024-08-09 11:33:46 -04:00
bruce-riley 343d21316b
Node/CCQ: Proxy log stats on timeout (#4067) 2024-08-08 08:43:22 -05:00
bruce-riley 46bcc70e95
Node: Log fatal not making it to grafana (#4063) 2024-08-06 14:54:53 -05:00
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