@nexus-cross/crossx-sdk-core 1.2.0 → 1.2.1

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.
package/dist/index.js CHANGED
@@ -836,7 +836,7 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
836
836
  }), this._initPromise);
837
837
  }
838
838
  async _doInitialize(e) {
839
- console.log("[CROSSx SDK] v1.2.0 초기화 중..."), this.confirmation.setMessages(St(this._config.locale));
839
+ console.log("[CROSSx SDK] v1.2.1 초기화 중..."), this.confirmation.setMessages(St(this._config.locale));
840
840
  try {
841
841
  const s = Ys();
842
842
  this.internalConfig.oauthServiceUrl = s.oauthServiceUrl, this.internalConfig.authApiUrl = s.authApiUrl, this.internalConfig.walletGatewayUrl = s.walletGatewayUrl, this.adapterConfig.gatewayUrl = s.walletGatewayUrl;
@@ -1276,10 +1276,8 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1276
1276
  async signMessage(e, s, t) {
1277
1277
  if (this.ensureAuthenticated(), !this.userId)
1278
1278
  throw new g(p.AUTH_NOT_AUTHENTICATED, "사용자 ID를 찾을 수 없습니다");
1279
- await this.ensurePinForSigning();
1280
1279
  const n = await this.resolveAddress(t == null ? void 0 : t.index);
1281
- let o;
1282
- if (this.walletProvider.prepare && (o = (await this.walletProvider.prepare("sign-message", { message: s, from: n.address })).uuid), !await this.confirmation.requestConfirmation({
1280
+ if (!await this.confirmation.requestConfirmation({
1283
1281
  type: "sign-message",
1284
1282
  chainId: e,
1285
1283
  from: n.address,
@@ -1289,24 +1287,25 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1289
1287
  }))
1290
1288
  throw new g(p.USER_REJECTED, "사용자가 메시지 서명을 거부했습니다");
1291
1289
  try {
1292
- const a = await this.withPinRetry(
1293
- () => this.walletProvider.signMessage(
1290
+ const i = await this.withPinRetry(async () => {
1291
+ let a;
1292
+ return this.walletProvider.prepare && (a = (await this.walletProvider.prepare("sign-message", { message: s, from: n.address })).uuid), await this.ensureVerifiedPin(), this.walletProvider.signMessage(
1294
1293
  this.userId,
1295
1294
  e,
1296
1295
  s,
1297
1296
  t == null ? void 0 : t.index,
1298
- o,
1297
+ a,
1299
1298
  n.address
1300
- )
1301
- );
1302
- return this.verifySignatureSigner(s, a.signature, n.address), {
1299
+ );
1300
+ });
1301
+ return this.verifySignatureSigner(s, i.signature, n.address), {
1303
1302
  chainId: e,
1304
- signature: a.signature,
1303
+ signature: i.signature,
1305
1304
  message: s,
1306
1305
  address: n.address
1307
1306
  };
1308
- } catch (a) {
1309
- throw a instanceof g ? a : new g(p.SIGNATURE_FAILED, `메시지 서명에 실패했습니다 (${e})`, a);
1307
+ } catch (i) {
1308
+ throw i instanceof g ? i : new g(p.SIGNATURE_FAILED, `메시지 서명에 실패했습니다 (${e})`, i);
1310
1309
  }
1311
1310
  }
1312
1311
  /**
@@ -1335,10 +1334,9 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1335
1334
  throw new g(p.AUTH_NOT_AUTHENTICATED, "사용자 ID를 찾을 수 없습니다");
1336
1335
  if (!this.walletProvider.signTypedData)
1337
1336
  throw new g(p.NOT_IMPLEMENTED, "signTypedData가 구현되어 있지 않습니다");
1338
- await this.ensurePinForSigning(), re.validateTypedDataChainId(e, s);
1337
+ re.validateTypedDataChainId(e, s);
1339
1338
  const n = await this.resolveAddress(t == null ? void 0 : t.index);
1340
- let o;
1341
- if (this.walletProvider.prepare && (o = (await this.walletProvider.prepare("sign-typed-data", { typedData: s, from: n.address })).uuid), !await this.confirmation.requestConfirmation({
1339
+ if (!await this.confirmation.requestConfirmation({
1342
1340
  type: "sign-typed-data",
1343
1341
  chainId: e,
1344
1342
  from: n.address,
@@ -1348,23 +1346,24 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1348
1346
  }))
1349
1347
  throw new g(p.USER_REJECTED, "사용자가 타입 데이터 서명을 거부했습니다");
1350
1348
  try {
1351
- const a = await this.withPinRetry(
1352
- () => this.walletProvider.signTypedData(
1349
+ const i = await this.withPinRetry(async () => {
1350
+ let a;
1351
+ return this.walletProvider.prepare && (a = (await this.walletProvider.prepare("sign-typed-data", { typedData: s, from: n.address })).uuid), await this.ensureVerifiedPin(), this.walletProvider.signTypedData(
1353
1352
  this.userId,
1354
1353
  e,
1355
1354
  s,
1356
1355
  t == null ? void 0 : t.index,
1357
- o,
1356
+ a,
1358
1357
  n.address
1359
- )
1360
- );
1361
- return re.validateSignatureFormat(a.signature), {
1358
+ );
1359
+ });
1360
+ return re.validateSignatureFormat(i.signature), {
1362
1361
  chainId: e,
1363
- signature: a.signature,
1362
+ signature: i.signature,
1364
1363
  address: n.address
1365
1364
  };
1366
- } catch (a) {
1367
- throw a instanceof g ? a : new g(p.SIGNATURE_FAILED, `타입 데이터 서명에 실패했습니다 (${e})`, a);
1365
+ } catch (i) {
1366
+ throw i instanceof g ? i : new g(p.SIGNATURE_FAILED, `타입 데이터 서명에 실패했습니다 (${e})`, i);
1368
1367
  }
1369
1368
  }
1370
1369
  /**
@@ -1401,12 +1400,9 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1401
1400
  async signTransaction(e, s, t) {
1402
1401
  if (this.ensureAuthenticated(), !this.userId)
1403
1402
  throw new g(p.AUTH_NOT_AUTHENTICATED, "사용자 ID를 찾을 수 없습니다");
1404
- await this.ensurePinForSigning();
1405
1403
  const n = await this.withResolvedGasAndFee(s, e);
1406
1404
  n.from || (n.from = (await this.resolveAddress(t == null ? void 0 : t.index)).address);
1407
- let o;
1408
- this.walletProvider.prepare && (o = (await this.walletProvider.prepare("sign", { tx: n })).uuid);
1409
- const i = Ze(e);
1405
+ const o = Ze(e);
1410
1406
  if (!await this.confirmation.requestConfirmation({
1411
1407
  type: "sign",
1412
1408
  chainId: e,
@@ -1418,34 +1414,35 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1418
1414
  gasPrice: n.gasPrice,
1419
1415
  maxFeePerGas: n.maxFeePerGas,
1420
1416
  maxPriorityFeePerGas: n.maxPriorityFeePerGas,
1421
- nativeSymbol: i.symbol,
1422
- nativeDecimals: i.decimals,
1417
+ nativeSymbol: o.symbol,
1418
+ nativeDecimals: o.decimals,
1423
1419
  dappName: t == null ? void 0 : t.dappName,
1424
1420
  accountName: t == null ? void 0 : t.accountName
1425
1421
  }))
1426
1422
  throw new g(p.USER_REJECTED, "사용자가 트랜잭션 서명을 거부했습니다");
1427
1423
  try {
1428
- const c = await this.withPinRetry(
1429
- () => this.walletProvider.signTransaction(
1424
+ const a = await this.withPinRetry(async () => {
1425
+ let c;
1426
+ return this.walletProvider.prepare && (c = (await this.walletProvider.prepare("sign", { tx: n })).uuid), await this.ensureVerifiedPin(), this.walletProvider.signTransaction(
1430
1427
  this.userId,
1431
1428
  e,
1432
1429
  n,
1433
1430
  t == null ? void 0 : t.index,
1434
- o
1435
- )
1436
- );
1437
- return re.validateSignedTxFormat(c.signature), {
1431
+ c
1432
+ );
1433
+ });
1434
+ return re.validateSignedTxFormat(a.signature), {
1438
1435
  chainId: e,
1439
- signedTx: c.signature,
1440
- txHash: c.txHash ?? ""
1436
+ signedTx: a.signature,
1437
+ txHash: a.txHash ?? ""
1441
1438
  };
1442
- } catch (c) {
1443
- if (c instanceof g) throw c;
1444
- const l = c instanceof Error ? c.message : String(c);
1439
+ } catch (a) {
1440
+ if (a instanceof g) throw a;
1441
+ const c = a instanceof Error ? a.message : String(a);
1445
1442
  throw new g(
1446
1443
  p.SIGNATURE_FAILED,
1447
- `트랜잭션 서명에 실패했습니다 (${e}): ${l}`,
1448
- c
1444
+ `트랜잭션 서명에 실패했습니다 (${e}): ${c}`,
1445
+ a
1449
1446
  );
1450
1447
  }
1451
1448
  }
@@ -1458,12 +1455,9 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1458
1455
  async sendTransaction(e, s, t) {
1459
1456
  if (this.ensureAuthenticated(), !this.userId)
1460
1457
  throw new g(p.AUTH_NOT_AUTHENTICATED, "사용자 ID를 찾을 수 없습니다");
1461
- await this.ensurePinForSigning();
1462
1458
  const n = await this.withResolvedGasAndFee(s, e);
1463
1459
  n.from || (n.from = (await this.resolveAddress(t == null ? void 0 : t.index)).address);
1464
- let o;
1465
- this.walletProvider.prepare && (o = (await this.walletProvider.prepare("send", { tx: n })).uuid);
1466
- const i = Ze(e);
1460
+ const o = Ze(e);
1467
1461
  if (!await this.confirmation.requestConfirmation({
1468
1462
  type: "send",
1469
1463
  chainId: e,
@@ -1475,38 +1469,39 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
1475
1469
  gasPrice: n.gasPrice,
1476
1470
  maxFeePerGas: n.maxFeePerGas,
1477
1471
  maxPriorityFeePerGas: n.maxPriorityFeePerGas,
1478
- nativeSymbol: i.symbol,
1479
- nativeDecimals: i.decimals,
1472
+ nativeSymbol: o.symbol,
1473
+ nativeDecimals: o.decimals,
1480
1474
  dappName: t == null ? void 0 : t.dappName,
1481
1475
  accountName: t == null ? void 0 : t.accountName
1482
1476
  }))
1483
1477
  throw new g(p.USER_REJECTED, "사용자가 트랜잭션을 거부했습니다");
1484
1478
  try {
1485
- const c = await this.withPinRetry(async () => {
1486
- if (this.walletProvider.sendTransaction)
1479
+ const a = await this.withPinRetry(async () => {
1480
+ let c;
1481
+ if (this.walletProvider.prepare && (c = (await this.walletProvider.prepare("send", { tx: n })).uuid), await this.ensureVerifiedPin(), this.walletProvider.sendTransaction)
1487
1482
  return (await this.walletProvider.sendTransaction(
1488
1483
  this.userId,
1489
1484
  e,
1490
1485
  n,
1491
- o
1486
+ c
1492
1487
  )).txHash;
1493
1488
  const l = await this.walletProvider.signTransaction(
1494
1489
  this.userId,
1495
1490
  e,
1496
1491
  n,
1497
1492
  t == null ? void 0 : t.index,
1498
- o
1493
+ c
1499
1494
  );
1500
1495
  return l.txHash ?? l.signature;
1501
1496
  });
1502
- return { chainId: e, txHash: c, status: "pending" };
1503
- } catch (c) {
1504
- if (c instanceof g) throw c;
1505
- const l = c instanceof Error ? c.message : String(c);
1497
+ return { chainId: e, txHash: a, status: "pending" };
1498
+ } catch (a) {
1499
+ if (a instanceof g) throw a;
1500
+ const c = a instanceof Error ? a.message : String(a);
1506
1501
  throw new g(
1507
1502
  p.TRANSACTION_FAILED,
1508
- `트랜잭션 전송에 실패했습니다 (${e}): ${l}`,
1509
- c
1503
+ `트랜잭션 전송에 실패했습니다 (${e}): ${c}`,
1504
+ a
1510
1505
  );
1511
1506
  }
1512
1507
  }
@@ -2113,7 +2108,7 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
2113
2108
  this.pinStore.set(i), u.log("[CROSSx] PIN 캐시 완료 (verifyPin 미지원, 로컬 전용)"), t();
2114
2109
  return;
2115
2110
  }
2116
- if (!await this.confirmation.showPinInputPrompt({
2111
+ const o = await this.confirmation.showPinInputPrompt({
2117
2112
  verifyMode: !0,
2118
2113
  errorMessage: e,
2119
2114
  lockExpiresAt: s,
@@ -2126,15 +2121,18 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
2126
2121
  if (this.pinStore.clear(), c instanceof g) {
2127
2122
  if (c.code === p.PIN_WRONG)
2128
2123
  return { ok: !1, error: "Incorrect PIN. Please try again." };
2124
+ if (c.code === p.PIN_INVALID)
2125
+ return { ok: !1, error: c.message };
2129
2126
  if (c.code === p.PIN_LOCKED)
2130
2127
  return { ok: !1, error: "Too many failed attempts. Your account is temporarily locked.", lockExpiresAt: (a = c.details) == null ? void 0 : a.lockExpiresAt };
2131
2128
  }
2132
2129
  throw c;
2133
2130
  }
2134
2131
  }
2135
- }))
2132
+ });
2133
+ if (!o)
2136
2134
  throw new g(p.PIN_CANCELLED, "사용자가 PIN 입력을 취소했습니다");
2137
- t();
2135
+ this.pinStore.set(o), u.log("[CROSSx] PIN 갱신 완료 (verify 모달 닫힘)"), t();
2138
2136
  } catch (o) {
2139
2137
  throw n(o), o;
2140
2138
  } finally {
@@ -2183,6 +2181,8 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
2183
2181
  if (n instanceof g)
2184
2182
  if (n.code === p.PIN_WRONG)
2185
2183
  s = "Incorrect PIN. Please enter your current PIN.";
2184
+ else if (n.code === p.PIN_INVALID)
2185
+ s = n.message;
2186
2186
  else if (n.code === p.PIN_LOCKED) {
2187
2187
  const o = n.details;
2188
2188
  t = o == null ? void 0 : o.lockExpiresAt, s = "Too many failed attempts. Your account is temporarily locked.";
@@ -2201,6 +2201,10 @@ const Js = 2e3, It = 6e4, Zs = 1e3, Xs = 1e4, Qs = "0x77359400", Et = "0x3B9ACA0
2201
2201
  s = "Incorrect PIN. Please try again.";
2202
2202
  continue;
2203
2203
  }
2204
+ if (n.code === p.PIN_INVALID) {
2205
+ s = n.message;
2206
+ continue;
2207
+ }
2204
2208
  if (n.code === p.PIN_LOCKED) {
2205
2209
  const o = n.details;
2206
2210
  t = o == null ? void 0 : o.lockExpiresAt, s = "Too many failed attempts. Your account is temporarily locked.";
@@ -4696,7 +4700,7 @@ class Le {
4696
4700
  */
4697
4701
  async verifyPin(e) {
4698
4702
  const s = { password: e };
4699
- return (await this.request("POST", "/mnemonic/verify-password", s)).verified;
4703
+ return (await this.request("POST", "/mnemonic/verify-password", s)).valid;
4700
4704
  }
4701
4705
  /**
4702
4706
  * POST /mnemonic/change-password — PIN 변경
@@ -5894,6 +5898,52 @@ const gn = `
5894
5898
  color: var(--cx-on-primary) !important;
5895
5899
  }
5896
5900
 
5901
+ /* ── Sign/Send modals: max-height + sticky buttons ─────────── */
5902
+ .__crossx-card--send-tx,
5903
+ .__crossx-card--sign-tx,
5904
+ .__crossx-card--sign-msg,
5905
+ .__crossx-card--sign-typed {
5906
+ display: flex;
5907
+ flex-direction: column;
5908
+ max-height: 90vh;
5909
+ }
5910
+ /* sign-tx: col-right-sign이 스크롤 담당, raw-tx는 자연 높이 */
5911
+ .__crossx-card--sign-tx .__crossx-col-right-sign {
5912
+ flex: 1;
5913
+ min-height: 0;
5914
+ overflow-y: auto;
5915
+ }
5916
+ .__crossx-card--sign-tx .__crossx-col-right-sign .__crossx-rows { flex-shrink: 0; }
5917
+ .__crossx-card--sign-tx .__crossx-raw-tx { max-height: none; overflow-y: visible; }
5918
+ .__crossx-card--send-tx .__crossx-body,
5919
+ .__crossx-card--sign-tx .__crossx-body,
5920
+ .__crossx-card--sign-msg .__crossx-body,
5921
+ .__crossx-card--sign-typed .__crossx-body {
5922
+ flex: 1;
5923
+ min-height: 0;
5924
+ display: flex;
5925
+ flex-direction: column;
5926
+ overflow: hidden;
5927
+ }
5928
+ .__crossx-card--send-tx .__crossx-body-cols,
5929
+ .__crossx-card--sign-tx .__crossx-body-cols,
5930
+ .__crossx-card--sign-msg .__crossx-body-cols,
5931
+ .__crossx-card--sign-typed .__crossx-body-cols {
5932
+ flex: 1;
5933
+ min-height: 0;
5934
+ overflow-y: auto;
5935
+ }
5936
+ .__crossx-card--send-tx .__crossx-btn-row,
5937
+ .__crossx-card--sign-tx .__crossx-btn-row,
5938
+ .__crossx-card--sign-msg .__crossx-btn-row,
5939
+ .__crossx-card--sign-typed .__crossx-btn-row,
5940
+ .__crossx-card--send-tx .__crossx-body > .__crossx-approve-btn,
5941
+ .__crossx-card--sign-tx .__crossx-body > .__crossx-approve-btn,
5942
+ .__crossx-card--sign-msg .__crossx-body > .__crossx-approve-btn,
5943
+ .__crossx-card--sign-typed .__crossx-body > .__crossx-approve-btn {
5944
+ flex-shrink: 0;
5945
+ }
5946
+
5897
5947
  /* ── Transaction Progress / Complete Modal ─────────────────── */
5898
5948
  @keyframes __crossx-spinner {
5899
5949
  to { transform: rotate(360deg); }
@@ -6153,6 +6203,10 @@ const gn = `
6153
6203
  overflow: hidden !important;
6154
6204
  }
6155
6205
  .__crossx-card--wallet-selector .__crossx-wallet-list { max-height: 203px; }
6206
+ .__crossx-card--send-tx,
6207
+ .__crossx-card--sign-tx,
6208
+ .__crossx-card--sign-msg,
6209
+ .__crossx-card--sign-typed { overflow: hidden; max-height: 92vh; }
6156
6210
  .__crossx-login-btn-row {
6157
6211
  flex-direction: column;
6158
6212
  }
@@ -6266,6 +6320,11 @@ const gn = `
6266
6320
  flex-direction: column;
6267
6321
  gap: 8px;
6268
6322
  }
6323
+ .__crossx-col-right-sign {
6324
+ display: flex;
6325
+ flex-direction: column;
6326
+ gap: 16px;
6327
+ }
6269
6328
 
6270
6329
  /* ── Landscape for signing/transaction modals ──────────── */
6271
6330
  @media (orientation: landscape) and (max-height: 500px) {
@@ -6280,7 +6339,7 @@ const gn = `
6280
6339
  border-radius: 24px;
6281
6340
  border-bottom: 4px solid var(--cx-border);
6282
6341
  max-height: calc(100vh - 32px);
6283
- overflow-y: auto;
6342
+ overflow: hidden;
6284
6343
  animation: __crossx-slide-up 0.18s ease;
6285
6344
  }
6286
6345
  .__crossx-card--send-tx .__crossx-header,
@@ -6305,7 +6364,8 @@ const gn = `
6305
6364
  .__crossx-card--wallet-selector .__crossx-body-cols {
6306
6365
  flex-direction: row;
6307
6366
  gap: 24px;
6308
- align-items: flex-start;
6367
+ align-items: stretch;
6368
+ overflow: hidden;
6309
6369
  }
6310
6370
  .__crossx-body-cols > * { flex: 1; min-width: 0; }
6311
6371
  .__crossx-col-left { gap: 8px; }
@@ -6314,10 +6374,16 @@ const gn = `
6314
6374
  flex-direction: column;
6315
6375
  align-items: flex-end;
6316
6376
  }
6317
- .__crossx-card--sign-tx .__crossx-raw-tx { max-height: 120px; }
6377
+ .__crossx-card--send-tx .__crossx-col-left,
6378
+ .__crossx-card--sign-tx .__crossx-col-left,
6379
+ .__crossx-card--sign-msg .__crossx-col-left,
6380
+ .__crossx-card--sign-typed .__crossx-col-left,
6381
+ .__crossx-card--sign-tx .__crossx-col-right-sign { overflow-y: auto; }
6382
+ .__crossx-card--sign-tx .__crossx-col-right-sign .__crossx-rows { flex-shrink: 0; }
6383
+ .__crossx-card--sign-tx .__crossx-raw-tx { max-height: none; overflow-y: visible; }
6318
6384
  .__crossx-card--sign-msg .__crossx-msg-raw,
6319
- .__crossx-card--sign-msg .__crossx-msg-box { max-height: 130px; }
6320
- .__crossx-card--sign-typed .__crossx-td-rows { max-height: 130px; overflow-y: auto; }
6385
+ .__crossx-card--sign-msg .__crossx-msg-box { max-height: none; overflow-y: auto; }
6386
+ .__crossx-card--sign-typed .__crossx-td-rows { max-height: none; overflow-y: auto; }
6321
6387
  .__crossx-col-left > .__crossx-divider { display: none; }
6322
6388
  .__crossx-card--wallet-selector {
6323
6389
  overflow: hidden !important;
@@ -6739,7 +6805,7 @@ function Y(r, e) {
6739
6805
  }
6740
6806
  function In(r, e) {
6741
6807
  const s = e, t = Je(), n = r.to ? `<span class="__crossx-addr-text">${se(r.to)}</span>
6742
- <button class="__crossx-copy-btn" data-copy="${U(r.to)}" title="Copy address">${fe}</button>` : "<span>—</span>", o = Rs(r), i = r.data && r.data !== "0x" ? r.data : "0x", a = document.createElement("div");
6808
+ <button class="__crossx-copy-btn" data-copy="${U(r.to)}" title="Copy address">${fe}</button>` : "<span>—</span>", o = Rs(r), i = r.data ?? "0x", a = document.createElement("div");
6743
6809
  return a.id = te, a.innerHTML = `
6744
6810
  <div class="__crossx-card __crossx-card--migration __crossx-card--sign-tx" style="${ce(s)}" role="dialog" aria-modal="true" aria-labelledby="__crossx-ttl">
6745
6811
  <div class="__crossx-header">
@@ -6758,14 +6824,16 @@ function In(r, e) {
6758
6824
  <span class="__crossx-addr-pill-text">${se(r.from)}</span>
6759
6825
  </div>
6760
6826
  <p class="__crossx-warning">After you sign, changes or cancellations are not possible.</p>
6761
- <hr class="__crossx-divider">
6827
+ </div>
6828
+ <hr class="__crossx-divider __crossx-divider--cols">
6829
+ <div class="__crossx-col-right-sign">
6762
6830
  <div class="__crossx-rows">
6763
6831
  ${Y("To", n)}
6764
6832
  ${Y("Network", `<span>${Ps(r.chainId)}</span>`)}
6765
6833
  ${o}
6766
6834
  </div>
6835
+ <pre class="__crossx-raw-tx">${U(i)}</pre>
6767
6836
  </div>
6768
- <pre class="__crossx-raw-tx">${U(i)}</pre>
6769
6837
  </div>
6770
6838
  <div class="__crossx-btn-row">
6771
6839
  <button class="__crossx-cancel-btn" id="__crossx-cancel-btn">Cancel</button>
@@ -1 +1 @@
1
- {"version":3,"file":"CROSSxSDK.d.ts","sourceRoot":"","sources":["../../src/sdk/CROSSxSDK.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"CROSSxSDK.d.ts","sourceRoot":"","sources":["../../src/sdk/CROSSxSDK.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexus-cross/crossx-sdk-core",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "CROSSx Core SDK - Vanilla JavaScript Embedded Wallet SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",