-
Notifications
You must be signed in to change notification settings - Fork 376
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
Add docs for omni-transaction-rs + near example #2289
base: master
Are you sure you want to change the base?
Conversation
This is an example that shows how to use chain signatures with NEAR to enable "Account extensions" It's a good example that shows how to use omni-transaction-rs inside of a contract. It showcases adding a secp256k1 key to an account, building actions and transactions inside a contract, making a cross-contract call to the MPC, receiving a signature from the MPC, reconstructing the signature and created a signed transaction, sending the signed transaction, and verifying that the transaction was actually successful (not updating state until its received). |
Part of #2287