fix: use celo sepolia in common (#1091)

This commit is contained in:
Nesopie
2025-09-18 16:05:28 +05:30
committed by GitHub
parent 86c595be94
commit b21df03b5d
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@selfxyz/common",
"version": "0.0.7",
"version": "0.0.8",
"description": "Constants and utils for self sdks",
"license": "MIT",
"author": "@Selfxyz Team",

View File

@@ -29,7 +29,7 @@ export interface SelfApp {
devMode: boolean;
disclosures: SelfAppDisclosureConfig;
version: number;
chainID: 42220 | 44787;
chainID: 42220 | 11142220;
userDefinedData: string;
}
@@ -112,7 +112,7 @@ export class SelfAppBuilder {
logoBase64: '',
deeplinkCallback: '',
disclosures: {},
chainID: config.endpointType === 'staging_celo' ? 44787 : 42220,
chainID: config.endpointType === 'staging_celo' ? 11142220 : 42220,
version: config.version ?? 2,
userDefinedData: '',
...config,

View File

@@ -1,6 +1,6 @@
{
"name": "@selfxyz/qrcode",
"version": "1.0.11",
"version": "1.0.12",
"repository": {
"type": "git",
"url": "https://github.com/selfxyz/self"