Skip to content

Commit

Permalink
Expose content via Transaction (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
drohit-cb authored Nov 26, 2024
1 parent 43e5bfb commit 0e54da1
Show file tree
Hide file tree
Showing 17 changed files with 1,545 additions and 160 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## [0.0.14] - 2024-11-26

### Added

- Add a `Content` and `ToAddressID` method to `Transaction`.

## [0.0.13] - 2024-11-21

### Added
Expand Down
6 changes: 5 additions & 1 deletion gen/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,9 @@ Class | Method | HTTP request | Description
*SmartContractsAPI* | [**CreateSmartContract**](docs/SmartContractsAPI.md#createsmartcontract) | **Post** /v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts | Create a new smart contract
*SmartContractsAPI* | [**DeploySmartContract**](docs/SmartContractsAPI.md#deploysmartcontract) | **Post** /v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts/{smart_contract_id}/deploy | Deploy a smart contract
*SmartContractsAPI* | [**GetSmartContract**](docs/SmartContractsAPI.md#getsmartcontract) | **Get** /v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts/{smart_contract_id} | Get a specific smart contract deployed by address
*SmartContractsAPI* | [**ListSmartContracts**](docs/SmartContractsAPI.md#listsmartcontracts) | **Get** /v1/wallets/{wallet_id}/addresses/{address_id}/smart_contracts | List smart contracts deployed by address
*SmartContractsAPI* | [**ListSmartContracts**](docs/SmartContractsAPI.md#listsmartcontracts) | **Get** /v1/smart_contracts | List smart contracts
*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
*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
*StakeAPI* | [**FetchStakingRewards**](docs/StakeAPI.md#fetchstakingrewards) | **Post** /v1/stake/rewards/search | Fetch staking rewards
Expand Down Expand Up @@ -151,6 +152,7 @@ Class | Method | HTTP request | Description

## Documentation For Models

- [ABI](docs/ABI.md)
- [Address](docs/Address.md)
- [AddressBalanceList](docs/AddressBalanceList.md)
- [AddressHistoricalBalanceList](docs/AddressHistoricalBalanceList.md)
Expand Down Expand Up @@ -227,6 +229,7 @@ Class | Method | HTTP request | Description
- [SignatureCreationEventResult](docs/SignatureCreationEventResult.md)
- [SignedVoluntaryExitMessageMetadata](docs/SignedVoluntaryExitMessageMetadata.md)
- [SmartContract](docs/SmartContract.md)
- [SmartContractActivityEvent](docs/SmartContractActivityEvent.md)
- [SmartContractList](docs/SmartContractList.md)
- [SmartContractOptions](docs/SmartContractOptions.md)
- [SmartContractType](docs/SmartContractType.md)
Expand Down Expand Up @@ -262,6 +265,7 @@ Class | Method | HTTP request | Description
- [WebhookEventType](docs/WebhookEventType.md)
- [WebhookEventTypeFilter](docs/WebhookEventTypeFilter.md)
- [WebhookList](docs/WebhookList.md)
- [WebhookSmartContractEventFilter](docs/WebhookSmartContractEventFilter.md)
- [WebhookWalletActivityFilter](docs/WebhookWalletActivityFilter.md)


Expand Down
164 changes: 147 additions & 17 deletions gen/client/api_smart_contracts.go

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

Loading

0 comments on commit 0e54da1

Please sign in to comment.