@bitgo/account-lib 2.20.0-rc.20 → 2.20.0-rc.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/src/coin/eth/utils.d.ts +0 -1
  3. package/dist/src/coin/eth/utils.d.ts.map +1 -1
  4. package/dist/src/coin/hbar/iface.d.ts +26 -0
  5. package/dist/src/coin/hbar/iface.d.ts.map +1 -0
  6. package/dist/src/coin/hbar/iface.js +3 -0
  7. package/dist/src/coin/hbar/transaction.d.ts +14 -21
  8. package/dist/src/coin/hbar/transaction.d.ts.map +1 -1
  9. package/dist/src/coin/hbar/transaction.js +24 -34
  10. package/dist/src/coin/hbar/transactionBuilder.d.ts +22 -22
  11. package/dist/src/coin/hbar/transactionBuilder.d.ts.map +1 -1
  12. package/dist/src/coin/hbar/transactionBuilder.js +49 -29
  13. package/dist/src/coin/hbar/transferBuilder.d.ts +9 -9
  14. package/dist/src/coin/hbar/transferBuilder.d.ts.map +1 -1
  15. package/dist/src/coin/hbar/transferBuilder.js +16 -13
  16. package/dist/src/coin/hbar/utils.d.ts +47 -43
  17. package/dist/src/coin/hbar/utils.d.ts.map +1 -1
  18. package/dist/src/coin/hbar/utils.js +51 -49
  19. package/dist/src/coin/hbar/walletInitializationBuilder.d.ts +5 -5
  20. package/dist/src/coin/hbar/walletInitializationBuilder.d.ts.map +1 -1
  21. package/dist/src/coin/hbar/walletInitializationBuilder.js +30 -10
  22. package/dist/tsconfig.tsbuildinfo +1822 -4548
  23. package/package.json +12 -32
  24. package/dist/browser/bitgo-account-lib.js +0 -2
  25. package/dist/browser/bitgo-account-lib.js.LICENSE.txt +0 -337
  26. package/resources/hbar/protobuf/BasicTypes.proto +0 -424
  27. package/resources/hbar/protobuf/CryptoCreate.proto +0 -47
  28. package/resources/hbar/protobuf/CryptoTransfer.proto +0 -33
  29. package/resources/hbar/protobuf/Duration.proto +0 -28
  30. package/resources/hbar/protobuf/Timestamp.proto +0 -34
  31. package/resources/hbar/protobuf/Transaction.proto +0 -35
  32. package/resources/hbar/protobuf/TransactionBody.proto +0 -24
  33. package/resources/hbar/protobuf/TransactionContents.proto +0 -33
  34. package/resources/hbar/protobuf/hedera.d.ts +0 -4612
  35. package/resources/hbar/protobuf/hedera.js +0 -12192
@@ -1,33 +0,0 @@
1
- syntax = "proto3";
2
-
3
- package proto;
4
-
5
- /*-
6
- * ‌
7
- * Hedera Network Services Protobuf
8
- * ​
9
- * Copyright (C) 2018 - 2021 Hedera Hashgraph, LLC
10
- * ​
11
- * Licensed under the Apache License, Version 2.0 (the "License");
12
- * you may not use this file except in compliance with the License.
13
- * You may obtain a copy of the License at
14
- *
15
- * http://www.apache.org/licenses/LICENSE-2.0
16
- *
17
- * Unless required by applicable law or agreed to in writing, software
18
- * distributed under the License is distributed on an "AS IS" BASIS,
19
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20
- * See the License for the specific language governing permissions and
21
- * limitations under the License.
22
- * ‍
23
- */
24
-
25
- option java_package = "com.hederahashgraph.api.proto.java";
26
- option java_multiple_files = true;
27
-
28
- import "BasicTypes.proto";
29
-
30
- message SignedTransaction {
31
- bytes bodyBytes = 1; // TransactionBody serialized into bytes, which needs to be signed
32
- SignatureMap sigMap = 2; // The signatures on the body with the new format, to authorize the transaction
33
- }