Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PLA-2024] Add enjin-canary metadata v1033 #43

Merged
merged 4 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/consts/enjin/canary/canary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export 'v103.dart';
export 'v1030.dart';
export 'v1031.dart';
export 'v1032.dart';
export 'v1033.dart';
export 'v104.dart';
export 'v105.dart';
export 'v106.dart';
Expand Down
1 change: 1 addition & 0 deletions lib/consts/enjin/canary/v1033.dart

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion lib/consts/enjin/enjin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'canary/canary.dart' as c;
import 'production/production.dart' as p;

String canaryLatest() {
return c.v1032;
return c.v1033;
}

String productionLatest() {
Expand Down Expand Up @@ -57,6 +57,8 @@ String canarySpec(specVersion) {
return c.v1031;
case 1032:
return c.v1032;
case 1033:
return c.v1033;
default:
return canaryLatest();
}
Expand Down
2 changes: 1 addition & 1 deletion lib/handler/general.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int getLatestSpecVersion(network) {
return 1032;
}
if (network == 'canary-relaychain') {
return 1032;
return 1033;
}
if (network == 'canary' || network == 'canary-matrixchain') {
return 1012;
Expand Down