Skip to content

Commit

Permalink
"WAVES" -> null
Browse files Browse the repository at this point in the history
  • Loading branch information
GIvanovWaves committed Dec 4, 2024
1 parent 5f87e27 commit dc12d6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/main.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function drawSignerBlock(allSignersBlock, s) {
amount: 101,
recipient: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 100001,
feeAssetId: "WAVES",
feeAssetId: null,
};
const transferParamsField = document.createElement("textarea");
transferParamsField.style.width = "300px";
Expand All @@ -204,10 +204,10 @@ function drawSignerBlock(allSignersBlock, s) {
const invokeDefaultParams = {
dApp: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 500001,
feeAssetId: "WAVES",
feeAssetId: null,
payment: [
{
assetId: "WAVES",
assetId: null,
amount: 1,
},
{
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ function drawSignerBlock(allSignersBlock: HTMLElement, s: SignerWithName) {
amount: 101,
recipient: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 100001,
feeAssetId: "WAVES",
feeAssetId: null,
};

const transferParamsField = document.createElement("textarea");
Expand All @@ -243,10 +243,10 @@ function drawSignerBlock(allSignersBlock: HTMLElement, s: SignerWithName) {
const invokeDefaultParams: InvokeArgs = {
dApp: "3N4ziXSMRverXyxHDUKKMR9MHXnB3TyU3Yh",
fee: 500001,
feeAssetId: "WAVES",
feeAssetId: null,
payment: [
{
assetId: "WAVES",
assetId: null,
amount: 1,
},
{
Expand Down

0 comments on commit dc12d6f

Please sign in to comment.