@polkadot/rpc-augment 9.6.2 → 9.8.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/README.md +1 -1
- package/augment/jsonrpc.d.ts +2 -3
- package/cjs/packageInfo.js +1 -1
- package/package.json +6 -6
- package/packageInfo.js +1 -1
package/README.md
CHANGED
package/augment/jsonrpc.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type { BeefySignedCommitment } from '@polkadot/types/interfaces/beefy';
|
|
|
9
9
|
import type { BlockHash } from '@polkadot/types/interfaces/chain';
|
|
10
10
|
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
|
|
11
11
|
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
|
|
12
|
-
import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult,
|
|
12
|
+
import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
|
|
13
13
|
import type { BlockStats } from '@polkadot/types/interfaces/dev';
|
|
14
14
|
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
|
|
15
15
|
import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
|
|
@@ -158,11 +158,10 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
|
|
|
158
158
|
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
|
|
159
159
|
* Instantiate a new contract
|
|
160
160
|
**/
|
|
161
|
-
instantiate: AugmentedRpc<(request:
|
|
161
|
+
instantiate: AugmentedRpc<(request: InstantiateRequestV1 | {
|
|
162
162
|
origin?: any;
|
|
163
163
|
value?: any;
|
|
164
164
|
gasLimit?: any;
|
|
165
|
-
storageDepositLimit?: any;
|
|
166
165
|
code?: any;
|
|
167
166
|
data?: any;
|
|
168
167
|
salt?: any;
|
package/cjs/packageInfo.js
CHANGED
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./cjs/detectPackage.js"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
-
"version": "9.
|
|
23
|
+
"version": "9.8.1",
|
|
24
24
|
"main": "./cjs/index.js",
|
|
25
25
|
"module": "./index.js",
|
|
26
26
|
"types": "./index.d.ts",
|
|
@@ -70,10 +70,10 @@
|
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
|
-
"@babel/runtime": "^7.20.
|
|
74
|
-
"@polkadot/rpc-core": "9.
|
|
75
|
-
"@polkadot/types": "9.
|
|
76
|
-
"@polkadot/types-codec": "9.
|
|
77
|
-
"@polkadot/util": "^10.1.
|
|
73
|
+
"@babel/runtime": "^7.20.1",
|
|
74
|
+
"@polkadot/rpc-core": "9.8.1",
|
|
75
|
+
"@polkadot/types": "9.8.1",
|
|
76
|
+
"@polkadot/types-codec": "9.8.1",
|
|
77
|
+
"@polkadot/util": "^10.1.12"
|
|
78
78
|
}
|
|
79
79
|
}
|
package/packageInfo.js
CHANGED
|
@@ -7,5 +7,5 @@ export const packageInfo = {
|
|
|
7
7
|
name: '@polkadot/rpc-augment',
|
|
8
8
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
9
9
|
type: 'esm',
|
|
10
|
-
version: '9.
|
|
10
|
+
version: '9.8.1'
|
|
11
11
|
};
|