hashgraph / hashgraph/hedera-sdk-reference
Missing reference for AccountAllowanceDeleteTransaction
- Dominant language
- HTML
- Stars
- 7
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
The only non-deprecated method seems to be `deleteAllTokenNftAllowances`.
---
Java - https://github.com/hashgraph/hedera-sdk-java/blob/main/sdk/src/main/java/com/hedera/hashgraph/sdk/AccountAllowanceDeleteTransaction.java#L147
```java
AccountAllowanceDeleteTransaction deleteAllTokenNftAllowances(
NftId nftId,
AccountId ownerAccountId
) { }
```
JavaScript - https://github.com/hashgraph/hedera-sdk-js/blob/main/src/account/AccountAllowanceDeleteTransaction.js#L121
```ts
function deleteAllTokenNftAllowances(
nftId: NftId,
ownerAccountId: AccountId
): AccountAllowanceDeleteTransaction { }
```
Go - https://github.com/hashgraph/hedera-sdk-go/blob/main/account_allowance_delete_transaction.go#L85
```go
func (transaction *AccountAllowanceDeleteTransaction) DeleteAllTokenNftAllowances(
nftID NftID,
ownerAccountID *AccountID,
) *AccountAllowanceDeleteTransaction { }
```
Contributor guide
Assessment
This issue has not been assessed yet.