@weblock-wallet/sdk 0.1.54 → 0.1.55

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.cjs CHANGED
@@ -105059,7 +105059,12 @@ var UserClient = class {
105059
105059
  try {
105060
105060
  const res = await this.client.post(
105061
105061
  `${this.baseUrl}/register-token`,
105062
- body
105062
+ body,
105063
+ {
105064
+ // register-token 은 사용자 컨텍스트가 필요한 엔드포인트이므로
105065
+ // 반드시 Authorization: Bearer <JWT> 가 포함되어야 한다.
105066
+ needsAccessToken: true
105067
+ }
105063
105068
  );
105064
105069
  const coin = this.unwrapCoin(res);
105065
105070
  if (!coin?.contractAddress) {