Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into am/engine
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-maj committed Nov 29, 2023
2 parents 965d852 + bd02d5f commit 1ed8801
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/onboarding/18 Smart Wallet/4 Infrastructure.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To use thirdweb's account abstraction infrastructure, you need to setup a billin

**Pricing**:

- **Bundler**: Transaction bundle calls (non-sponsored calls) are free to use.
- **Paymaster**: 10% premium on top of network fee based on your usage.
- **Bundler**: 10% premium on top of network fee
- **Paymaster**: 10% premium on top of network fee

Find more information on the different billing tiers by visiting [thirdweb's pricing page](https://thirdweb.com/pricing).
4 changes: 2 additions & 2 deletions docs/onboarding/2 Explore/Contracts/Marketplace.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ You could use the Marketplace contract to:
<div className="col col--6" style={{ marginTop: 8 }}>
<QuickstartCard
name="Guide: Create an NFT Marketplace with the SDK"
link="https://portal.thirdweb.com/guides/nft-marketplace-with-typescript-next"
link="https://blog.thirdweb.com/guides/nft-marketplace-with-typescript-next"
image="/assets/icons/education.png"
/>
</div>
<div className="col col--6" style={{ marginTop: 8 }}>
<QuickstartCard
name="Guide: List an NFT For Auction and Place a Bid with the SDK"
link="https://portal.thirdweb.com/guides/auction-button-react"
link="https://blog.thirdweb.com/guides/auction-button-react"
image="/assets/icons/education.png"
/>
</div>
Expand Down
5 changes: 1 addition & 4 deletions docs/onboarding/21 Embedded Wallet/5 FAQ.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ If you continue to run into a console error, please contact us with more details

thirdweb can create up to 100 wallets/second by default, and can support higher limits (up to 3,000 wallets/second) upon request.

### Where can users see assets in their embedded wallet
### Where can users see assets in their embedded wallet?

Users can login to their embedded wallet at https://ews.thirdweb.com/wallet and see the assets held in it.

Expand Down Expand Up @@ -86,6 +86,3 @@ Our security architecture has been audited by HackerOne and we have an ongoing b

Using Shamir Secret Sharing technology, your customers’ assets are safe even in the event that thirdweb or you are compromised. This is because the attacker will only be able to access 1 of the 3 shards, and that is not enough to reconstruct the private key.

### Is there MFA/2FA for additional security?

Soon, developers will be able to toggle on the option for users to add additional security to their social wallet by adding a user-set password.
6 changes: 4 additions & 2 deletions docs/typescript/thirdwebsdk.sdk.contractdeployer.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const txResult = await sdk.deployer.deployPublishedContract(
"{{publisher_address_or_ens}}",
"{{contract_name}}",
[param1, param2],
version,
);
```

Expand All @@ -127,9 +128,10 @@ the name of the published contract to deploy. ex: TokenERC721

array of constructor arguments for the contract.

### version
### version (optional)

version of the published contract. defaults to 'latest'.
A `string` that needs to match the version displayed in the contract's publish page - or "latest" for the latest version.
Defaults to "latest" if not specified.

</details>

Expand Down

0 comments on commit 1ed8801

Please sign in to comment.