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

feat: expose withdrawal credentials of ethereum validators #53

Merged
merged 1 commit into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Coinbase Go SDK Changelog

## [0.0.20] - 2025-02-27

### Added

- Add `WithdrawalCredentials` function to the `Validator` resource to help users get the withdrawl credentials for a given validator.

## [0.0.19] - 2025-02-11

### Added
Expand Down
6 changes: 4 additions & 2 deletions gen/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ Class | Method | HTTP request | Description
*SmartContractsAPI* | [**ReadContract**](docs/SmartContractsAPI.md#readcontract) | **Post** /v1/networks/{network_id}/smart_contracts/{contract_address}/read | Read data from a smart contract
*SmartContractsAPI* | [**RegisterSmartContract**](docs/SmartContractsAPI.md#registersmartcontract) | **Post** /v1/networks/{network_id}/smart_contracts/{contract_address}/register | Register a smart contract
*SmartContractsAPI* | [**UpdateSmartContract**](docs/SmartContractsAPI.md#updatesmartcontract) | **Put** /v1/networks/{network_id}/smart_contracts/{contract_address} | Update a smart contract
*SmartWalletsAPI* | [**BroadcastUserOperation**](docs/SmartWalletsAPI.md#broadcastuseroperation) | **Post** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_operation_id}/broadcast | Broadcast a user operation
*SmartWalletsAPI* | [**BroadcastUserOperation**](docs/SmartWalletsAPI.md#broadcastuseroperation) | **Post** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_op_hash}/broadcast | Broadcast a user operation
*SmartWalletsAPI* | [**CreateSmartWallet**](docs/SmartWalletsAPI.md#createsmartwallet) | **Post** /v1/smart_wallets | Create a new smart wallet
*SmartWalletsAPI* | [**CreateUserOperation**](docs/SmartWalletsAPI.md#createuseroperation) | **Post** /v1/smart_wallets/{smart_wallet_address}/networks/{network_id}/user_operations | Create a new user operation
*SmartWalletsAPI* | [**GetSmartWallet**](docs/SmartWalletsAPI.md#getsmartwallet) | **Get** /v1/smart_wallets/{smart_wallet_address} | Get smart wallet by address
*SmartWalletsAPI* | [**GetUserOperation**](docs/SmartWalletsAPI.md#getuseroperation) | **Get** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_operation_id} | Get user operation
*SmartWalletsAPI* | [**GetUserOperation**](docs/SmartWalletsAPI.md#getuseroperation) | **Get** /v1/smart_wallets/{smart_wallet_address}/user_operations/{user_op_hash} | Get user operation
*SmartWalletsAPI* | [**ListSmartWallets**](docs/SmartWalletsAPI.md#listsmartwallets) | **Get** /v1/smart_wallets | List smart wallets
*StakeAPI* | [**BuildStakingOperation**](docs/StakeAPI.md#buildstakingoperation) | **Post** /v1/stake/build | Build a new staking operation
*StakeAPI* | [**FetchHistoricalStakingBalances**](docs/StakeAPI.md#fetchhistoricalstakingbalances) | **Get** /v1/networks/{network_id}/addresses/{address_id}/stake/balances | Fetch historical staking balances
Expand Down Expand Up @@ -271,6 +271,8 @@ Class | Method | HTTP request | Description
- [TradeList](docs/TradeList.md)
- [Transaction](docs/Transaction.md)
- [TransactionContent](docs/TransactionContent.md)
- [TransactionLog](docs/TransactionLog.md)
- [TransactionReceipt](docs/TransactionReceipt.md)
- [TransactionType](docs/TransactionType.md)
- [Transfer](docs/Transfer.md)
- [TransferList](docs/TransferList.md)
Expand Down
32 changes: 16 additions & 16 deletions gen/client/api_smart_wallets.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions gen/client/model_create_user_operation_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions gen/client/model_ethereum_transaction.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 33 additions & 3 deletions gen/client/model_ethereum_validator_metadata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading