@pezkuwi/api-contract 16.5.5

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 (162) hide show
  1. package/README.md +3 -0
  2. package/build/Abi/index.d.ts +31 -0
  3. package/build/Abi/toLatestCompatible.d.ts +15 -0
  4. package/build/Abi/toV1.d.ts +3 -0
  5. package/build/Abi/toV2.d.ts +3 -0
  6. package/build/Abi/toV3.d.ts +3 -0
  7. package/build/Abi/toV4.d.ts +3 -0
  8. package/build/augment.d.ts +1 -0
  9. package/build/base/Base.d.ts +13 -0
  10. package/build/base/Blueprint.d.ts +24 -0
  11. package/build/base/Code.d.ts +22 -0
  12. package/build/base/Contract.d.ts +25 -0
  13. package/build/base/index.d.ts +3 -0
  14. package/build/base/mock.d.ts +3 -0
  15. package/build/base/types.d.ts +25 -0
  16. package/build/base/util.d.ts +16 -0
  17. package/build/bundle.d.ts +4 -0
  18. package/build/index.d.ts +2 -0
  19. package/build/packageDetect.d.ts +1 -0
  20. package/build/packageInfo.d.ts +6 -0
  21. package/build/promise/index.d.ts +13 -0
  22. package/build/promise/types.d.ts +3 -0
  23. package/build/rx/index.d.ts +13 -0
  24. package/build/rx/types.d.ts +3 -0
  25. package/build/types.d.ts +79 -0
  26. package/build/util.d.ts +5 -0
  27. package/package.json +39 -0
  28. package/src/Abi/Abi.spec.ts +235 -0
  29. package/src/Abi/index.ts +477 -0
  30. package/src/Abi/toLatestCompatible.spec.ts +219 -0
  31. package/src/Abi/toLatestCompatible.ts +52 -0
  32. package/src/Abi/toV1.ts +35 -0
  33. package/src/Abi/toV2.ts +58 -0
  34. package/src/Abi/toV3.ts +18 -0
  35. package/src/Abi/toV4.ts +21 -0
  36. package/src/augment.ts +4 -0
  37. package/src/base/Base.ts +52 -0
  38. package/src/base/Blueprint.ts +90 -0
  39. package/src/base/Code.spec.ts +47 -0
  40. package/src/base/Code.ts +142 -0
  41. package/src/base/Contract.ts +197 -0
  42. package/src/base/index.ts +6 -0
  43. package/src/base/mock.ts +48 -0
  44. package/src/base/types.ts +40 -0
  45. package/src/base/util.ts +56 -0
  46. package/src/bundle.ts +10 -0
  47. package/src/checkTypes.manual.ts +45 -0
  48. package/src/index.ts +6 -0
  49. package/src/mod.ts +4 -0
  50. package/src/packageDetect.ts +13 -0
  51. package/src/packageInfo.ts +6 -0
  52. package/src/promise/index.ts +28 -0
  53. package/src/promise/types.ts +7 -0
  54. package/src/rx/index.ts +28 -0
  55. package/src/rx/types.ts +7 -0
  56. package/src/test/compare/ink_v0_delegator.test.json +47 -0
  57. package/src/test/compare/ink_v0_dns.test.json +232 -0
  58. package/src/test/compare/ink_v0_erc20.test.json +253 -0
  59. package/src/test/compare/ink_v0_erc721.test.json +415 -0
  60. package/src/test/compare/ink_v0_flipper.test.json +9 -0
  61. package/src/test/compare/ink_v0_flipperBundle.test.json +9 -0
  62. package/src/test/compare/ink_v0_incrementer.test.json +9 -0
  63. package/src/test/compare/ink_v0_multisigPlain.test.json +562 -0
  64. package/src/test/compare/ink_v1_flipper.test.json +9 -0
  65. package/src/test/compare/ink_v1_psp22.test.json +531 -0
  66. package/src/test/compare/ink_v2_erc20.test.json +205 -0
  67. package/src/test/compare/ink_v2_flipper.test.json +9 -0
  68. package/src/test/compare/ink_v3_flipper.test.json +9 -0
  69. package/src/test/compare/ink_v3_traitErc20.test.json +205 -0
  70. package/src/test/compare/ink_v4_erc20Contract.test.json +253 -0
  71. package/src/test/compare/ink_v4_erc20Metadata.test.json +253 -0
  72. package/src/test/compare/ink_v4_flipperContract.test.json +155 -0
  73. package/src/test/compare/ink_v4_flipperMetadata.test.json +155 -0
  74. package/src/test/compare/ink_v5_erc20.test.json +370 -0
  75. package/src/test/compare/ink_v5_erc20AnonymousTransferMetadata.test.json +370 -0
  76. package/src/test/compare/ink_v5_erc20Contract.test.json +370 -0
  77. package/src/test/compare/ink_v5_erc20Metadata.test.json +370 -0
  78. package/src/test/compare/ink_v5_flipperContract.test.json +174 -0
  79. package/src/test/compare/ink_v5_flipperMetadata.test.json +174 -0
  80. package/src/test/compare/ink_v6_erc20Contract.test.json +418 -0
  81. package/src/test/compare/ink_v6_erc20Metadata.test.json +418 -0
  82. package/src/test/compare/solang_v0_ints256.test.json +9 -0
  83. package/src/test/compare/user_v0_assetTransfer.test.json +54 -0
  84. package/src/test/compare/user_v0_enumExample.test.json +303 -0
  85. package/src/test/compare/user_v0_recursive.test.json +27 -0
  86. package/src/test/compare/user_v0_withString.test.json +260 -0
  87. package/src/test/compare/user_v3_ask.test.json +71 -0
  88. package/src/test/compare/user_v4_events.test.json +1328 -0
  89. package/src/test/contracts/index.ts +20 -0
  90. package/src/test/contracts/ink/index.ts +13 -0
  91. package/src/test/contracts/ink/v0/accumulator.wasm +0 -0
  92. package/src/test/contracts/ink/v0/adder.wasm +0 -0
  93. package/src/test/contracts/ink/v0/delegator.json +252 -0
  94. package/src/test/contracts/ink/v0/delegator.wasm +0 -0
  95. package/src/test/contracts/ink/v0/dns.json +713 -0
  96. package/src/test/contracts/ink/v0/dns.wasm +0 -0
  97. package/src/test/contracts/ink/v0/erc20.json +704 -0
  98. package/src/test/contracts/ink/v0/erc20.wasm +0 -0
  99. package/src/test/contracts/ink/v0/erc721.json +1197 -0
  100. package/src/test/contracts/ink/v0/erc721.wasm +0 -0
  101. package/src/test/contracts/ink/v0/flipper.contract.json +107 -0
  102. package/src/test/contracts/ink/v0/flipper.json +106 -0
  103. package/src/test/contracts/ink/v0/flipper.wasm +0 -0
  104. package/src/test/contracts/ink/v0/incrementer.json +108 -0
  105. package/src/test/contracts/ink/v0/incrementer.wasm +0 -0
  106. package/src/test/contracts/ink/v0/index.ts +11 -0
  107. package/src/test/contracts/ink/v0/multisig_plain.json +1466 -0
  108. package/src/test/contracts/ink/v0/multisig_plain.wasm +0 -0
  109. package/src/test/contracts/ink/v0/subber.wasm +0 -0
  110. package/src/test/contracts/ink/v0/trait-flipper.json +103 -0
  111. package/src/test/contracts/ink/v0/trait-flipper.wasm +0 -0
  112. package/src/test/contracts/ink/v1/flipper.contract.json +111 -0
  113. package/src/test/contracts/ink/v1/index.ts +6 -0
  114. package/src/test/contracts/ink/v1/psp22_minter_pauser.contract.json +1722 -0
  115. package/src/test/contracts/ink/v2/erc20.contract.json +630 -0
  116. package/src/test/contracts/ink/v2/flipper.contract.json +103 -0
  117. package/src/test/contracts/ink/v2/index.ts +5 -0
  118. package/src/test/contracts/ink/v3/flipper.contract.json +105 -0
  119. package/src/test/contracts/ink/v3/index.ts +6 -0
  120. package/src/test/contracts/ink/v3/trait_erc20.contract.json +631 -0
  121. package/src/test/contracts/ink/v4/erc20.contract.json +1 -0
  122. package/src/test/contracts/ink/v4/erc20.json +821 -0
  123. package/src/test/contracts/ink/v4/erc20.wasm +0 -0
  124. package/src/test/contracts/ink/v4/flipper.contract.json +1 -0
  125. package/src/test/contracts/ink/v4/flipper.json +396 -0
  126. package/src/test/contracts/ink/v4/flipper.wasm +0 -0
  127. package/src/test/contracts/ink/v4/index.ts +7 -0
  128. package/src/test/contracts/ink/v5/erc20.contract.json +1 -0
  129. package/src/test/contracts/ink/v5/erc20.json +1025 -0
  130. package/src/test/contracts/ink/v5/erc20.wasm +0 -0
  131. package/src/test/contracts/ink/v5/erc20_anonymous_transfer.json +1025 -0
  132. package/src/test/contracts/ink/v5/flipper.contract.json +1 -0
  133. package/src/test/contracts/ink/v5/flipper.json +420 -0
  134. package/src/test/contracts/ink/v5/flipper.wasm +0 -0
  135. package/src/test/contracts/ink/v5/index.ts +8 -0
  136. package/src/test/contracts/ink/v6/erc20.contract.json +1 -0
  137. package/src/test/contracts/ink/v6/erc20.json +1081 -0
  138. package/src/test/contracts/ink/v6/erc20.polkavm +0 -0
  139. package/src/test/contracts/ink/v6/index.ts +5 -0
  140. package/src/test/contracts/solang/index.ts +7 -0
  141. package/src/test/contracts/solang/v0/index.ts +4 -0
  142. package/src/test/contracts/solang/v0/ints256.json +113 -0
  143. package/src/test/contracts/solang/v0/ints256.sol +13 -0
  144. package/src/test/contracts/solang/v0/ints256.wasm +0 -0
  145. package/src/test/contracts/user/index.ts +9 -0
  146. package/src/test/contracts/user/v0/assetTransfer.json +299 -0
  147. package/src/test/contracts/user/v0/assetTransfer.wasm +0 -0
  148. package/src/test/contracts/user/v0/enumExample.json +528 -0
  149. package/src/test/contracts/user/v0/enumExample.wasm +0 -0
  150. package/src/test/contracts/user/v0/index.ts +7 -0
  151. package/src/test/contracts/user/v0/recursive.contract.json +1 -0
  152. package/src/test/contracts/user/v0/withString.json +777 -0
  153. package/src/test/contracts/user/v3/ask.json +550 -0
  154. package/src/test/contracts/user/v3/index.ts +4 -0
  155. package/src/test/contracts/user/v4/events.contract.json +2990 -0
  156. package/src/test/contracts/user/v4/index.ts +4 -0
  157. package/src/test/contracts/util.ts +14 -0
  158. package/src/types.ts +98 -0
  159. package/src/util.ts +20 -0
  160. package/tsconfig.build.json +22 -0
  161. package/tsconfig.build.tsbuildinfo +1 -0
  162. package/tsconfig.spec.json +26 -0
@@ -0,0 +1,52 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ContractMetadataV4, ContractMetadataV5, ContractMetadataV6 } from '@pezkuwi/types/interfaces';
5
+ import type { Registry } from '@pezkuwi/types/types';
6
+ import type { ContractMetadataSupported } from './index.js';
7
+
8
+ import { v0ToV1 } from './toV1.js';
9
+ import { v1ToV2 } from './toV2.js';
10
+ import { v2ToV3 } from './toV3.js';
11
+ import { v3ToV4 } from './toV4.js';
12
+
13
+ // The versions where an enum is used, aka V0 is missing
14
+ // (Order from newest, i.e. we expect more on newest vs oldest)
15
+ export const enumVersions = ['V6', 'V5', 'V4', 'V3', 'V2', 'V1'] as const;
16
+
17
+ type Versions = typeof enumVersions[number] | 'V0';
18
+
19
+ type Converter = (registry: Registry, vx: any) => ContractMetadataSupported;
20
+
21
+ // Helper to convert metadata from one step to the next
22
+ function createConverter <I, O> (next: (registry: Registry, input: O) => ContractMetadataSupported, step: (registry: Registry, input: I) => O): (registry: Registry, input: I) => ContractMetadataSupported {
23
+ return (registry: Registry, input: I): ContractMetadataSupported =>
24
+ next(registry, step(registry, input));
25
+ }
26
+
27
+ export function v6ToLatestCompatible (_registry: Registry, v6: ContractMetadataV6): ContractMetadataV6 {
28
+ return v6;
29
+ }
30
+
31
+ export function v5ToLatestCompatible (_registry: Registry, v5: ContractMetadataV5): ContractMetadataV5 {
32
+ return v5;
33
+ }
34
+
35
+ export function v4ToLatestCompatible (_registry: Registry, v4: ContractMetadataV4): ContractMetadataV4 {
36
+ return v4;
37
+ }
38
+
39
+ export const v3ToLatestCompatible = /*#__PURE__*/ createConverter(v4ToLatestCompatible, v3ToV4);
40
+ export const v2ToLatestCompatible = /*#__PURE__*/ createConverter(v3ToLatestCompatible, v2ToV3);
41
+ export const v1ToLatestCompatible = /*#__PURE__*/ createConverter(v2ToLatestCompatible, v1ToV2);
42
+ export const v0ToLatestCompatible = /*#__PURE__*/ createConverter(v1ToLatestCompatible, v0ToV1);
43
+
44
+ export const convertVersions: [Versions, Converter][] = [
45
+ ['V6', v6ToLatestCompatible],
46
+ ['V5', v5ToLatestCompatible],
47
+ ['V4', v4ToLatestCompatible],
48
+ ['V3', v3ToLatestCompatible],
49
+ ['V2', v2ToLatestCompatible],
50
+ ['V1', v1ToLatestCompatible],
51
+ ['V0', v0ToLatestCompatible]
52
+ ];
@@ -0,0 +1,35 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ContractMetadataV0, ContractMetadataV1 } from '@pezkuwi/types/interfaces';
5
+ import type { Registry } from '@pezkuwi/types/types';
6
+
7
+ import { convertSiV0toV1 } from '@pezkuwi/types';
8
+ import { objectSpread } from '@pezkuwi/util';
9
+
10
+ interface Named {
11
+ name: unknown;
12
+ }
13
+
14
+ function v0ToV1Names (all: Named[]): unknown[] {
15
+ return all.map((e) =>
16
+ objectSpread({}, e, {
17
+ name: Array.isArray(e.name)
18
+ ? e.name
19
+ : [e.name]
20
+ }));
21
+ }
22
+
23
+ export function v0ToV1 (registry: Registry, v0: ContractMetadataV0): ContractMetadataV1 {
24
+ if (!v0.metadataVersion.length) {
25
+ throw new Error('Invalid format for V0 (detected) contract metadata');
26
+ }
27
+
28
+ return registry.createType('ContractMetadataV1', objectSpread({}, v0, {
29
+ spec: objectSpread({}, v0.spec, {
30
+ constructors: v0ToV1Names(v0.spec.constructors),
31
+ messages: v0ToV1Names(v0.spec.messages)
32
+ }),
33
+ types: convertSiV0toV1(registry, v0.types)
34
+ }));
35
+ }
@@ -0,0 +1,58 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { Text } from '@pezkuwi/types';
5
+ import type { ContractConstructorSpecV0, ContractEventSpecV0, ContractMessageSpecV0, ContractMetadataV1, ContractMetadataV2 } from '@pezkuwi/types/interfaces';
6
+ import type { Registry } from '@pezkuwi/types/types';
7
+
8
+ import { objectSpread } from '@pezkuwi/util';
9
+
10
+ type WithArgs = keyof typeof ARG_TYPES;
11
+
12
+ interface NamedEntry {
13
+ name: Text | Text[];
14
+ }
15
+
16
+ type GetArgsType<T extends WithArgs> = T extends 'ContractConstructorSpec'
17
+ ? ContractConstructorSpecV0
18
+ : T extends ContractEventSpecV0
19
+ ? ContractEventSpecV0
20
+ : ContractMessageSpecV0;
21
+
22
+ interface ArgsEntry <T extends WithArgs> extends NamedEntry {
23
+ args: GetArgsType<T>['args'][0][];
24
+ }
25
+
26
+ const ARG_TYPES = {
27
+ ContractConstructorSpec: 'ContractMessageParamSpecV2',
28
+ ContractEventSpec: 'ContractEventParamSpecV2',
29
+ ContractMessageSpec: 'ContractMessageParamSpecV2'
30
+ } as const;
31
+
32
+ function v1ToV2Label (entry: NamedEntry): { label: Text } {
33
+ return objectSpread({}, entry, {
34
+ label: Array.isArray(entry.name)
35
+ ? entry.name.join('::')
36
+ : entry.name
37
+ });
38
+ }
39
+
40
+ function v1ToV2Labels <T extends WithArgs> (registry: Registry, outType: T, all: ArgsEntry<T>[]): unknown[] {
41
+ return all.map((e) =>
42
+ registry.createType(`${outType}V2`, objectSpread(v1ToV2Label(e), {
43
+ args: e.args.map((a) =>
44
+ registry.createType(ARG_TYPES[outType], v1ToV2Label(a))
45
+ )
46
+ }))
47
+ );
48
+ }
49
+
50
+ export function v1ToV2 (registry: Registry, v1: ContractMetadataV1): ContractMetadataV2 {
51
+ return registry.createType('ContractMetadataV2', objectSpread({}, v1, {
52
+ spec: objectSpread({}, v1.spec, {
53
+ constructors: v1ToV2Labels(registry, 'ContractConstructorSpec', v1.spec.constructors),
54
+ events: v1ToV2Labels(registry, 'ContractEventSpec', v1.spec.events),
55
+ messages: v1ToV2Labels(registry, 'ContractMessageSpec', v1.spec.messages)
56
+ })
57
+ }));
58
+ }
@@ -0,0 +1,18 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ContractMetadataV2, ContractMetadataV3 } from '@pezkuwi/types/interfaces';
5
+ import type { Registry } from '@pezkuwi/types/types';
6
+
7
+ import { objectSpread } from '@pezkuwi/util';
8
+
9
+ export function v2ToV3 (registry: Registry, v2: ContractMetadataV2): ContractMetadataV3 {
10
+ return registry.createType('ContractMetadataV3', objectSpread({}, v2, {
11
+ spec: objectSpread({}, v2.spec, {
12
+ constructors: v2.spec.constructors.map((c) =>
13
+ // V3 introduces the payable flag on constructors, for <V3, it is always true
14
+ registry.createType('ContractConstructorSpecV3', objectSpread({}, c, { payable: true }))
15
+ )
16
+ })
17
+ }));
18
+ }
@@ -0,0 +1,21 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ContractMetadataV3, ContractMetadataV4 } from '@pezkuwi/types/interfaces';
5
+ import type { Registry } from '@pezkuwi/types/types';
6
+
7
+ import { objectSpread } from '@pezkuwi/util';
8
+
9
+ export function v3ToV4 (registry: Registry, v3: ContractMetadataV3): ContractMetadataV4 {
10
+ return registry.createType('ContractMetadataV4', objectSpread({}, v3, {
11
+ spec: objectSpread({}, v3.spec, {
12
+ constructors: v3.spec.constructors.map((c) =>
13
+ registry.createType('ContractConstructorSpecV4', objectSpread({}, c))
14
+ ),
15
+ messages: v3.spec.messages.map((m) =>
16
+ registry.createType('ContractMessageSpecV3', objectSpread({}, m))
17
+ )
18
+ }),
19
+ version: registry.createType('Text', '4')
20
+ }));
21
+ }
package/src/augment.ts ADDED
@@ -0,0 +1,4 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import '@pezkuwi/api-augment';
@@ -0,0 +1,52 @@
1
+ // Copyright 2017-2025 @polkadot/api authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ApiBase } from '@pezkuwi/api/base';
5
+ import type { ApiTypes, DecorateMethod } from '@pezkuwi/api/types';
6
+ import type { WeightV2 } from '@pezkuwi/types/interfaces';
7
+ import type { Registry } from '@pezkuwi/types/types';
8
+
9
+ import { isFunction } from '@pezkuwi/util';
10
+
11
+ import { Abi } from '../Abi/index.js';
12
+
13
+ export abstract class Base<ApiType extends ApiTypes> {
14
+ readonly abi: Abi;
15
+ readonly api: ApiBase<ApiType>;
16
+
17
+ protected readonly _decorateMethod: DecorateMethod<ApiType>;
18
+ protected readonly _isWeightV1: boolean;
19
+ protected readonly _isRevive: boolean;
20
+
21
+ constructor (api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, decorateMethod: DecorateMethod<ApiType>) {
22
+ if (!api || !api.isConnected || !api.tx) {
23
+ throw new Error('Your API has not been initialized correctly and is not connected to a chain');
24
+ }
25
+
26
+ this.abi = abi instanceof Abi
27
+ ? abi
28
+ : new Abi(abi, api.registry.getChainProperties());
29
+ this.api = api;
30
+ this._decorateMethod = decorateMethod;
31
+ this._isWeightV1 = !api.registry.createType<WeightV2>('Weight').proofSize;
32
+ this._isRevive = this.abi.isRevive;
33
+
34
+ if (this._isRevive) {
35
+ if (!api.tx.revive || !isFunction(api.tx.revive.instantiateWithCode) || api.tx.revive.instantiateWithCode.meta.args.length !== 6) {
36
+ throw new Error('The runtime does not expose api.tx.revive.instantiateWithCode with storageDepositLimit');
37
+ } else if (!api.call.reviveApi || !isFunction(api.call.reviveApi.call)) {
38
+ throw new Error('Your runtime does not expose the api.call.reviveApi.call runtime interfaces');
39
+ }
40
+ } else {
41
+ if (!api.tx.contracts || !isFunction(api.tx.contracts.instantiateWithCode) || api.tx.contracts.instantiateWithCode.meta.args.length !== 6) {
42
+ throw new Error('The runtime does not expose api.tx.contracts.instantiateWithCode with storageDepositLimit');
43
+ } else if (!api.call.contractsApi || !isFunction(api.call.contractsApi.call)) {
44
+ throw new Error('Your runtime does not expose the api.call.contractsApi.call runtime interfaces');
45
+ }
46
+ }
47
+ }
48
+
49
+ public get registry (): Registry {
50
+ return this.api.registry;
51
+ }
52
+ }
@@ -0,0 +1,90 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ApiBase } from '@pezkuwi/api/base';
5
+ import type { SubmittableExtrinsic } from '@pezkuwi/api/submittable/types';
6
+ import type { ApiTypes, DecorateMethod } from '@pezkuwi/api/types';
7
+ import type { AccountId, EventRecord, Hash } from '@pezkuwi/types/interfaces';
8
+ import type { ISubmittableResult } from '@pezkuwi/types/types';
9
+ import type { Abi } from '../Abi/index.js';
10
+ import type { AbiConstructor, BlueprintOptions } from '../types.js';
11
+ import type { MapConstructorExec } from './types.js';
12
+
13
+ import { SubmittableResult } from '@pezkuwi/api';
14
+ import { BN_ZERO, isUndefined } from '@pezkuwi/util';
15
+
16
+ import { applyOnEvent } from '../util.js';
17
+ import { Base } from './Base.js';
18
+ import { Contract } from './Contract.js';
19
+ import { convertWeight, createBluePrintTx, encodeSalt } from './util.js';
20
+
21
+ export type BlueprintConstructor<ApiType extends ApiTypes> = new(api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, codeHash: string | Hash | Uint8Array) => Blueprint<ApiType>;
22
+
23
+ export class BlueprintSubmittableResult<ApiType extends ApiTypes> extends SubmittableResult {
24
+ readonly contract?: Contract<ApiType> | undefined;
25
+
26
+ constructor (result: ISubmittableResult, contract?: Contract<ApiType>) {
27
+ super(result);
28
+
29
+ this.contract = contract;
30
+ }
31
+ }
32
+
33
+ export class Blueprint<ApiType extends ApiTypes> extends Base<ApiType> {
34
+ /**
35
+ * @description The on-chain code hash for this blueprint
36
+ */
37
+ readonly codeHash: Hash;
38
+
39
+ readonly #tx: MapConstructorExec<ApiType> = {};
40
+
41
+ constructor (api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, codeHash: string | Hash | Uint8Array, decorateMethod: DecorateMethod<ApiType>) {
42
+ super(api, abi, decorateMethod);
43
+
44
+ this.codeHash = this.registry.createType('Hash', codeHash);
45
+
46
+ this.abi.constructors.forEach((c): void => {
47
+ if (isUndefined(this.#tx[c.method])) {
48
+ this.#tx[c.method] = createBluePrintTx(c, (o, p) => this.#deploy(c, o, p));
49
+ }
50
+ });
51
+ }
52
+
53
+ public get tx (): MapConstructorExec<ApiType> {
54
+ return this.#tx;
55
+ }
56
+
57
+ #deploy = (constructorOrId: AbiConstructor | string | number, { gasLimit = BN_ZERO, salt, storageDepositLimit = null, value = BN_ZERO }: BlueprintOptions, params: unknown[]): SubmittableExtrinsic<ApiType, BlueprintSubmittableResult<ApiType>> => {
58
+ const palletTx = this._isRevive
59
+ ? this.api.tx.revive
60
+ : this.api.tx.contracts;
61
+
62
+ return palletTx.instantiate(
63
+ value,
64
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
65
+ // @ts-ignore jiggle v1 weights, metadata points to latest
66
+ this._isWeightV1
67
+ ? convertWeight(gasLimit).v1Weight
68
+ : convertWeight(gasLimit).v2Weight,
69
+ storageDepositLimit,
70
+ this.codeHash,
71
+ this.abi.findConstructor(constructorOrId).toU8a(params),
72
+ encodeSalt(salt)
73
+ ).withResultTransform((result: ISubmittableResult) =>
74
+ new BlueprintSubmittableResult(result, applyOnEvent(result, ['Instantiated'], ([record]: EventRecord[]) =>
75
+ new Contract<ApiType>(this.api, this.abi, record.event.data[1] as AccountId, this._decorateMethod), this._isRevive
76
+ )
77
+ )
78
+ );
79
+ };
80
+ }
81
+
82
+ export function extendBlueprint <ApiType extends ApiTypes> (type: ApiType, decorateMethod: DecorateMethod<ApiType>): BlueprintConstructor<ApiType> {
83
+ return class extends Blueprint<ApiType> {
84
+ static __BlueprintType = type;
85
+
86
+ constructor (api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, codeHash: string | Hash | Uint8Array) {
87
+ super(api, abi, codeHash, decorateMethod);
88
+ }
89
+ };
90
+ }
@@ -0,0 +1,47 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ /// <reference types="@pezkuwi/dev-test/globals.d.ts" />
5
+
6
+ import fs from 'node:fs';
7
+
8
+ import { toPromiseMethod } from '@pezkuwi/api';
9
+
10
+ import v0contractFlipper from '../test/contracts/ink/v0/flipper.contract.json' assert { type: 'json' };
11
+ import v0abiFlipper from '../test/contracts/ink/v0/flipper.json' assert { type: 'json' };
12
+ import v1contractFlipper from '../test/contracts/ink/v1/flipper.contract.json' assert { type: 'json' };
13
+ import v6contractErc20 from '../test/contracts/ink/v6/erc20.contract.json' assert { type: 'json' };
14
+ import { Code } from './Code.js';
15
+ import { mockApi, mockReviveApi } from './mock.js';
16
+
17
+ const v0wasmFlipper = fs.readFileSync(new URL('../test/contracts/ink/v0/flipper.wasm', import.meta.url), 'utf-8');
18
+
19
+ describe('Code', (): void => {
20
+ it('can construct with an individual ABI/WASM combo', (): void => {
21
+ expect(
22
+ () => new Code(mockApi, v0abiFlipper as Record<string, unknown>, v0wasmFlipper, toPromiseMethod)
23
+ ).not.toThrow();
24
+ });
25
+
26
+ it('can construct with an .contract ABI (v0)', (): void => {
27
+ expect(
28
+ () => new Code(mockApi, v0contractFlipper as Record<string, unknown>, null, toPromiseMethod)
29
+ ).not.toThrow();
30
+ });
31
+
32
+ it('can construct with an .contract ABI (v1)', (): void => {
33
+ expect(
34
+ () => new Code(mockApi, v1contractFlipper as Record<string, unknown>, null, toPromiseMethod)
35
+ ).not.toThrow();
36
+ });
37
+
38
+ it('can construct a revive compatible contract (v6)', (): void => {
39
+ expect(
40
+ () => new Code(mockApi, v6contractErc20 as Record<string, unknown>, null, toPromiseMethod)
41
+ ).toThrow('The runtime does not expose api.tx.revive.instantiateWithCode with storageDepositLimit');
42
+
43
+ expect(
44
+ () => new Code(mockReviveApi, v6contractErc20 as Record<string, unknown>, null, toPromiseMethod)
45
+ ).not.toThrow();
46
+ });
47
+ });
@@ -0,0 +1,142 @@
1
+ // Copyright 2017-2025 @polkadot/api-contract authors & contributors
2
+ // SPDX-License-Identifier: Apache-2.0
3
+
4
+ import type { ApiBase } from '@pezkuwi/api/base';
5
+ import type { SubmittableExtrinsic } from '@pezkuwi/api/submittable/types';
6
+ import type { ApiTypes, DecorateMethod } from '@pezkuwi/api/types';
7
+ import type { AccountId, EventRecord } from '@pezkuwi/types/interfaces';
8
+ import type { ISubmittableResult } from '@pezkuwi/types/types';
9
+ import type { Codec } from '@pezkuwi/types-codec/types';
10
+ import type { Abi } from '../Abi/index.js';
11
+ import type { AbiConstructor, BlueprintOptions } from '../types.js';
12
+ import type { MapConstructorExec } from './types.js';
13
+
14
+ import { SubmittableResult } from '@pezkuwi/api';
15
+ import { BN_ZERO, compactAddLength, isRiscV, isUndefined, isWasm, u8aToU8a } from '@pezkuwi/util';
16
+
17
+ import { applyOnEvent } from '../util.js';
18
+ import { Base } from './Base.js';
19
+ import { Blueprint } from './Blueprint.js';
20
+ import { Contract } from './Contract.js';
21
+ import { convertWeight, createBluePrintTx, encodeSalt } from './util.js';
22
+
23
+ export type CodeConstructor<ApiType extends ApiTypes> = new(api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, wasm: Uint8Array | string | Buffer | null | undefined) => Code<ApiType>;
24
+
25
+ export class CodeSubmittableResult<ApiType extends ApiTypes> extends SubmittableResult {
26
+ readonly blueprint?: Blueprint<ApiType> | undefined;
27
+ readonly contract?: Contract<ApiType> | undefined;
28
+
29
+ constructor (result: ISubmittableResult, blueprint?: Blueprint<ApiType> | undefined, contract?: Contract<ApiType> | undefined) {
30
+ super(result);
31
+
32
+ this.blueprint = blueprint;
33
+ this.contract = contract;
34
+ }
35
+ }
36
+
37
+ // checks to see if the code (or at least the header)
38
+ // is a valid/supported format
39
+ function isValidCode (code: Uint8Array): boolean {
40
+ return isWasm(code) || isRiscV(code);
41
+ }
42
+
43
+ export class Code<ApiType extends ApiTypes> extends Base<ApiType> {
44
+ readonly code: Uint8Array;
45
+
46
+ readonly #tx: MapConstructorExec<ApiType> = {};
47
+
48
+ constructor (api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, wasm: Uint8Array | string | Buffer | null | undefined, decorateMethod: DecorateMethod<ApiType>) {
49
+ super(api, abi, decorateMethod);
50
+
51
+ this.code = isValidCode(this.abi.info.source.wasm)
52
+ ? this.abi.info.source.wasm
53
+ : u8aToU8a(wasm);
54
+
55
+ if (!isValidCode(this.code)) {
56
+ throw new Error('Invalid code provided');
57
+ }
58
+
59
+ this.abi.constructors.forEach((c): void => {
60
+ if (isUndefined(this.#tx[c.method])) {
61
+ this.#tx[c.method] = createBluePrintTx(c, (o, p) => this.#instantiate(c, o, p));
62
+ }
63
+ });
64
+ }
65
+
66
+ public get tx (): MapConstructorExec<ApiType> {
67
+ return this.#tx;
68
+ }
69
+
70
+ #instantiate = (constructorOrId: AbiConstructor | string | number, { gasLimit = BN_ZERO, salt, storageDepositLimit = null, value = BN_ZERO }: BlueprintOptions, params: unknown[]): SubmittableExtrinsic<ApiType, CodeSubmittableResult<ApiType>> => {
71
+ const palletTx = this._isRevive ? this.api.tx.revive : this.api.tx.contracts;
72
+
73
+ if (this._isRevive) {
74
+ return palletTx.instantiateWithCode(
75
+ value,
76
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
77
+ // @ts-ignore jiggle v1 weights, metadata points to latest
78
+ this._isWeightV1
79
+ ? convertWeight(gasLimit).v1Weight
80
+ : convertWeight(gasLimit).v2Weight,
81
+ storageDepositLimit,
82
+ compactAddLength(this.code),
83
+ this.abi.findConstructor(constructorOrId).toU8a(params),
84
+ encodeSalt(salt)
85
+ ).withResultTransform((result: ISubmittableResult) =>
86
+ new CodeSubmittableResult(
87
+ result,
88
+ ...(applyOnEvent(result, ['Instantiated'], (records: EventRecord[]) =>
89
+ records.reduce<[Blueprint<ApiType> | undefined, Contract<ApiType> | undefined]>(
90
+ ([blueprint, contract], { event }) =>
91
+ this.api.events.revive['Instantiated'].is(event)
92
+ ? [
93
+ blueprint,
94
+ new Contract<ApiType>(
95
+ this.api,
96
+ this.abi,
97
+ (event as unknown as { data: [Codec, AccountId] }).data[1],
98
+ this._decorateMethod
99
+ )
100
+ ]
101
+ : [blueprint, contract],
102
+ [undefined, undefined]
103
+ ), this._isRevive
104
+ ) || [undefined, undefined])
105
+ )
106
+ );
107
+ }
108
+
109
+ return palletTx.instantiateWithCode(
110
+ value,
111
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
112
+ // @ts-ignore jiggle v1 weights, metadata points to latest
113
+ this._isWeightV1
114
+ ? convertWeight(gasLimit).v1Weight
115
+ : convertWeight(gasLimit).v2Weight,
116
+ storageDepositLimit,
117
+ compactAddLength(this.code),
118
+ this.abi.findConstructor(constructorOrId).toU8a(params),
119
+ encodeSalt(salt)
120
+ ).withResultTransform((result: ISubmittableResult) =>
121
+ new CodeSubmittableResult(result, ...(applyOnEvent(result, ['CodeStored', 'Instantiated'], (records: EventRecord[]) =>
122
+ records.reduce<[Blueprint<ApiType> | undefined, Contract<ApiType> | undefined]>(([blueprint, contract], { event }) =>
123
+ this.api.events.contracts.Instantiated.is(event)
124
+ ? [blueprint, new Contract<ApiType>(this.api, this.abi, (event as unknown as { data: [Codec, AccountId] }).data[1], this._decorateMethod)]
125
+ : this.api.events.contracts.CodeStored.is(event)
126
+ ? [new Blueprint<ApiType>(this.api, this.abi, (event as unknown as { data: [AccountId] }).data[0], this._decorateMethod), contract]
127
+ : [blueprint, contract],
128
+ [undefined, undefined]), this._isRevive
129
+ ) || [undefined, undefined]))
130
+ );
131
+ };
132
+ }
133
+
134
+ export function extendCode <ApiType extends ApiTypes> (type: ApiType, decorateMethod: DecorateMethod<ApiType>): CodeConstructor<ApiType> {
135
+ return class extends Code<ApiType> {
136
+ static __CodeType = type;
137
+
138
+ constructor (api: ApiBase<ApiType>, abi: string | Record<string, unknown> | Abi, wasm: Uint8Array | string | Buffer | null | undefined) {
139
+ super(api, abi, wasm, decorateMethod);
140
+ }
141
+ };
142
+ }