diff --git a/postBuild.js b/postBuild.js index 92e9ca4..d724b6f 100644 --- a/postBuild.js +++ b/postBuild.js @@ -24,7 +24,7 @@ Access-Control-Allow-Origin = "*" console.error(err); } }); - await fs.cp('./faq', './site_dist/docs', { recursive: true }, (err) => { + await fs.cp('./faq', './site_dist/faq', { recursive: true }, (err) => { if (err) { console.error(err); } diff --git a/site_dist/docs/README.md b/site_dist/docs/README.md index e190380..26c2b71 100644 --- a/site_dist/docs/README.md +++ b/site_dist/docs/README.md @@ -1,100 +1,1294 @@ -# Metastellar FAQ -Please See if your question is anwsered by the FAQ + +# Metastellar.io +
+ + + +
+

Add Metamask
to your 🪐stellar/soroban application

+

In one step - copy📑 callMetaStellar(method, params)

+

also install metamask flask (until offical launch)

+ +
+
+ +
+ + +
+
+
+
+ + + + + +The metastellar.io team manages and maintains the stellar wallet plugin for metamask. If implemented correctly, the end user should be aware they are using the stellar chain, but the experence should never +feel like they are using a 'plug-in' hince the term snap. + +The metastellar snap is a piece of code that lives inside the metamask wallet, and is automatically installed when requested by a web app. +Connecting to the Stellar network using the snap is covered in ✨connect and install portion of the docs. + +After the user installs the snap, a stellar wallet automatically created for them. +This wallet can be accessed, using the standard metamask rpc api. This means that if you have experence developing with metamask in ethereum this shouldn't be too different. (sadly, no ~~web3.js~~ stellar3.js yet 🤞). + +As a developer basic idea, is you shouldn't have to focus on OUR wallet, you should focus on YOUR app. +Ideally the flow would be. + +[connect Metamask] -> [create Stellar TXN] -> [call signTxn] -> [submit signed txn] ✅ + +#### happy hacking + + +
+ +# Quick Start + +
    +
  1. There is NO npm package required!
  2. +
  3. The only thing required is that the users computer has metamask flask
    (just normal metamask after launch)
  4. +
  5. install flask
  6. +
+ + + ## ✨ Connect and install + The wallet_requestSnaps method is used to connect to MetaMask and installs the Stellar Wallet if it's not already installed. This also generates the user's wallet. + ```typescript + + /* //request connection */ + async function connect(){ + const connected = await ethereum.request({ + method: 'wallet_requestSnaps', + params: { + [`npm:stellar-snap`]: {} + }, + }); + } + + ``` + + +
+ + + + ## ✨ Calling Stellar Methods + After the snap is connected the wallet_invokeSnap method is used to call Stellar Methods + + ### 🟠 get wallet address +```typescript + + //evoke a stellar method + + const request = { + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, + request:{ + method: `${'Stellar-Method-Name'}` + } + } + } + let address = await ethereum.request(request) + + + // gets the stellar address + address = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `getAddress`, + }} + }) + + ``` + + + + + ### 🌐 Specify a Network + + by default all methods are treated as mainnet, but any method can be issued to the testnet + by using the testnet param. The testnet parameter can be used with all methods. If it dosn't make + since for a certain method it is simply ignored silently. + + example: + ```typescript + const result = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `getBalance`, + params:{ + testnet: true + } + }} + }) + ``` + + ### 🔏 Sign a Transaction + + Parameters are nested, parameters inside parameters + + ```typescript + //evoke a stellar method with arguments + let stellarTransactionXDR = endTransaction.build().toXDR(); //transaction from the stellar-js-sdk + const args = { + transaction: String(stellarTransactionXDR), + network:'testnet' + } + const request = { + method: 'wallet_invokeSnap', //constant across all method calls + params:{snapId:'npm:stellar-snap', request:{ //this too + method:`${'signTransaction'}`, + params:args + } + } + } + let SignedTransactionXDR = await ethereum.request(request) + + // example method call with parameters + SignedTransactionXDR = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `signTransaction`, + params:{ + transaction: stellarTransactionXDR + testnet:true + } + + }} + }) + ``` + + + + + + +
+
+
+
+ +# Calling Stellar RPC Methods + +The easiest way to interact with the wallet is by coping the metastellar function + + + +## 📎 copy the callMetaStellar Function +```javascript + + async function callMetaStellar(method, params){ + if(method === 'connect'){ //method = 'connect' will connect the snap + return await ethereum.request({ + method: 'wallet_requestSnaps', + params: { ['npm:stellar-snap']: {} - }, + }, }); - console.log(connected) - setConnected(true) - return true; - }catch(e){ - if (e.toString() === "ReferenceError: ethereum is not defined"){ - alert("Install Metamask") - } - alert(e); - setConnected(false); - return false; } + + if(params === undefined){ + params = {} + } + const rpcPacket = { + method: 'wallet_invokeSnap', + params:{ + snapId:'npm:stellar-snap', + request: {'method':method, params:params} + } + } + console.log("in call Metastellar here"); + return await ethereum.request(rpcPacket); + } +``` +invoke the callMetaStellar function + +```typescript +//connect: +const connected:boolean = await callMetaStellar('connect'); +//getAddress: +const address:string = await callMetaStellar('getAddress'); +//signTransaction: +interface signTxnParams{ + transaction:string //StellarSDK.TransactionXDR as String) + testnet:boolean } +let params = {transaction:txn, testnet:true} +const signedTxn:string = await callMetaStellar('signTransaction', params) +//returns a signed stellar transaction in XDR as a string +``` +
+
+
+
-async function displayAddress(){ - try{ - const request = { +## 'getAddress' +returns the accounts address as a string +```typescript + const address = await ethereum.request({ method: 'wallet_invokeSnap', - params: {snapId:`npm:stellar-snap`, - request:{ - method: `${'showAddress'}` + params: {snapId:`npm:stellar-snap`, request:{ + method: `getAddress`, + }} + }) +``` + +## 'getAccountInfo' +grabs infomation related to the account +requires account to be funded +```typescript + const info = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `getAccountInfo`, + params:{ + testnet?: true | false + } + }} + }) +``` + + + + +## 'getBalance' +gets the XLM balance of a wallet, returns 0 in unfunded wallets + +```typescript + const balance = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `getBalance`, + params:{ + testnet?: true | false } + }} + }) +``` + + + +## 'transfer' +this method is used to transfer xlm and requires a funded account. +after being called the wallet will generate a transaction, then prompt a user to accept +if the user accepts the transaction it will be signed and broadcast to the network. +will return transaction infomation. And send a notification stating whether the transaction was +successful. + +returns: StellarSDK.TransactionResult +```typescript +const transactionInfomation = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, request:{ + method: `getBalance`, + params:{ + to: 'stellarAddress' //string + amount: '1000.45' //string represention of amount xlm to send + testnet?: true | false } + }} + }) + +``` + + + +## 'fund' +this method funds the users wallet on the testnet, +```typescript +const success = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:`npm:stellar-snap`, + request:{ + method: 'fund' } - let address = await ethereum.request(request); } - catch(e){ - alert(e); + }) +``` + +## 'signTransaction' +This method signs an Arbitary Transaction +```typescript + async function signTransaction(){ + const transaction = new StellarSdk.TransactionBuilder(account, { fee, networkPassphrase: "Test SDF Network ; September 2015" }); + // Add a payment operation to the transaction + console.log("transaction builder initilazed"); + await transaction.addOperation(StellarSdk.Operation.payment({ + destination: receiverPublicKey, + // The term native asset refers to lumens + asset: StellarSdk.Asset.native(), + // Specify 350.1234567 lumens. Lumens are divisible to seven digits past + // the decimal. They are represented in JS Stellar SDK in string format + // to avoid errors from the use of the JavaScript Number data structure. + amount: '350.1234567', + })); + console.log("operations added") + // Make this transaction valid for the next 30 seconds only + await transaction.setTimeout(30); + console.log("timeout set"); + // Uncomment to add a memo (https://www.stellar.org/developers/learn/concepts/transactions.html) + // .addMemo(StellarSdk.Memo.text('Hello world!')) + const endTransaction = await transaction.build(); + const xdrTransaction = endTransaction.toXDR(); + console.log(xdrTransaction); + const response = await ethereum.request({ + method: 'wallet_invokeSnap', + params:{snapId:snapId, request:{ + method: 'signTransaction', + params:{ + transaction: xdrTransaction, + testnet: testnet + } + }} + }) + console.log(response); + } +``` + +## signAndSubmitTransaction + if(!wallet_funded){ + await Screens.RequiresFundedWallet(request.method, wallet.address); + } + return await operations.signAndSubmitTransaction(params.transaction); + + +## 'getDataPacket' + +retreves wallet info about the user, including names, addressess, and balances + +returns DataPacket + +```typescript + const walletInfo: DataPacket = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, request:{ + method: `getDataPacket`, + }} + }) +``` + + +## setCurrentAccount + +changes the connected account + +```typescript + interface setCurrentAccountParams :{ + address:string + } + const switchAccountParams:setCurrentAccountParams = { + address:`${WalletAddress}` + } + const result = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, + request:{ + method: switchAccountParams, + params + } } + }) +``` + +## showAddress + +displays the stellar address and a qr code in the extension + +returns: boolean +```typescript + const result = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, + request:{ + method: `showAddress`, + } + } + }) +``` + + +## 'createAccount' + +creates a new Account on the wallet + +parameters: +{name:string} + +returns: +bool + +```typescript + interface createAccountParams{ + name: string + } + + const createAccountResult = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, + request: { + method: `createAccount`, + params: { + name: `${"Account-name"}` + } + }} + }) + +``` + + +## listAccounts + + returns a list of all stellar accounts in the wallet + + ```typescript + const accountList = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, + request: { + method: `listAccounts`, + }} + }) + ``` + +## renameAccount + + selects an account by address and changes its name + + ```typescript + + const result = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, + request:{ + method: `renameAccount`, + params:{ + address: `${accountAddress}`, + name: `${"New-Account-Name"}` + } + }} + }) + ``` + +## importAccount + + opens a dialog where the user is prompted to import their private key, if they choose + + throws on error + + ```typescript + const success:boolean = await ethereum.request({ + method: 'wallet_invokeSnap', + params: { + snapId:`npm:stellar-snap`, + request:{ + method: "importAccount", + }} + }) + ``` + + + +## getAssets + +gets all assets for the current Wallet + +returns walletAsset[] + +```typescript + const assets: walletAsset[] = await ethereum.request({ + method: 'wallet_invokeSnap', + params: { + snapId:`npm:stellar-snap`, + request:{ + method: `getAssets`, + params:{ + testnet: true + } + }} +}) +``` + +## sendAuthRequest + +sendAuthRequest is used to sign-in with + +```typescript + const result = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {`npm:stellar-snap`, request:{ + method: `sendAuthRequest`, + params:{ + url: `${endpoint}`, + data: Object(postData), + challenge: `${toBeSigned}` + } + }} + }) +``` + +## signStr + const auth = new Auth(wallet.keyPair); + return await auth.signData(params.challenge); + +## dispPrivateKey + return await Screens.revealPrivateKey(wallet); + // -------------------------------- Methods That Require a funded Account ------------------------------------------ + +## sendAsset + if(!wallet_funded){ + await Screens.RequiresFundedWallet(request.method, wallet.address); + throw new Error('Method Requires Account to be funded'); + } + return await operations.transferAsset(params.to, params.amount, params.asset); + + + +## createFederationAccount + return await Screens.setUpFedAccount(wallet); + + +## 'Soroban' +The Wallet also supports sorroban, To sign a SorobanCall +futurenet must be set to true on the params object. +```javascript + async function callContract() { + console.log("here in callContract"); + const sourcePublicKey = await ethereum.request({ + method: 'wallet_invokeSnap', + params: {snapId:snapId, request:{ + method: 'getAddress', + }} + }) + const server = new SorobanClient.Server('https://rpc-futurenet.stellar.org'); + + console.log("getting account") + const account = await server.getAccount(sourcePublicKey); + console.log("account is: ") + console.log(account); + + console.log(SorobanClient); + + const contract = new SorobanClient.Contract("CCNLUNUY66TU4MB6JK4Y4EHVQTAO6KDWXDUSASQD2BBURMQT22H2CQU7") + console.log(contract) + const arg = SorobanClient.nativeToScVal("world") + console.log("arg is: ") + console.log(arg) + let call_operation = contract.call('hello', arg); + console.log(call_operation) + + let transaction = new SorobanClient.TransactionBuilder(account, { fee: "150", networkPassphrase: SorobanClient.Networks.FUTURENET }) + .addOperation(call_operation) // <- funds and creates destinationA + .setTimeout(30) + .build(); + + console.log(transaction) + + + const preparedTransaction = await server.prepareTransaction(transaction, SorobanClient.Networks.FUTURENET); + console.log("prepairedTxn: "); + console.log(preparedTransaction); + const tx_XDR = preparedTransaction.toXDR(); + const signedXDR = await ethereum.request( + {method: 'wallet_invokeSnap', + params: { + snapId:snapId, + request:{ + method: 'signTransaction', + params:{ + transaction: tx_XDR, + futurenet: true + } + } + } + } + ) + console.log(signedXDR) + try{ + + const transactionResult = await server.sendTransaction(signedXDR); + console.log(JSON.stringify(transactionResult, null, 2)); + console.log('\nSuccess! View the transaction at: '); + console.log(transactionResult) + } catch (e) { + console.log('An error has occured:'); + console.log(e); + } } - \ No newline at end of file + + +``` + +# types + +## DataPacket +An interface that contains infomation about the wallet +```typescript + +export interface DataPacket{ + name: string, //comment + currentAddress: string, + mainnetAssets?: walletAsset[], + testnetAssets?: walletAsset[], + accounts: Array<{name:String, address:String}> + mainnetXLMBalance: string, + testnetXLMBalance: string, + fedName: string | null +} + +``` + +## Wallet Asset + +a type that represents a the balance of asset held by a wallet +```typescript + +export type walletAsset = AssetBalance | NativeBalance + +``` + +## NativeBalance + +```typescript +export interface NativeBalance { + balance:string, + liquidity_pool_id?:string, + limit: string, + buying_liabilites: string, + selling_liabilites: string, + sponser?: string, + last_modified_ledger: number, + is_authorized: boolean, + is_authorized_to_maintain_liabilites: boolean, + is_clawback_enabled: boolean, + asset_type: "native", + asset_issuer: "native" + asset_code: "XLM" +} +``` + +## AssetBalance + +```typescript +export interface AssetBalance { + balance: string, //number + liquidity_pool_id?: string, //number + limit: string, //number + buying_liabilites: string, //number + selling_liabilites: string, //number + sponser?: string, //address + last_modified_ledger: number, + is_authorized: boolean, + is_authorized_to_maintain_liabilites: boolean, + is_clawback_enabled: boolean, + asset_type: "credit_alphanum4"|"credit_alphanum12" + asset_code: string, + asset_issuer: string, //address +} + +``` + + +## building from Source + +```shell +foo@bar:~$ yarn +... + +foo@bar:~$ npx mm-snap build + +... +Build success: 'src\index.ts' bundled as 'dist\bundle.js'! +Eval Success: evaluated 'dist\bundle.js' in SES! + +foo@bar:npx mm-snap serve + +Starting server... +Server listening on: http://localhost:8080 +``` +and just like that you should be good to go. + +## Key Generation and Storeage +keys are generated on the fly, anytime a method is invoked. +This works by requesting private entropy from the metamask wallet inside +of the snaps secure execution enviroment, and using that entropy to generate +a users keys. This entropy is static, and based on the users ethereum account. +This means that we at no point store keys, and the fissile material is handled +by metamask. + +## Account Recovery +Because keys are handled in this way, when a user recovers their metamask account, they will also recover their stellar +account, which means that there isn't another mnemonic to save. + diff --git a/site_dist/docs/index.html b/site_dist/docs/index.html index 300b732..d6a2c49 100644 --- a/site_dist/docs/index.html +++ b/site_dist/docs/index.html @@ -7,21 +7,128 @@ + + + + + + + + + +
+ + + + + diff --git a/site_dist/faq/.nojekyll b/site_dist/faq/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/site_dist/faq/README.md b/site_dist/faq/README.md new file mode 100644 index 0000000..e190380 --- /dev/null +++ b/site_dist/faq/README.md @@ -0,0 +1,100 @@ +# Metastellar FAQ +Please See if your question is anwsered by the FAQ + + + +

via GIPHY

+
+ + +# MetaStellar Wallet + +[github](https://github.com/paulfears/StellarSnap) [discord](https://discord.gg/ETQk4UcYyc) + +Metastellar wallet is a Stellar wallet for Metamask. This allows you to interact with the stellar blockchain and hold XLM with Metamask. +Metastellar can hold your XLM, stellar, and stellar assets, as well as interact with stellar web3 applications. At the current time, we do not recommend using metastellar as your primary stellar wallet, but my team and I are constantly working to improve the wallet. If you are having a problem, with the wallet please contact + + support@metastellar.io + +and we will work to get it resolved. This is open-source software and is provided as-is. We are not responsible for anything loss of funds that results from the use or misuse of this software. + +------------------------------------------- + +## Install + +to install the Stellar-Snap + +1. Make sure you have the latest version of the Metamask Browser extension, it can be installed [here](https://metamask.io/download/) +2. After metamask is installed + + + +
+
+

You can test you're installation with

+
+ +
+ +
+ + + \ No newline at end of file diff --git a/site_dist/faq/index.html b/site_dist/faq/index.html new file mode 100644 index 0000000..300b732 --- /dev/null +++ b/site_dist/faq/index.html @@ -0,0 +1,53 @@ + + + + + Document + + + + + + +
+ + + + + +