From acdc10f08afcfea91d8b578d24d28dd69e1e7110 Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 8 Mar 2021 13:45:48 -0800 Subject: [PATCH] feat(docs): update format --- package.json | 2 +- pricing_gastx.md | 28 ++++++++ rpc_table.md | 44 ++++++++++++ snapshot.json | 175 +++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 248 insertions(+), 1 deletion(-) create mode 100644 pricing_gastx.md create mode 100644 rpc_table.md create mode 100644 snapshot.json diff --git a/package.json b/package.json index 10dcc6d..0c42e67 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "backbone-cabal-kb", - "version": "1.2.1", + "version": "1.3.0", "description": "Backbone Cabal Knowledgebase", "main": "index.js", "files": [ diff --git a/pricing_gastx.md b/pricing_gastx.md new file mode 100644 index 0000000..1322df2 --- /dev/null +++ b/pricing_gastx.md @@ -0,0 +1,28 @@ +| **values_pricing_gastx** | **\_id** | **description** | +| ------------------------------------------------------------------------------------------- | ------------- | ---------------------------------------------------------------------------------------------------------------------------- | +| 1191914 | s | Price of underlying asset | +| 3 | k | Strike price of the option. In the case of average strike options, k/s is the multiplier for the average | +| 3575742 | k/s multipler | std dev multipler of s by K | +| 5.87 | v | Volatility of the underlygin asset price, defined as the annualized standard deviation of the continuously-compounded return | +| 4.4 | r | Annual continuously-compounded risk-free interest rate | +| 0.08219178082 | tt | Time to maturity in estimated block time ~(13s = 1block) | +| 0 | d | Dividend yield, annualized, continuously-compounded | +| 10080 | m | Number of prices in the average calculation (based on BitMex contract EVO7LD) | +| | numsim | Number of Monte Carlo iterations | +| | printsds | Print standard deviation for the particular Monte Carlo calculation | +| \*The settlement price is calculated from 10080 snaps over the 7-day period (1440 per day). | | | +| Measuring Price Average (Alternative Model to BitMex) | | | +| 4 | OHLC | Open, High, Low, Close | +| 30 | Days | Periods of measurement (24 hours) | +| 120 | Total | points of price times periods of measurement | +| 120 | m | | +| 30/365 | tt | Time to Maturity | +| Max Gas Price Points | | | +| seconds per block | 15 | | +| blocks per minute | 4 | | +| minutes per hour | 60 | | +| blocks per hour | 240 | | +| blocks per day | 5760 | | +| gas price points per day | 5760 | | +| gas price points per week | 40320 | | +| gas price points per month | 1209600 | | diff --git a/rpc_table.md b/rpc_table.md new file mode 100644 index 0000000..634ddec --- /dev/null +++ b/rpc_table.md @@ -0,0 +1,44 @@ +| **Method** | **Description** | **Considerations** | +| --------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| eth_blockNumber | Returns the number of the most recent block. | | +| eth_call | Immediately executes a new message call without creating a transaction on the blockchain. | eth_call consumes 0 gas, but has a gas parameter for messages that require it. | +| eth_chainId | Returns an integer value for the currently configured Chain Id value introduced in EIP-155. Returns None if no Chain Id is available. | | +| eth_estimateGas | Estimates and returns the gas required for a transaction without adding the transaction to the blockchain. | | +| eth_gasPrice | Returns the current price per gas in Wei. | | +| eth_getBalance | Returns the balance of an account for the specified account address and integer position of storage. | | +| eth_getBlockByHash | Returns information about the block specified using the block hash. | | +| eth_getBlockByNumber | Returns information about the block specified using the block number. | | +| eth_getBlockTransactionCountByHash | Returns the number of transactions in the block specified using the block hash. | | +| eth_getBlockTransactionCountByNumber | Returns the number of transactions in the block specified using the block number. | | +| eth_getCode | Returns the code at the specified account address. | | +| eth_getFilterChanges | Polls the specified filter ID, retuning an array of logs that occurred since the last poll. | Filters are ephemeral. If Managed Blockchain needs to manage or maintain node instances for availability and performance, and an instance is replaced, filters may be deleted. We recommend that you write your application code to handle the occasional deletion of filters. | +| eth_getFilterLogs | Returns an array of all logs for the specified filter ID. | Filters are ephemeral. If Managed Blockchain needs to manage or maintain node instances for availability and performance, and an instance is replaced, filters may be deleted. We recommend that you write your application code to handle the occasional deletion of filters. | +| eth_getLogs | Returns an array of all logs for a specified filter object. | Filters are ephemeral. If Managed Blockchain needs to manage or maintain node instances for availability and performance, and an instance is replaced, filters may be deleted. We recommend that you write your application code to handle the occasional deletion of filters. | +| eth_getProof | Experimental – Returns the account and storage values of the specified account, including the Merkle proof. | | +| eth_getStorageAt | Returns the value of the specified storage position for the specified account address. | | +| eth_getTransactionByBlockHashAndIndex | Returns information about a transaction using the specified block hash and transaction index position. | | +| eth_getTransactionByBlockNumberAndIndex | Returns information about a transaction using the specified block number and transaction index position. | | +| eth_getTransactionByHash | Returns information about the transaction with the specified transaction hash. | | +| eth_getTransactionCount | Returns the number of transactions sent from the specified address. | | +| eth_getTransactionReceipt | Returns the receipt of the transaction using the specified transaction hash. | | +| eth_getUncleByBlockHashAndIndex | Returns information about the uncle block specified using the block hash and uncle index position. | | +| eth_getUncleByBlockNumberAndIndex | Returns information about the uncle block specified using the block number and uncle index position. | | +| eth_getUncleCountByBlockHash | Returns the number of counts in the uncle specified using the uncle hash. | | +| eth_getUncleCountByBlockNumber | Returns the number of counts in the uncle specified using the uncle number. | | +| eth_getWork | Returns the hash of the current block, the seedHash, and the boundary condition (also called the "target") to be met. | | +| eth_newBlockFilter | Creates a filter in the node to notify when a new block arrives. Use eth_getFilterChanges to check for state changes. | | +| eth_newFilter | Creates a filter object with the specified filter options (such as from block, to block, contract address, or topics). | | +| eth_newPendingTransactionFilter | Creates a filter in the node to notify when new pending transactions arrive. Use eth_getFilterChanges to check for state changes. | | +| eth_protocolVersion | Returns the current Ethereum protocol version. | | +| eth_sendRawTransaction | Creates a new message call transaction or a contract creation for signed transactions. | Managed Blockchain supports raw transactions only. You must create and sign transactions before sending them. For more information, see How to create raw transactions in Ethereum. | +| eth_subscribe | Experimental for publication subscription – Creates a subscription for specified events and returns a subscription ID. | Available only when using WebSockets. Subscriptions are coupled to each connection. When the connection closes, the subscription is removed. | +| eth_syncing | Returns an object with sync status data or false when not syncing. | | +| eth_uninstallFilter | Uninstalls the filter with the specified filter ID. | | +| eth_unsubscribe | Experimental for publication subscription – Cancels the subscription with the specified subscription ID. | | +| net_listening | Returns true if the client is actively listening for network connections. | | +| net_peerCount | Returns the number of peers currently connected to the client. | | +| net_version | Returns the current network ID. | | +| txpool_inspect | Lists a textual summary of all transactions currently pending inclusion in the next blocks, and those that are queued (being scheduled for future execution only). | | +| txpool_status | Provides a count of all transactions currently pending inclusion in the next blocks, and those that are queued (being scheduled for future execution only). | | +| web3_clientVersion | Returns the current client version. | | +| web3_sha3 | Returns Keccak-256 (not the standardized SHA3-256) of the given data. | | diff --git a/snapshot.json b/snapshot.json new file mode 100644 index 0000000..1680d3e --- /dev/null +++ b/snapshot.json @@ -0,0 +1,175 @@ +[ + "0x6D26D2B84CB2c7d8866Ff694eFc41Ef1Ed4c242a", + "0x323f5bb64b34e259ed16ccc3f5037f4857a684df", + "0x90c161826844Cf6B8B09EECd2Aa9b3BF5aA645d2", + "0xd4BDe84b405fe2b0916e829e9845647ECAedA47e", + "0x426aac338ce72f02dD6aDEECebac87DbbEc531c1", + "0xf385bEa138fBed6eF60bDe41A04ad0442be29289", + "0xCA3898Fd0EC67164Baa535807BE3Cc96a8aFeF2b", + "0xAff1F735BcA5360fAf690ccC18c804c86C5ECfE9", + "0x3E83a070a88ecA9E4E0931Ed3Abc88E681cb1de0", + "0x98a0efc622cDc86B38484Ce6A6729606D26e500e", + "0x0DA2F81D73210E856d75ebF4a3c25c245dDfC15d", + "0x43713a10826Ef82053487d76fcC2AA697453AF12", + "0x17C58659E901dC62C800127C72957e1AB0b1CFBb", + "0xddbC47ed47D83793FBF831B08CC4B6515b36a559", + "0x68aa44093a83B207686c5C674259f8737782F59a", + "0x6b25c05022992B858a0c117fe9fE5cAFfD5e5b2E", + "0xa71759A99E823e8e0df414e2D757f927b2c5b8dd", + "0x0539A86683740eFf6C15982D177E2d6E3c341AB6", + "0xED1A48cEd6b39b3ECd82Ea42c4A28fBAa0341c6c", + "0x5c3C1ea84Bd2E0E8FFB00D419c5C0A5748C094AB", + "0xd1FD6b7d78361d24875E11bB97BA282fB52C5003", + "0xa0b7a66F7D3A631e7a5aBDd60C66c2a1B15E38B7", + "0xE104053d23918Cf2787883508834661c138c9F61", + "0x323f5BB64B34E259ed16ccc3F5037F4857a684DF", + "0x60c123B1eF4a119d65f64333354e10F9E748E505", + "0x016b0d52a79eac8b85d494ecdf63549f4d66a2ed", + "0x48241fD342d0D34CF747380Af22F8279f630E77C", + "0x9bA9d4C485f9D90178949614a22D34d95C3F467D", + "0x4213beb4ce285d304abc3ba1121ad92a0957ae04", + "0x62f7c9e6cD838E5F48d4083f08B97d05B31418bb", + "0x723F61815066769fc3ec7cF50CC65904496a7b81", + "0xF9799A81627a3ce102a6aAAD7Cf1C34c2C1E96B8", + "0xde6deacb5fae8a94204498efeaaa564f9dfc938e", + "0x33aB1F13395F15d283cfc41181f4b8e7Fba1Adf4", + "0x51F657512ff6cE2d5eB0Cd9768F7d231A12850B9", + "0xEEf8Def4503E737c5723FA13f3C9CD02d81770Ed", + "0x7e6d6ef4dbaf549832d0521030cc25451582236e", + "0x3eE0Ed6b8A321B533D0aB12970943895115D3420", + "0x2d4a0BE3A16E8DaEdFdA070C7daaF726cb19A1AC", + "0x1cade4c72ccD35870c6D917bfACc2BC7Cc0734C5", + "0x9a13880d31EC3338BfCA0A3EB5eec390aE2A5f76", + "0xB6fFaA90A17090ab074e11990564AbCD5e9f3CD9", + "0x5d652586eEF078fF80CD70292e602cA6E2A71Ab8", + "0xca386a9a28bca3fcdf19a1e0f9152ff4938a7b84", + "0x9885247667560796c88d385C609619a8dE1AC1c4", + "0x521B617Fd6f4F8c66b45Fe98599a53DfE0C828A5", + "0x2D3D50CeB0013B3f0fC01D38290db811CF3598D2", + "0x9Db49649d1d237138E7689D013348a906F20a742", + "0x1B2e3A9d7BB908703365c9668F53BE8577363875", + "0x77E5b9089922118b66667f4b5D9ae2f11252805a", + "0xFd1764437398f9993ec286aEEC0AA8BeDBE6CD5E", + "0xA0DF881F1ad007FaBeDd74559A6f7D8773B56A51", + "0x66f0675503b7a76965bc6bd2e2f0a64c885791c5", + "0xBE4475b0e09a017A2ce7f1b62af078CAC7Bb470F", + "0x7D04496628da79b10bd336117C7dFB4b6dF6BF7B", + "0x4dF4CBc43674B2348352C55eaC59bEdD0901E96c", + "0xbf5aA87878c968c9D062F51cABD04b66023c8E36", + "0x7577b461b9f030c17FC23F31517FB7101636F09D", + "0xe0344cc1445058c7d1d1daf81bb94c5164c6e705", + "0x0D4609B1e114F3cF8978AaFa683081EF51f509AA", + "0xDbf799Db53d90802581a062D5837c7942cbeDF99", + "0x7b521dd7d98bbd54d369770583b3c7478e9ae534", + "0x8dC030c3078aB6af850d069D2a0E5AD473327202", + "0xE0e2C4C95149eb6A84b3426C8676F7Cf7FA37a35", + "0xF5a4518D431Da4A96F8181636cee9009bFfa8566", + "0xd58cd1600e559f26b12d0f7ac1913c015b4c73d8", + "0x485D9e7BefC72e7f4e84B1cdF04A002d4729A994", + "0xCDAAA92E1453DA2E8AE3AF2FB9EBDB1ED4A0C568", + "0x07eA333F47fb24ab5984a7Ef958A2FC1b0ce79E7", + "0x7B521dD7D98BBd54D369770583b3c7478E9aE534", + "0x5e8Cfe345D1dEFb683065bf0c61c606e4Ad03C09", + "0x09611739Dfc18DE0302E1911DDdeC5E161fBf850", + "0xe0344cc1445058C7d1D1Daf81bB94C5164c6E705", + "0x5CA91274563Db27961358816b2Ea673993E0096D", + "0xc1B1C1e833BfDAaB0de39AeFbf516F99FB34eaC2", + "0xFf93bBb096C3e38e225874D630aC15f56FA56B55", + "0x3666BfCb401C09e782defc9d3523D809A7Ef02cE", + "0x7e510E759FD33d9529365fEe11104B03A191E306", + "0x7522b84367CFb1038BFdb5d630d871F35A3fe0d0", + "0xA07f040c4c4Af0D3769fDA1660a735aA42352C3F", + "0xDebDCb2E8683861e8F26E36A0fd32a8141524c47", + "0x9F165Ae9abD3C8C729F27c6c363b41dfeDacCC0E", + "0x24E7621abe44adf27433501BEdc313368054aa88", + "0x8BA79f94eA0B4F474B5dB04b59F59D0150109962", + "0x19437EFe9cFC9656103A7870F9B4918De23d11Bd", + "0x3E300E8367A8c8fb4Bd0e3C339BE601D762C01E9", + "0xd84049cC831582236D8b2184C25B1CEea51D06Fa", + "0x148065E69F28FBea43F8E2794626eA5dfe317a7F", + "0x0a634Db06795211C18d2e89cf814BFC3f38Da95A", + "0x3BAf5595AbB35aF981b43169bBA95F0F4B40A321", + "0x3762bF62fF546460E1D6D1Eae73D5Ce0A2774473", + "0x133D93566f9699B3Af46fE150daA8a67a9563ED6", + "0xAb07509E324DA4523Dc8A495A7D313911fe956F7", + "0x93e4C0601d10C8578E18E57950cdF85097387878", + "0x0A806011a5dc36Cdc482BfF4b20699A348e7f47d", + "0xdD5007B2Fa5abFb674ecC64A547cdAA2E607AC52", + "0x322BdE6eA87261C49d222fC234C79D9F51E25187", + "0xAd5f69752f940406c75C9Cdd70071e79d12a383c", + "0x9DaE5fABB66d425884481e19382F4616f2478Ff4", + "0x61b5a42Ba6a2D7BC2420dF4E4A9ada6416d3a2Ad", + "0xA1dC29270c60dd37D64643d20151b7Ee1806B776", + "0x4AeeB439Ad821A8e8f9C235CE7E492bC544Bc017", + "0x7ddc43b42e932b96168bcbb489f14b8c9d7b493b", + "0x84d3B42fD8Ca64528ACCC94C0Df328DA211D02dE", + "0x517d5f322B04feEb094367Bbc83Dc191bd575B95", + "0xA86AFa66eda2BEFdB3E7876fBdE781B8f8cD1Df8", + "0xd298ee56C81782005321E34a65394Cf5785a4f9A", + "0xBe51C2398D110274c36849bf83a32c0Ed7F55FD3", + "0xbC2456E3ed4Ab535b56Ba7dDA71180Ee556Fe346", + "0x923fA707e31Fb7fC9be2Bd8683DF88d4D8cCb48C", + "0xc7f917B40D62E37e3d9D8250423020E791B13C52", + "0xc8d580c86bBc3A2dD4E6898Bb4ff428a2C70f2d2", + "0x7112e07D6602c28180A55dD768fB3E36B5931561", + "0x9A25211A8DCf0a389139e2015Ac4A1208F967221", + "0x5dcf300A52434930e441da7970ed488303caf490", + "0x24b87ccE6119BB046AD631E4D23597Dbe18915B8", + "0x0e3600a5a4ff26449bb410d50088a41430c08469", + "0x5f35c52720a2c9b20b85be6FCdEc0E31c5eF9B88", + "0x6bE95B8321369C97a920831d9f378fF941A201c8", + "0x017c41a469ca172537afa701ad413967da97674b", + "0xC70D54f2453803EeF0FFfd06b21469fD22c43Ad9", + "0xDDCB9a50D13DAE5F4490bF74CAA58AE3307119aC", + "0x91c3323A922dc6789ceF67ce75E2954FC8b21C4A", + "0x6CaD3333e8cc4b5a3Ae18ccB3DDe8777923fF101", + "0x6BD49774936F81b1178f02c8a4d89B931dcFa9Dc", + "0x65c9F20eD19C5675e5Bf4D6e6f1Ae2899723A17a", + "0x71161687463077A32982b25cc34C2f562231012D", + "0x038a3CBf2E80392BB9B7ad7D3B6de903D86f60e0", + "0xa6c61ec4e77D9Cef0C3c5138D6a79b238dB28812", + "0xbC284317133CED344f7e45fBb2926848d66b4906", + "0x8D9192A3f835f85c18721127bb7AB17e7db6Af8B", + "0xCD632BB373E0FEA4acD225a5432dd47E56949701", + "0x34e66226c4486B7EC2C0Ebe0e215bd01A5121F88", + "0xb9EDB9B16c61391BA943f7d99aE63c8Bc8977B13", + "0x6001c39174ed826b5d28e4791c4aa96a945258da", + "0x59267aeFae50c6d29365A22C758655289FB79514", + "0xfd551Ac45bFB6d96ab18E3D5c173E708F9d29D4c", + "0x3CeC0F67d027783ED47ac2Edb122e9A0653e62F7", + "0xB08f2DB3e3448597f3eE58B73B3f2eB8718A6Ca2", + "0xde7a453f42a204dfa784ddc16eb4d0b78f2084c5", + "0x90b64aC62F75718F73E070137e049565E023aa6e", + "0x5f20d84dbFCe7D9Bd5b43Dd22e650e1Ef017c011", + "0x12a60dce40cc7Cd19ACE49569E3ED061Bf80D8D5", + "0x246CD0b691200Cbc074fEEA876ad9fAf9EE558a2", + "0xaD265AFcc107C414cb55373F20bE09D250580656", + "0x026F549694cCBDAC252436b611B75C463EA497eC", + "0xfb1ce46075409Bd826F021dB3BF071d3e1DD3840", + "0x3b40917f9DF83d8EdEe46Fad58e3c43173409E5C", + "0x3421ed762CC81872485d50a10E8fA597c93Eacc6", + "0x53f190d9c1D8Adb60eB6d424724672d9D67d396d", + "0x6870a0911fB1F645D5c93e1b29f57e12241011Ec", + "0xA81711610f9fa688F6feAed843F4F79d8a02E84F", + "0x5D48B8b71E34e7f89438C71841C9CfaCe8C8eBCD", + "0xb7d0596e636dBEc773075372868b14d5a224C0Fd", + "0x1B12e9914c306CceCC099F303fE8b7EFb37ef92B", + "0x9d3cD1EBF7de2C9CF20bDEB3b505226B97B3ec65", + "0x084f1B825b95de6136FdBAa2b4baeD3c96BcA196", + "0xD7484212164500da944387a7a3343c17CD761211", + "0x555e0e1dabd9bdb568a1d1357dedcefc21c3e25f", + "0xBa95274eFdB07a3D851dbC3b01eDc4FA24bcCB4f", + "0x17BbF57dBd5CA1f1c01BA6a8fA6A511c38ECA87a", + "0x72e5263ff33d2494692d7f94a758aa9f82062f73", + "0xbC80dbFC07D18208690F49dEdb759d451b369c60", + "0x196a37946C3D93e9A5309f539ae28b774a32411F", + "0x79c5a1ae586322a07bfb60be36e1b31ce8c84a1e", + "0xa0BCE6e4bFfE868D45DEa4EE04CC4cBcA694e437", + "0xc8d580c86bbc3a2dd4e6898bb4ff428a2c70f2h8", + "0xb6a34Bd460f02241e80e031023ec20ce6FC310AE", + "0xb88E6ba91212Ac639ee0E734cAc532aDe4fE8dbF", + "0x5DF201A479d19e43cBDbFF57EbDFA15243C4e8ec", + "0xdaA0307DB3a40e1a477387BF26b7ebEfd2Bc9129", + "0x74be5F2fD0272c47839ced39ADCAA4f181F1233f", + "0x922AB52329ddc56f0D9c2Fe8975018b38fE420f6" +]