Skip to content

Commit

Permalink
Merge pull request #173 from VWBL/[email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
thashimoto1998 authored Sep 25, 2024
2 parents cc5613c + 64534c3 commit 9fe5fca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/xrpl/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vwbl-sdk-xrpl",
"description": "VWBL SDK for XRPL",
"version": "0.1.0",
"version": "0.1.1",
"main": "dist/packages/xrpl/src/index.js",
"types": "dist/packages/xrpl/src/index.d.ts",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/xrpl/src/vwbl/VWBLXRPL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class VWBLXRPL {
isTransferable: boolean,
isBurnable: boolean
) {
const TagId = 11451419;
const TagId = 88990334;
let flags = 0;
if (isTransferable) flags += 8;
if (isBurnable) flags += 1;
Expand Down Expand Up @@ -129,7 +129,7 @@ export class VWBLXRPL {
);
this.keyMap.set(metadataUrl, key);

const TagId = 11451419;
const TagId = 88990334;
let flags = 0;
if (isTransferable) flags += 8;
if (isBurnable) flags += 1;
Expand Down

0 comments on commit 9fe5fca

Please sign in to comment.