Skip to content

Commit 185264b

Browse files
authored
Merge pull request #40 from SubstrateGaming/monthly_updates_01_25
fix polkadot namespace naming
2 parents 6f5b0a0 + 7ad1d3e commit 185264b

File tree

795 files changed

+5749
-5755
lines changed

Some content is hidden

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

795 files changed

+5749
-5755
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"projects": {
3-
"net_api": "Substrate.Polkadot.NetApiExt",
4-
"net_integration": "Substrate.Polkadot.Integration",
5-
"rest_service": "Substrate.Polkadot.RestService",
6-
"rest_client": "Substrate.Polkadot.RestClient"
3+
"net_api": "Substrate.Polkadot.NET.NetApiExt",
4+
"net_integration": "Substrate.Polkadot.NET.Integration",
5+
"rest_service": "Substrate.Polkadot.NET.RestService",
6+
"rest_client": "Substrate.Polkadot.NET.RestClient"
77
},
88
"metadata": {
99
"websocket": "wss://rpc.ibp.network/polkadot"
1010
},
1111
"rest_client_settings": {
12-
"service_assembly": "Substrate.Polkadot.RestService.dll"
12+
"service_assembly": "Substrate.Polkadot.NET.RestService.dll"
1313
}
1414
}

Substrate.Polkadot.NET/Substrate.Polkadot.NetApiExt/NetApiExt/Client/BaseClient.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/NET/Integration/Client/BaseClient.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
using System.Threading.Tasks;
66
using Serilog;
77
using StreamJsonRpc;
8-
using Substrate.Polkadot.NetApiExt.Generated;
9-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
10-
using Substrate.Polkadot.NetApiExt.Generated.Storage;
11-
using Substrate.Polkadot.NetApiExt.Helper;
8+
using Substrate.Polkadot.NET.NetApiExt.Generated;
9+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
10+
using Substrate.Polkadot.NET.NetApiExt.Generated.Storage;
11+
using Substrate.Polkadot.NET.Integration.Helper;
1212
using Substrate.NET.Schnorrkel.Keys;
1313
using Substrate.NetApi;
1414
using Substrate.NetApi.Model.Extrinsics;
@@ -17,7 +17,7 @@
1717
using Substrate.NetApi.Model.Types.Base;
1818
using Substrate.NetApi.Model.Types.Primitive;
1919

20-
namespace Substrate.Polkadot.NetApiExt.Client
20+
namespace Substrate.Polkadot.NET.Integration.Client
2121
{
2222
/// <summary>
2323
/// Base client

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Integration/Client/ExtrinsicInfo.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/NET/Integration/Client/ExtrinsicInfo.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
using Substrate.NetApi.Model.Rpc;
1010
using Substrate.NetApi.Model.Types;
1111
using Substrate.NetApi.Model.Types.Primitive;
12-
using Substrate.Polkadot.NetApiExt.Generated.Model.primitive_types;
13-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_core.crypto;
14-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_runtime.multiaddress;
15-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_support.dispatch;
16-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
17-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system.pallet;
18-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_arithmetic;
19-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_runtime;
20-
using Substrate.Polkadot.Integration.Helper;
21-
using Substrate.Polkadot.NetApiExt.Generated.Model.polkadot_runtime;
22-
23-
namespace Substrate.Polkadot.Integration.Client
12+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.primitive_types;
13+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_core.crypto;
14+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_runtime.multiaddress;
15+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_support.dispatch;
16+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
17+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system.pallet;
18+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_arithmetic;
19+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_runtime;
20+
using Substrate.Polkadot.NET.Integration.Helper;
21+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.polkadot_runtime;
22+
23+
namespace Substrate.Polkadot.NET.Integration.Client
2424
{
2525
public class ExtrinsicInfo
2626
{

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Integration/Client/ExtrinsicManager.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/NET/Integration/Client/ExtrinsicManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
using System.Collections.Generic;
55
using System.Linq;
66
using Substrate.NetApi.Model.Rpc;
7-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
8-
using Substrate.Polkadot.NetApiExt.Generated;
9-
using Substrate.Polkadot.Integration.Helper;
7+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
8+
using Substrate.Polkadot.NET.NetApiExt.Generated;
9+
using Substrate.Polkadot.NET.Integration.Helper;
1010
using Serilog;
1111

12-
namespace Substrate.Polkadot.Integration.Client
12+
namespace Substrate.Polkadot.NET.Integration.Client
1313
{
1414
public delegate void ExtrinsicUpdateEvent(string subscriptionId, ExtrinsicInfo queueInfo);
1515

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Integration/Client/SubscriptionManager.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/NET/Integration/Client/SubscriptionManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
using System;
33
using Serilog;
44
using Substrate.NetApi.Model.Rpc;
5-
using Substrate.Polkadot.Integration.Helper;
5+
using Substrate.Polkadot.NET.Integration.Helper;
66

7-
namespace Substrate.Polkadot.Integration.Client
7+
namespace Substrate.Polkadot.NET.Integration.Client
88
{
99
public delegate void SubscriptionOnEvent(string subscriptionId, StorageChangeSet storageChangeSet);
1010

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Integration/Helper/Generic.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/NET/Integration/Helper/Generic.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
using System.Linq;
55
using System.Numerics;
66
using System.Text;
7-
using Substrate.Polkadot.NetApiExt.Generated.Model.primitive_types;
8-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_core.crypto;
9-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_runtime.multiaddress;
7+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.primitive_types;
8+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_core.crypto;
9+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_runtime.multiaddress;
1010
using Substrate.NetApi;
1111
using Substrate.NetApi.Model.Types;
1212
using Substrate.NetApi.Model.Types.Base;
1313
using Substrate.NetApi.Model.Types.Primitive;
1414

15-
namespace Substrate.Polkadot.Integration.Helper
15+
namespace Substrate.Polkadot.NET.Integration.Helper
1616
{
1717
public static class Generic
1818
{

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Substrate.Polkadot.Integration.csproj renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.Integration/Substrate.Polkadot.NET.Integration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\Substrate.Polkadot.NetApiExt\Substrate.Polkadot.NetApiExt.csproj" />
15+
<ProjectReference Include="..\Substrate.Polkadot.NET.NetApiExt\Substrate.Polkadot.NET.NetApiExt.csproj" />
1616
</ItemGroup>
1717

1818
</Project>

Substrate.Polkadot.NET/Substrate.Polkadot.Integration/Integration/Client/BaseClient.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.NetApiExt/NET/NetApiExt/Client/BaseClient.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
using System.Threading.Tasks;
66
using Serilog;
77
using StreamJsonRpc;
8-
using Substrate.Polkadot.NetApiExt.Generated;
9-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
10-
using Substrate.Polkadot.NetApiExt.Generated.Storage;
11-
using Substrate.Polkadot.Integration.Helper;
8+
using Substrate.Polkadot.NET.NetApiExt.Generated;
9+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
10+
using Substrate.Polkadot.NET.NetApiExt.Generated.Storage;
11+
using Substrate.Polkadot.NET.NetApiExt.Helper;
1212
using Substrate.NET.Schnorrkel.Keys;
1313
using Substrate.NetApi;
1414
using Substrate.NetApi.Model.Extrinsics;
@@ -17,7 +17,7 @@
1717
using Substrate.NetApi.Model.Types.Base;
1818
using Substrate.NetApi.Model.Types.Primitive;
1919

20-
namespace Substrate.Polkadot.Integration.Client
20+
namespace Substrate.Polkadot.NET.NetApiExt.Client
2121
{
2222
/// <summary>
2323
/// Base client

Substrate.Polkadot.NET/Substrate.Polkadot.NetApiExt/NetApiExt/Client/ExtrinsicInfo.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.NetApiExt/NET/NetApiExt/Client/ExtrinsicInfo.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@
99
using Substrate.NetApi.Model.Rpc;
1010
using Substrate.NetApi.Model.Types;
1111
using Substrate.NetApi.Model.Types.Primitive;
12-
using Substrate.Polkadot.NetApiExt.Generated.Model.primitive_types;
13-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_core.crypto;
14-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_runtime.multiaddress;
15-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_support.dispatch;
16-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
17-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system.pallet;
18-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_arithmetic;
19-
using Substrate.Polkadot.NetApiExt.Generated.Model.sp_runtime;
20-
using Substrate.Polkadot.NetApiExt.Helper;
21-
using Substrate.Polkadot.NetApiExt.Generated.Model.polkadot_runtime;
22-
23-
namespace Substrate.Polkadot.NetApiExt.Client
12+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.primitive_types;
13+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_core.crypto;
14+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_runtime.multiaddress;
15+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_support.dispatch;
16+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
17+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system.pallet;
18+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_arithmetic;
19+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_runtime;
20+
using Substrate.Polkadot.NET.NetApiExt.Helper;
21+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.polkadot_runtime;
22+
23+
namespace Substrate.Polkadot.NET.NetApiExt.Client
2424
{
2525
public class ExtrinsicInfo
2626
{

Substrate.Polkadot.NET/Substrate.Polkadot.NetApiExt/NetApiExt/Client/ExtrinsicManager.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.NetApiExt/NET/NetApiExt/Client/ExtrinsicManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
using System.Collections.Generic;
55
using System.Linq;
66
using Substrate.NetApi.Model.Rpc;
7-
using Substrate.Polkadot.NetApiExt.Generated.Model.frame_system;
8-
using Substrate.Polkadot.NetApiExt.Generated;
9-
using Substrate.Polkadot.NetApiExt.Helper;
7+
using Substrate.Polkadot.NET.NetApiExt.Generated.Model.frame_system;
8+
using Substrate.Polkadot.NET.NetApiExt.Generated;
9+
using Substrate.Polkadot.NET.NetApiExt.Helper;
1010
using Serilog;
1111

12-
namespace Substrate.Polkadot.NetApiExt.Client
12+
namespace Substrate.Polkadot.NET.NetApiExt.Client
1313
{
1414
public delegate void ExtrinsicUpdateEvent(string subscriptionId, ExtrinsicInfo queueInfo);
1515

Substrate.Polkadot.NET/Substrate.Polkadot.NetApiExt/NetApiExt/Client/SubscriptionManager.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.NetApiExt/NET/NetApiExt/Client/SubscriptionManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
using System;
33
using Serilog;
44
using Substrate.NetApi.Model.Rpc;
5-
using Substrate.Polkadot.NetApiExt.Helper;
5+
using Substrate.Polkadot.NET.NetApiExt.Helper;
66

7-
namespace Substrate.Polkadot.NetApiExt.Client
7+
namespace Substrate.Polkadot.NET.NetApiExt.Client
88
{
99
public delegate void SubscriptionOnEvent(string subscriptionId, StorageChangeSet storageChangeSet);
1010

Substrate.Polkadot.NET/Substrate.Polkadot.NetApiExt/NetApiExt/Generated/Model/bitvec/order/Lsb0.cs renamed to Substrate.Polkadot.NET/Substrate.Polkadot.NET.NetApiExt/NET/NetApiExt/Generated/Model/bitvec/order/Lsb0.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bitvec.order
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bitvec.order
1717
{
1818

1919

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_btree_map
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_btree_map
1717
{
1818

1919

@@ -27,7 +27,7 @@ public sealed class BoundedBTreeMapT1 : BaseType
2727
/// <summary>
2828
/// >> value
2929
/// </summary>
30-
public Substrate.Polkadot.NetApiExt.Generated.Types.Base.BTreeMapT2 Value { get; set; }
30+
public Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.BTreeMapT2 Value { get; set; }
3131

3232
/// <inheritdoc/>
3333
public override string TypeName()
@@ -47,7 +47,7 @@ public override byte[] Encode()
4747
public override void Decode(byte[] byteArray, ref int p)
4848
{
4949
var start = p;
50-
Value = new Substrate.Polkadot.NetApiExt.Generated.Types.Base.BTreeMapT2();
50+
Value = new Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.BTreeMapT2();
5151
Value.Decode(byteArray, ref p);
5252
var bytesLength = p - start;
5353
TypeSize = bytesLength;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_btree_map
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_btree_map
1717
{
1818

1919

@@ -27,7 +27,7 @@ public sealed class BoundedBTreeMapT2 : BaseType
2727
/// <summary>
2828
/// >> value
2929
/// </summary>
30-
public Substrate.Polkadot.NetApiExt.Generated.Types.Base.BTreeMapT3 Value { get; set; }
30+
public Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.BTreeMapT3 Value { get; set; }
3131

3232
/// <inheritdoc/>
3333
public override string TypeName()
@@ -47,7 +47,7 @@ public override byte[] Encode()
4747
public override void Decode(byte[] byteArray, ref int p)
4848
{
4949
var start = p;
50-
Value = new Substrate.Polkadot.NetApiExt.Generated.Types.Base.BTreeMapT3();
50+
Value = new Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.BTreeMapT3();
5151
Value.Decode(byteArray, ref p);
5252
var bytesLength = p - start;
5353
TypeSize = bytesLength;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

@@ -27,7 +27,7 @@ public sealed class BoundedVecT1 : BaseType
2727
/// <summary>
2828
/// >> value
2929
/// </summary>
30-
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NetApiExt.Generated.Model.sp_core.crypto.AccountId32> Value { get; set; }
30+
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_core.crypto.AccountId32> Value { get; set; }
3131

3232
/// <inheritdoc/>
3333
public override string TypeName()
@@ -47,7 +47,7 @@ public override byte[] Encode()
4747
public override void Decode(byte[] byteArray, ref int p)
4848
{
4949
var start = p;
50-
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NetApiExt.Generated.Model.sp_core.crypto.AccountId32>();
50+
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NET.NetApiExt.Generated.Model.sp_core.crypto.AccountId32>();
5151
Value.Decode(byteArray, ref p);
5252
var bytesLength = p - start;
5353
TypeSize = bytesLength;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

@@ -27,7 +27,7 @@ public sealed class BoundedVecT12 : BaseType
2727
/// <summary>
2828
/// >> value
2929
/// </summary>
30-
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.NetApi.Model.Types.Base.BaseOpt<Substrate.Polkadot.NetApiExt.Generated.Model.pallet_scheduler.Scheduled>> Value { get; set; }
30+
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.NetApi.Model.Types.Base.BaseOpt<Substrate.Polkadot.NET.NetApiExt.Generated.Model.pallet_scheduler.Scheduled>> Value { get; set; }
3131

3232
/// <inheritdoc/>
3333
public override string TypeName()
@@ -47,7 +47,7 @@ public override byte[] Encode()
4747
public override void Decode(byte[] byteArray, ref int p)
4848
{
4949
var start = p;
50-
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.NetApi.Model.Types.Base.BaseOpt<Substrate.Polkadot.NetApiExt.Generated.Model.pallet_scheduler.Scheduled>>();
50+
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.NetApi.Model.Types.Base.BaseOpt<Substrate.Polkadot.NET.NetApiExt.Generated.Model.pallet_scheduler.Scheduled>>();
5151
Value.Decode(byteArray, ref p);
5252
var bytesLength = p - start;
5353
TypeSize = bytesLength;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

@@ -27,7 +27,7 @@ public sealed class BoundedVecT14 : BaseType
2727
/// <summary>
2828
/// >> value
2929
/// </summary>
30-
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NetApiExt.Generated.Types.Base.Arr32U8> Value { get; set; }
30+
public Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.Arr32U8> Value { get; set; }
3131

3232
/// <inheritdoc/>
3333
public override string TypeName()
@@ -47,7 +47,7 @@ public override byte[] Encode()
4747
public override void Decode(byte[] byteArray, ref int p)
4848
{
4949
var start = p;
50-
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NetApiExt.Generated.Types.Base.Arr32U8>();
50+
Value = new Substrate.NetApi.Model.Types.Base.BaseVec<Substrate.Polkadot.NET.NetApiExt.Generated.Types.Base.Arr32U8>();
5151
Value.Decode(byteArray, ref p);
5252
var bytesLength = p - start;
5353
TypeSize = bytesLength;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
using System.Collections.Generic;
1414

1515

16-
namespace Substrate.Polkadot.NetApiExt.Generated.Model.bounded_collections.bounded_vec
16+
namespace Substrate.Polkadot.NET.NetApiExt.Generated.Model.bounded_collections.bounded_vec
1717
{
1818

1919

0 commit comments

Comments
 (0)