Open
Conversation
andrewkmin
reviewed
May 23, 2025
|
|
||
| For detailed code snippets and an integration guide, refer to the [Biconomy documentation](https://docs.biconomy.io/account/signers/turnkey). | ||
| For detailed code snippets and an integration guide, refer to the [Biconomy documentation](https://docs.biconomy.io/tutorials/signers/turnkey/). | ||
|
|
Contributor
There was a problem hiding this comment.
should we pick one or the other? or maybe tweak the organization a little bit?
Create a Biconomy Smart Account and add a Turnkey signer to manage your private key and authentication methods by using Turnkey's API.
Ethereum's latest EIP-7702 standard gives superpowers to Externally Owned Accounts (EOAs). Biconomy has a guide on how to leverage gas abstracted transactions with Turnkey and Biconomy, enabling Turnkey EOAs to become smart accounts through delegation to Nexus. The tutorial showcases gas abstracted batch execution - users can pay gas fees with ERC20 tokens from their EOA. Refer to [Biconomy documentation](https://docs.biconomy.io/smarteoa/demos/turnkey-7702-gasless/) to get started.
For a more generalized integration guide, refer to the [Biconomy <> Turnkey tutorial](https://docs.biconomy.io/tutorials/signers/turnkey/).
andrewkmin
reviewed
May 23, 2025
|
|
||
| ```javascript | ||
| eth.tx.to == '<TOKEN_CONTRACT>' && | ||
| eth.tx.data[0..4] == '<ERC20_FUNCTION_SELECTOR>' |
Contributor
There was a problem hiding this comment.
this will actually have to be [0..10]
andrewkmin
reviewed
May 23, 2025
| <Accordion title="After a limit order is filled, how can I remove/null a policy programmatically?"> | ||
| As long as the DA user remains authorized, they can remove policies programmatically. If they’ve been removed from the quorum, policy deletion will require the user’s explicit approval. | ||
|
|
||
| **<u>NOTE:</u>** Turnkey is looking to support the concept of 'one-time-use policies' to make it easier to manage redundany policies. |
Contributor
There was a problem hiding this comment.
tiny nit: redundany --> redundant
andrewkmin
reviewed
May 23, 2025
| Delegated access works by creating a specialized business-controlled user within each end-user’s sub-organization that has carefully scoped permissions to perform only specific actions, such as signing transactions to designated addresses. This can enable your backend to do things like: | ||
|
|
||
| ## Implementation flow | ||
| - Automate common transactions (e.g., staking, redemptions) |
Contributor
There was a problem hiding this comment.
just curious, did you manually make any of these formatting changes? guessing it's just the result of modifying some files via Mintlify UI (no big deal either way!)
andrewkmin
reviewed
May 23, 2025
| ### EVM and SVM-Specific Strategies | ||
|
|
||
| <Accordion title="Are time-bound transactions supported?"> | ||
| Yes, on Solana via `solana.tx.recent_blockhash`, which restricts a transaction’s validity to a ~60–90 second window. Not ideal for delayed executions (e.g. limit orders), but useful for immediate, single-use actions. |
Contributor
There was a problem hiding this comment.
should we link to a resource to learn more? something like https://solana.com/developers/guides/advanced/confirmation#transaction-confirmation-tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated the text to accurately reflect the package name to @turnkey/solana (previously @turnkey/with-solana)