Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the multioutput example to support Bitcoin #113

Merged
merged 22 commits into from
Apr 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix multioutput interact script
  • Loading branch information
lukema95 committed Jan 16, 2024
commit 4ef75b147a0c70b078ff9da4f17977d178dffb53
4 changes: 2 additions & 2 deletions omnichain/multioutput/tasks/interact.ts
Original file line number Diff line number Diff line change
@@ -10,15 +10,15 @@ const main = async (args: any, hre: HardhatRuntimeEnvironment) => {

const destinationTokens = args.targetToken.split(",");

let bitcoinAddress = "0x01";
let bitcoinAddress = "";
let data;
if (args.btcRecipient) {
bitcoinAddress = args.btcRecipient;
}

const bitcoinAddressBytes = utils.solidityPack(
["bytes"],
[utils.toUtf8Bytes(args.btcRecipient)]
[utils.toUtf8Bytes(bitcoinAddress)]
);

const tokensBytes = ethers.utils.concat(