Skip to content

Commit

Permalink
chore: remove origin
Browse files Browse the repository at this point in the history
  • Loading branch information
aganglada committed Feb 12, 2025
1 parent 31706bd commit 2eccbf7
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions packages/keyring-api/docs/sol-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ Signs and sends a transaction to the Solana blockchain.
- **Transaction intent (required)**
- Type: `object`
- Properties:
- `origin` (required)
- Description: The origin of the transaction.
- Type: `string`
- Example: `https://example.com`
- `account` (required)
- Description: The account to sign the transaction.
- Type: `object`
Expand Down Expand Up @@ -55,7 +51,6 @@ Signs and sends a transaction to the Solana blockchain.
{
"method": "signAndSendTransaction",
"params": {
"origin": "https://example.com",
"account": {
"address": "1234567890"
},
Expand Down Expand Up @@ -87,10 +82,6 @@ Signs a transaction to the Solana blockchain.
- **Transaction intent (required)**
- Type: `object`
- Properties:
- `origin` (required)
- Description: The origin of the transaction.
- Type: `string`
- Example: `https://example.com`
- `account` (required)
- Description: The account to sign the transaction.
- Type: `object`
Expand Down Expand Up @@ -129,7 +120,6 @@ Signs a transaction to the Solana blockchain.
{
"method": "signTransaction",
"params": {
"origin": "https://example.com",
"account": {
"address": "1234567890"
},
Expand Down Expand Up @@ -160,10 +150,6 @@ Signs a message to the Solana blockchain.
- **Message intent (required)**
- Type: `object`
- Properties:
- `origin` (required)
- Description: The origin of the message.
- Type: `string`
- Example: `https://example.com`
- `account` (required)
- Description: The account to sign the message.
- Type: `object`
Expand Down Expand Up @@ -198,7 +184,6 @@ Signs a message to the Solana blockchain.
{
"method": "signMessage",
"params": {
"origin": "https://example.com",
"account": {
"address": "1234567890"
},
Expand Down Expand Up @@ -226,10 +211,6 @@ Signs and sends all transactions to the Solana blockchain.
- **Transaction intents (required)**
- Type: `object`
- Properties:
- `origin` (required)
- Description: The origin of the transactions.
- Type: `string`
- Example: `https://example.com`
- `transactions` (required)
- Description: The transactions to sign and send.
- Type: `array`
Expand Down Expand Up @@ -276,7 +257,6 @@ Signs and sends all transactions to the Solana blockchain.
{
"method": "signAndSendAllTransactions",
"params": {
"origin": "https://example.com",
"transactions": [
{
"transaction": "1234567890",
Expand Down

0 comments on commit 2eccbf7

Please sign in to comment.