From 6f5b618d458ab696d452fa5350d3875ea13ece9d Mon Sep 17 00:00:00 2001 From: colindickson Date: Tue, 21 May 2024 14:35:27 -0400 Subject: [PATCH] update near proto to add NonRefundableTransferToExistingAccountKind ActionError --- proto/sf/near/type/v1/type.proto | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proto/sf/near/type/v1/type.proto b/proto/sf/near/type/v1/type.proto index 71c141c..b52a796 100644 --- a/proto/sf/near/type/v1/type.proto +++ b/proto/sf/near/type/v1/type.proto @@ -324,6 +324,7 @@ message ActionError { DelegateActionAccessKeyErrorKind delegate_action_access_key_error = 40; DelegateActionInvalidNonceKind delegate_action_invalid_nonce = 41; DelegateActionNonceTooLargeKind delegate_action_nonce_too_large = 42; + NonRefundableTransferToExistingAccountKind non_refundable_transfer_to_existing_account = 43; } } @@ -448,6 +449,10 @@ message DelegateActionNonceTooLargeKind{ uint64 upper_bound = 2; } +message NonRefundableTransferToExistingAccountKind { + string account_id = 1; +} + enum InvalidTxError { //todo: add more detail? InvalidAccessKeyError = 0; InvalidSignerId = 1;