Skip to content

Commit 43bcd69

Browse files
authored
Merge pull request #32 from SubstrateGaming/monthly_updates_08_24
monthly updates 08 24
2 parents 5c33e75 + 3bbf8cc commit 43bcd69

File tree

505 files changed

+797
-511
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

505 files changed

+797
-511
lines changed

Substrate.Ajuna.NET/.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"substrate.dotnet": {
6-
"version": "0.6.5",
6+
"version": "0.6.6",
77
"commands": [
88
"substrate"
99
],

Substrate.Ajuna.NET/.substrate/metadata.json

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28865,7 +28865,8 @@
2886528865
521,
2886628866
523,
2886728867
524,
28868-
525
28868+
525,
28869+
526
2886928870
],
2887028871
"TypeDef": "Tuple"
2887128872
},
@@ -31309,6 +31310,44 @@
3130931310
"TypeDef": "Composite"
3131031311
},
3131131312
"526": {
31313+
"TypeFields": [
31314+
{
31315+
"Name": "mode",
31316+
"TypeName": "Mode",
31317+
"TypeId": 527
31318+
}
31319+
],
31320+
"Path": [
31321+
"frame_metadata_hash_extension",
31322+
"CheckMetadataHash"
31323+
],
31324+
"TypeParams": [
31325+
{
31326+
"Name": "T"
31327+
}
31328+
],
31329+
"TypeDef": "Composite"
31330+
},
31331+
"527": {
31332+
"Variants": [
31333+
{
31334+
"Name": "Disabled",
31335+
"TypeFields": null,
31336+
"Index": 0
31337+
},
31338+
{
31339+
"Name": "Enabled",
31340+
"TypeFields": null,
31341+
"Index": 1
31342+
}
31343+
],
31344+
"Path": [
31345+
"frame_metadata_hash_extension",
31346+
"Mode"
31347+
],
31348+
"TypeDef": "Variant"
31349+
},
31350+
"528": {
3131231351
"Path": [
3131331352
"ajuna_runtime",
3131431353
"Runtime"
@@ -31640,7 +31679,7 @@
3164031679
{
3164131680
"Name": "Version",
3164231681
"TypeId": 168,
31643-
"Value": "FGFqdW5hFGFqdW5hAQAAAL0CAAAAAAAAMN1xjVzFMmLUAQAAANe92KJyyg1lAQAAAN9qy2iZB2CbBQAAADfjl/x8kfXkAgAAAED+OtQB+JWaBgAAANK8mJfu0I8VAwAAAPeLJ4vlP0VMAgAAAKs8BXIpH+uLAQAAALydiZBPW5I/AQAAADfIuxNQqaKoBAAAAOqT4/FvPWliAgAAAPvFd7nXR+/WAQAAAAEAAAAB",
31682+
"Value": "FGFqdW5hFGFqdW5hAQAAAMACAAAAAAAAMN1xjVzFMmLUAQAAANe92KJyyg1lAQAAAN9qy2iZB2CbBQAAADfjl/x8kfXkAgAAAED+OtQB+JWaBgAAANK8mJfu0I8VAwAAAPeLJ4vlP0VMAgAAAKs8BXIpH+uLAQAAALydiZBPW5I/AQAAADfIuxNQqaKoBAAAAOqT4/FvPWliAgAAAPvFd7nXR+/WAQAAAAEAAAAB",
3164431683
"Docs": [
3164531684
" Get the chain's in-code version."
3164631685
]
@@ -35232,9 +35271,14 @@
3523235271
"SignedIdentifier": "ChargeTransactionPayment",
3523335272
"SignedExtType": 525,
3523435273
"AddSignedExtType": 36
35274+
},
35275+
{
35276+
"SignedIdentifier": "CheckMetadataHash",
35277+
"SignedExtType": 526,
35278+
"AddSignedExtType": 32
3523535279
}
3523635280
]
3523735281
},
35238-
"TypeId": 526
35282+
"TypeId": 528
3523935283
}
3524035284
}

Substrate.Ajuna.NET/.substrate/metadata.txt

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

Substrate.Ajuna.NET/.substrate/substrate-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"rest_client": "Substrate.Ajuna.NET.RestClient"
77
},
88
"metadata": {
9-
"websocket": "wss://rpc-para.ajuna.network"
9+
"websocket": "ws://127.0.0.1:9944"
1010
},
1111
"rest_client_settings": {
1212
"service_assembly": "Substrate.Ajuna.NET.RestService.dll"

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/ajuna_runtime/Runtime.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

@@ -18,7 +18,7 @@ namespace Substrate.Ajuna.NET.NetApiExt.Generated.Model.ajuna_runtime
1818

1919

2020
/// <summary>
21-
/// >> 526 - Composite[ajuna_runtime.Runtime]
21+
/// >> 528 - Composite[ajuna_runtime.Runtime]
2222
/// </summary>
2323
[SubstrateNodeType(TypeDefEnum.Composite)]
2424
public sealed class Runtime : BaseType

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/ajuna_runtime/SessionKeys.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_btree_set/BoundedBTreeSet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT10.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT11.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT12.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT13.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT14.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT15.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT16.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT17.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT18.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT19.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT20.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT21.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT22.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT23.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT24.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT25.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT26.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT27.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT28.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT29.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT30.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT31.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT33.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT34.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

Substrate.Ajuna.NET/Substrate.Ajuna.NET.NetApiExt/NET/NetApiExt/Generated/Model/bounded_collections/bounded_vec/BoundedVecT35.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
using Substrate.NetApi.Attributes;
1111
using Substrate.NetApi.Model.Types.Base;
12-
using Substrate.NetApi.Model.Types.Metadata.V14;
12+
using Substrate.NetApi.Model.Types.Metadata.Base;
1313
using System.Collections.Generic;
1414

1515

0 commit comments

Comments
 (0)