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

GMS-1207: improves how params are accepts #143

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion clients/erc20.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export class ERC20Client {
public async populateTransfer(
to: PromiseOrValue<string>,
amount: PromiseOrValue<BigNumberish>,
overrides?: Overrides & { from?: PromiseOrValue<string> }
overrides: Overrides & { from?: PromiseOrValue<string> } = {}
): Promise<PopulatedTransaction> {
return this.contract.populateTransaction.transfer(to, amount, overrides);
}
Expand Down
2 changes: 1 addition & 1 deletion clients/erc721-mint-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export class ERC721MintByIDClient {
public async nonces(
provider: Provider,
tokenId: PromiseOrValue<BigNumberish>,
overrides?: CallOverrides
overrides: CallOverrides = {}
): Promise<BigNumber> {
return await this.contract.connect(provider).nonces(tokenId, overrides);
}
Expand Down
Loading