@cityofzion/blockchain-service 1.24.0 → 3.0.0
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/interfaces.d.ts +2 -1
- package/package.json +1 -1
package/dist/interfaces.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ export type TTransactionTokenEvent = {
|
|
|
134
134
|
token?: TBSToken;
|
|
135
135
|
tokenType: 'generic' | (string & NonNullable<unknown>);
|
|
136
136
|
};
|
|
137
|
-
|
|
137
|
+
type TTransactionDefault = {
|
|
138
138
|
type: 'default';
|
|
139
139
|
};
|
|
140
140
|
export type TTransactionBridgeNeo3NeoX<N extends string> = {
|
|
@@ -456,3 +456,4 @@ export interface IWalletConnectService<N extends string> {
|
|
|
456
456
|
calculateRequestFee(args: TWalletConnectServiceRequestMethodParams<N>): Promise<string>;
|
|
457
457
|
[methodName: string]: any | TWalletConnectServiceRequestMethod<N>;
|
|
458
458
|
}
|
|
459
|
+
export {};
|