@taquito/wallet-connect 23.0.0-beta.0 → 23.0.0-beta.1
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.
- package/dist/lib/version.js +2 -2
- package/dist/types/types.d.ts +4 -2
- package/package.json +3 -3
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "23.0.0-beta.
|
|
6
|
+
"commitHash": "10b3de10de15ae68d47b1fca922d3129d2f79641",
|
|
7
|
+
"version": "23.0.0-beta.1"
|
|
8
8
|
};
|
package/dist/types/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RPCDelegateOperation, RPCRegisterGlobalConstantOperation, RPCOriginationOperation, RPCRevealOperation, RPCTransferOperation, RPCTransferTicketOperation, RPCIncreasePaidStorageOperation, RPCBallotOperation, RPCUpdateConsensusKeyOperation, RPCDrainDelegateOperation, RPCProposalsOperation, RPCSmartRollupAddMessagesOperation, RPCSmartRollupOriginateOperation, RPCSmartRollupOutboxMessageOperation, RPCFailingNoopOperation } from '@taquito/taquito';
|
|
1
|
+
import { RPCDelegateOperation, RPCRegisterGlobalConstantOperation, RPCOriginationOperation, RPCRevealOperation, RPCTransferOperation, RPCTransferTicketOperation, RPCIncreasePaidStorageOperation, RPCBallotOperation, RPCUpdateConsensusKeyOperation, RPCUpdateCompanionKeyOperation, RPCDrainDelegateOperation, RPCProposalsOperation, RPCSmartRollupAddMessagesOperation, RPCSmartRollupOriginateOperation, RPCSmartRollupOutboxMessageOperation, RPCFailingNoopOperation } from '@taquito/taquito';
|
|
2
2
|
export declare enum NetworkType {
|
|
3
3
|
MAINNET = "mainnet",
|
|
4
4
|
GHOSTNET = "ghostnet",
|
|
@@ -55,6 +55,8 @@ export interface IncreasePaidStorageParams extends Omit<RPCIncreasePaidStorageOp
|
|
|
55
55
|
}
|
|
56
56
|
export interface UpdateConsensusKeyParams extends Omit<RPCUpdateConsensusKeyOperation, WalletDefinedFields>, WalletOptionalFields {
|
|
57
57
|
}
|
|
58
|
+
export interface UpdateCompanionKeyParams extends Omit<RPCUpdateCompanionKeyOperation, WalletDefinedFields>, WalletOptionalFields {
|
|
59
|
+
}
|
|
58
60
|
export type BallotParams = Omit<RPCBallotOperation, WalletDefinedFields>;
|
|
59
61
|
export type DrainDelegateParams = Omit<RPCDrainDelegateOperation, WalletDefinedFields>;
|
|
60
62
|
export type ProposalsParams = Omit<RPCProposalsOperation, WalletDefinedFields>;
|
|
@@ -62,5 +64,5 @@ export type SmartRollupAddMessagesParams = Omit<RPCSmartRollupAddMessagesOperati
|
|
|
62
64
|
export type SmartRollupOriginateParams = Omit<RPCSmartRollupOriginateOperation, WalletDefinedFields>;
|
|
63
65
|
export type SmartRollupExecuteOutboxMessageParams = Omit<RPCSmartRollupOutboxMessageOperation, WalletDefinedFields>;
|
|
64
66
|
export type FailingNoopParams = Omit<RPCFailingNoopOperation, WalletDefinedFields>;
|
|
65
|
-
export type OperationParams = TransferParams | BallotParams | IncreasePaidStorageParams | UpdateConsensusKeyParams | OriginateParams | RevealParams | DelegateParams | RegisterGlobalConstantParams | DrainDelegateParams | ProposalsParams | SmartRollupAddMessagesParams | SmartRollupOriginateParams | SmartRollupExecuteOutboxMessageParams | FailingNoopParams | TransferTicketParams;
|
|
67
|
+
export type OperationParams = TransferParams | BallotParams | IncreasePaidStorageParams | UpdateConsensusKeyParams | UpdateCompanionKeyParams | OriginateParams | RevealParams | DelegateParams | RegisterGlobalConstantParams | DrainDelegateParams | ProposalsParams | SmartRollupAddMessagesParams | SmartRollupOriginateParams | SmartRollupExecuteOutboxMessageParams | FailingNoopParams | TransferTicketParams;
|
|
66
68
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/wallet-connect",
|
|
3
|
-
"version": "23.0.0-beta.
|
|
3
|
+
"version": "23.0.0-beta.1",
|
|
4
4
|
"description": "Walletconnect provider",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@taquito/taquito": "^23.0.0-beta.
|
|
69
|
+
"@taquito/taquito": "^23.0.0-beta.1",
|
|
70
70
|
"@walletconnect/modal": "^2.7.0",
|
|
71
71
|
"@walletconnect/sign-client": "^2.16.2",
|
|
72
72
|
"@walletconnect/types": "^2.16.2",
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"ts-toolbelt": "^9.6.0",
|
|
103
103
|
"typescript": "~5.5.4"
|
|
104
104
|
},
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "1469d6f0d55134a4b853598a2eec48e6f71b3da3"
|
|
106
106
|
}
|