Skip to content

Commit

Permalink
Add console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter committed Aug 29, 2023
1 parent c29294c commit c8b5cd1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/starksheet-webapp/src/provider/StarknetProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,15 @@ export class StarknetProvider implements ChainProvider {
...calls,
];
}
console.log(this.connection);
console.log(this.connection.account);
console.log(
calls.map((call) => ({
contractAddress: call.to,
entrypoint: call.entrypoint,
calldata: [...call.calldata],
}))
);
return await this.connection.account.execute(
calls.map((call) => ({
contractAddress: call.to,
Expand Down

0 comments on commit c8b5cd1

Please sign in to comment.