Skip to content

Commit

Permalink
pass signer to valist create (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettCleary authored May 3, 2024
1 parent 749fa81 commit c16c265
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperplay/cli",
"version": "2.11.4",
"version": "2.11.5",
"description": "Hyperplay CLI",
"author": "HyperPlay Labs, Inc.",
"bin": {
Expand Down
3 changes: 2 additions & 1 deletion src/commands/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ export default class Publish extends Command {
if (provider === undefined){
this.error('provider is undefined')
}
const valist = await create(provider, { metaTx, ...Publish.options });

const valist = await create(wallet, { metaTx, ...Publish.options });

const address = await wallet.getAddress();
const chainId = await wallet.getChainId();
Expand Down

0 comments on commit c16c265

Please sign in to comment.