Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β Β
What is an AMIS Token (AMIS)? The AMIS is a transactional vehicle acting as asset management instrument for decentralized services running on the ethereum blockchain. Main Features:
- Long Term Investment program based on Low volume.
- ATF vs ICO: Asset Traded Fund is what characterizes an AMIS; it's also an ICO in the sense of an Initial Coin Option.
- No ICO as we voluntereed to promote and build the AMIS business case around the concept of Initial Coin Option sold as Asset traded Fund.
- NO centralized Trading: Amis do not favor centralized trading platforms but rather engages natively with a set of Decentralized exchanges (Ether Delta, TokenJar, BambooRelay 0x relays, AmisDex, Saturn, UniSwap, HoneySwap) which will undoubtedly expand over time. Dematerialized, Decentralized, due to replace FIAT transactions in the real economy for the long term, Transborder proof. Run on the ethereum blockchain natively since its experimental inception.
The 1st instance of AMIS had a low supply of Tokens 37.000 (37 Tokens with 3 decimals) now it's 20 Mio Used as multi-purposes mediation instrument to interact with other decentralized exchanges and smart contracts. Note: The new AMIS contract provides 20 Mio Tokens with 9 decimals; old AMIS contract deactivated from the exchange. We also introduced AMIS tokens and assets on new blockchain technology such as Bitshares and Waves. We plan to burn the excess of AMIS Ethereum tokens equivalent to the supply issued on these respective blockchains.
- White Paper
- Install
- Usage
- Gui
- Wallet
- Exchange
- Reserve
- Developments
- Wiki
- Charts
- Api
- Helpdesk
- Communication π
- Contributing
- Code Of Conduct
- License
AMIS Token whitepaper
Billions of people around the world still lack access to basic financial services. AMIS functions as a bridging instrument between people in these communities and people from the cryptocurrency world by offering micro finance opportunities throughout a wide diversification of asset instruments ready to deliver swift transaction processing, borderless proof, cryptographically secured and decentralized in nature addressing needs for the debt & capital market. Hedging, trading, borrowing and lending AMIS in a single decentralized platform will extend the boundaries onto which AMIS is positioned. We assess the risk of a particular dex, analyse loan/lending practices and always strive for the best expected value of collaterals (probability of repayment times principal requested). Using this approach, micro financed loans are very likely to be filled by the healthy and growing ecosystem of DEX, 0x relays and Dharma relayers.
Old Amis history summary The last step to completing our rebranding process is upgrading our token to βAMIS Tokenβ (AMIS). This will be a 1:2000000000 token exchange. Meaning that you will have to exchange your old tokens for new tokens. You will receive the equivalent balance of AMIS tokens on your existing account address.
This mini-whitepaper explains how this token exchange is executed.
Rationale behind changing the Token schema
For the benefit of this project it was necessary to fork the scarcity of the asset from old to new AMIS token. This change also impacts the old AMIS Token, as we have to change the token TotalSupply for the following two reasons:
the old AMIS token contract was short in supplying tokens. the current token contract cannot be renamed, so cannot follow the brand change However, we wanted to make sure the brand fork did not impact Amis token owners. To that end weβve created a way to seamlessly exchange old AMIS tokens (AMIS) for new AMIS tokens (AMIS).
How will we proceed
The new AMIS token
A new AMIS token (AMIS) has been created, and its purpose is to function within the AMIS environment. Only new AMIS will be accepted in the AMIS ecosystem, so any old AMIS token holders who wish to interact with the AMIS platform will need to exchange their old AMIS for new AMIS.
The token contract
The new token contract is based on the MiniMe token contract created by Giveth. The MiniMe token-contract is a state-of-the-art ERC20 compatible token contract that provides some extra features:
Balance history is registered and available to be queried All MiniMe Tokens maintain a history of the balance changes that occur during each block. Two calls are introduced to read the totalSupply and the balance of any address at any block in the past. function totalSupplyAt(uint _blockNumber) constant returns(uint) function balanceOfAt(address _holder, uint _blockNumber) constant returns(uint) The address of the New AMIS Token address is 0x949bEd886c739f1A3273629b3320db0C5024c719 ; you can also find it in Kovan https://kovan.etherscan.io/address/0x7161f09a6ae81b546bebc04b24629c4f3dad746f and ropsten https://ropsten.etherscan.io/token/0x949bEd886c739f1A3273629b3320db0C5024c719 for testing purposes.
The token controller
The controller of a MiniMe token contract manages the token in a seperate smart contract, and is the only address that can manage the token.
In our case, the AMIConverter.sol contract will be set as the controller of the MiniMe Token.
By using this contract as the base token, clones can be easily generated at any given block number, this allows for incredibly powerful functionality, effectively the ability for anyone to give extra features to the token holders without having to migrate to a new contract. Some of the applications that the new AMIS Token based on the MiniMe token contract can be used for are:
Generating a voting token that is burned when you vote. Generating a βcouponβ token that is redeemed when you use it. Generating a token for a βspinoffβ DAO. Generating a token that can be used to give explicit support to an action or a campaign, like polling. Generating a token to enable the token holders to collect daily, monthly or yearly payments. All the applications the standard ERC 20 token can be used for, but with the ability to upgrade in the future as desired. All these applications and more are enabled by the MiniMe Token Contract. The most amazing part being that anyone that wants to add these features can, in a permissionless yet safe manner without affecting the parent tokenβs intended functionality.
The address of the AMIS Controller is https://etherscan.io/address/0xfd928fAa0F53fd33e45ac689AF49200CA3d87783
Amount of AMIS Token:
If only 37 old AMIS tokens are converted into AMIS, there will only be 20,000,000 new AMIS in circulation.
Most notably there will be no extra tokens minted. A total of 20 000 000 tokens were minted, so at most only 20 000 000 can ever be minted. This number includes the 16% tokens minted in addition to the AMIS Token Sale and these are exchangeable as well.
Exchanging AMIS tokens to New AMIS tokens
There is a function created in the AMISConverter that converts the old AMIS balance of the sender into an equal balance in new AMIS tokens, and sends your old AMIS tokens to a separate vault wallet. You must first create an allowance to the new contract so that it can transfer your old AMIS tokens to another wallet, so that the tokens can be exchanged into new AMIS tokens. The old AMIS is destroyed immediately by sending it to a 0x000 address.
Security of the contract
The contract was created using the most recent solidity compiler at the time ( v0.4.9 )
The new token contract code is open source and can be reviewed here:https://github.com/amisolution/ERC20-AMIS/blob/master/AMIS.sol is available for review on etherscan: AMIS code on Etherscan: https://etherscan.io/address/0x949bEd886c739f1A3273629b3320db0C5024c719#code
It is based on these codes : https://github.com/ConsenSys/Tokens and has interaction capabilities with https://github.com/Giveth/minime/blob/master/MiniMeToken.sol
Options for exchanging my tokens
-
Using the etherdelta platform (easy) Access the etherdelta trading platform and perform the conversion: https://etherdelta.github.io/#0xdF36EBfFa7AB074a13e665daBC34ef4b42e59D75-0x949bEd886c739f1A3273629b3320db0C5024c719 Using Etherdelta - you can perform the token exchange in a few steps. Please visit https://github.com/amisolution/ERC20-AMIS/master/README.md and follow the steps to import your old AMIS wallet into the app. It will then guide you to the token exchange process, which should only take a few minutes to execute.
-
Perform the token exchange yourself. (advanced)
These are the steps required to perform the token exchange yourself:
STEP1 : Import the new AMIS contract ABI at https://api.etherscan.io/api?module=contract&action=getabi&address=0x949bEd886c739f1A3273629b3320db0C5024c719&format=raw
STEP 2 : Import the AMISConverter ABI at https://api.etherscan.io/api?module=contract&action=getabi&address=0xfd928fAa0F53fd33e45ac689AF49200CA3d87783format=raw
STEP 3 : From the old AMIS contract , determine your AMIS balance :
AMIScontract.balanceOf.call(account) STEP 4 : Give an allowance to the new AMISConverter contract for the full balance of your old AMIS account.
AMIScontract.approve(AMISconverter.address,balance) STEP 5 : Call the convert function in the AMIConverter contract (call from the account that has the allowance from the previous step)
AMISconverter.convert(balance) This function will move your old AMIS tokens to the vault account, and will mint new AMIS tokens on the same account address where the old AMIS tokens were previously stored. Your conversion should now be ready. Donβt worry, if the transaction fails your AMIS balance is intact.
STEP 6 : Verify your new AMIS balance using the balanceOf function in the AMIS contract.
AMIScontract.balanceOf.call(account) You now have converted your old AMIS to new AMIS tokens.
Remember that AMIS is unique; each and everyone can verify the official and genuine AMIS token code and the balance by querying the new AMIS Token contract at :
Read AMIS token smart contract balance: Etherscan https://etherscan.io/token/0x949bed886c739f1a3273629b3320db0c5024c719#readContract
AMIS unique code: https://etherscan.io/address/0x949bEd886c739f1A3273629b3320db0C5024c719#code
AMIS Dex tracker: AMIS Dex Tracker is here => https://etherscan.io/dextracker?filter=&q=amis
Important!
Please do not send tokens directly to the new token address using any wallet software ( MyEtherWallet / Mist / MetaMask / Jaxx, Polo, etc. ) they will not be converted to AMIS tokens this way and will be lost when you do so.
Timeline and duration
As soon as we have deployed the new AMIS token contract - we will publish the new token address and the interface to exchange your tokens on our Amis Dex github.io website (https://amisolution.github.io/ERC20-AMIS/amisdex)
There is no time limit on performing the conversion, meaning that this functionality will be permanently available in our contract.
If you have have any other questions, please feel free to contact us in our AMIS gitchat channel, in Slack (## Support), or send a tweet to @erc20_amis.
Install MIST Wallet, create an account, get some ETH and click on contract, check contract watch to query your balance of AMIS; follow this step to watch the AMIS contract:
and then proceed with the AMIS Token Monitoring Activity as in:
MEW (MEW), has embedded the custom token feature to allow the query of your AMIS balance, just fill-up the AMIS token address in the appropriate section.
DAPP Contract usage interaction is constantly under development, however we recently released new contracts and interfaces with which it becomes much easier to call AMIS for your favorite DAPP project, for instance you could use it to develop your own smart contract for selfdrop, airdrop, exchange, transportation, insurance, conferences, concerts, ticket resale and trade it - see examples below:
- Amis Dex dappvolume.com
- Amis Dex cryptoknowmics
- Amis Dex on Stateofthedapps
- Amis Dex on DappRadar
- Amis Dex on App.co
- Amis Dex on DappReview
- Amis Dex on DappFight
- Amis Dex on DappSpy
- Amis Dex on RatingDapp
- Conference booking with AMIS ticket resale https://github.com/amisolution/ERC20-AMIS/amisforum/live/conference contract https://etherscan.io/address/0x7fe180e63198e50057c3f2817d058e8904c650e3
- AmisDapp Airdrop revenue generator on Ropsten, Kovan and soon mainnet
- AMIS Trade on-chain with Amisdex an On-chain Orderbook contract with builtin https://amis-erc20.github.io/amisdex
- AMIS Trade on 0x relay with smartdex -in dev - https://amis-erc20.github.io/smartdex
- Loan Generator
- Escrow Management
- Insurance
- Matching Market
npm install
- Download from Github.
- Install with Docker:
docker pull amis-kit
. - Clone the repo:
git clone https://github.com/amisolution/ERC20-AMIS
. - run -it
For more details feel free to visit our chat room (slack/gitchat), blogs @Medium, reddit, Blogspot, erc20-amis.amisolution.net and / or Wordpress.
On the ethereum blockchain one can use one of these GUIs to interact with decentralized exchange smart contracts
- New Amis Dex GUI based on Etherdelta Amis Dex new Delta GUI
- Old Amis Dex GUI based on Forkdelta Amis Dex old Delta GUI
- Dubiex Amis Dex GUI under dev due to decimal adjustment
On the BitShares blockchain one can interact with the AMIS UIA on the openledger decentralized exchange using one of these web interfaces
- BITSHARES OpenLedger.info
- BITSHARES Bitshares.org
- BITSHARES crypto-bridge.org
- BITSHARES
On the waves blockchain one can interact with the AMIS token natively and in a decentralized exchange fasion by using the web interface below:
- WAVES wavesplatform.com or https://beta.wavesplatform.com/dex?assetId2=WWiqqx527CUweb8eB5xLUPtLfzyFs371FkT2dtX49DC&assetId1=WAVES
The Official list of decentralized exchanges for the AMIS tokens is given below:
- UniSwap v1 AMIS-ETH
- UniSwap v2 AMIS-ETH
- HoneySwap v2 AMIS-xDAI
- Saturn.network AMIS-ETH
- Saturn.network AMIS-ETC
- coinchangex AMIS-ETH
- crypto-bridge OPENAMIS-ETH
- crypto-bridge OPENAMIS-BTC
- crypto-bridge OPENAMIS-USDT
- crypto-bridge AMIS-BTC New on BitShares
- crypto-bridge AMIS-BTS New on BitShares
- openledger.io AMIS-BitUSD New on BitShares
- openledger.info AMIS-BitCNY New on BitShares
- AMIS-BTC on Waves
- Waves AMIS New on Waves
- AMIS-ETH on Waves
- AMIS DEX #1 New in beta
- AMIS DEX #2 New in beta
- AMIS DEX #3 New in alpha
- Amis Delta Dax Dev2 New live
- Bamboo relay 0x relay
- Ethermium New live
- Cryptoderivatives market
- Decentrex Instructions for token transfer
- Dubiex in beta
- Ethen Market
- EtherDelta
- Forkdelta
- Instex 0x in beta
- SingularX in beta
- Token Jar 0x relay Discontinued
- Token Store
- ecex vote for listing ongoing
- Idex Discontinued
- Simex Discontinued
- Total Supply: 20,000,000
- Founders, Advisors, Reserve, Bonus (0x5b878ba97bae92fc0aa6133edbf2f58d52350d65): 5,846,014.484763184
- Burnt(0x0000): 320,000
- Est. Circulating Supply: 13,833,986
totalSupply: 20000000
totalReserve: 5846014.484763184
totalBurnt: 320000
circulatingSupply: 14153986-320000=13833986
- The AMIS circulation supply was decreased by 1.55% in the last couple of days; here is what happened and what it means for our subscribers:
- Initial Coin Outset: 20.000.000 Mio - 3rd JAN 2017
- Decimals: 9
- ATF Airdrop distribution: 70% via Etherdelta Dex - FEB 2017
- Reserve Adjustment: 30% Currently Reserved for future distribution of Fundraising/Airdrop/marketing/dev/finance/ops
- Buy Back Program Incentives - The buy back program incentization campaign analyzes the trading behavior pattern of all participants to better determine how traders are able to identify trading sweet spots and how to position for their next move traded, to allow max return on investment from our eligible subscribers.
- Lender/Borrower program underway
-Not only have we prepared the path to deliberatly drain the amount of AMIS resources available at a particular time according to the market condition but we also took precautionary measures to maintain and to widen the scope of use of crypto derivatives asset class offered by AMIS product portfolio on the decentralized market whether it would be Bitshare, Ethereum or Waves blockchained orders.
- How are AMIS burnt/destroyed and why ? The Destruction of Asset Management Instrument was deemed necessary in order to mitigate the predictive fall of the asset price under certain level.
-See the TxHash stating the 1st batch of AMIS token destruction:
-See the TxHash stating the 2nd batch of AMIS token destruction:
- The 3rd batch of AMIS resource exhaustion took place when 200000 AMIS were burnt and subsequently destroyed as depicted below:
- The 4th batch of AMIS resource exhaustion took place when 10000 AMIS were burnt and subsequently destroyed as depicted below:
-
Current Circulating Supply: 19680000 Mio AMIS ERC20 tokens.
-
Total Qty Burnt: 320.000 AMIS Tokens representing a value of 375.977.600 USD @1174.93 USD per Amis ERC20 Token.
-
It makes AMIS the 2nd most generous contributor to the ethereum genesis block -see pics-, the decrease of the natural existence of the token should increase its value overtime. This phenomenon cannot be achieved with the current monetary governance policy being in place by central banks who are prone to print paper money - see pics of USD/GBP/JPY/RBL decline over 120 years.More recently the rise of the dollar has led to the free fall of emerging market FIAT currencies.
Amis Token Holdings 11 oct 2018
- Subscribers: 750 29th Aug 2018
1000 Amis Token Hodlers anniversary
- 1000 Subscribers beginning of sept 2018
- 1300 Subscribers by 11 oct 2018
USD - Gold Prices - 100 Year Historical Chart
GBP - Gold Prices - 100 Year Historical Chart
-
What's causing concerns to believe that AMIS has become a true Stablecoin? On etherscan AMIS Token price varies at tick level, one can easily notice that the valuation of AMIS is pegged to 1174.93 USD.
-
If it's not a stablecoin can this be considered a collectible token ? Let's observe the free decentralized market decision.
-
Who decided to leave AMIS pegged at 1174.93? We investigated the matter and found out that CoinMarketCap feeds its datasource to etherscan which is used to display Token pricing information on its pages. CMC is clearly the culprit for keeping the valuation @1174.93USD, etherscan is only complicit.
-
Why is etherscan not rendering AMIS charts ? https://etherscan.io/token/0x949bed886c739f1a3273629b3320db0c5024c719#tokenChart Etherscan bragged about their new Token Chart feature which only applies for CMC active tokens (not even for EOS) at the moment. It seems that it was too difficult for them to decide to plot the data directly from their dex tracker data source. This feature is not available anymore for Amis since CMC decided to tag the token as inactive. We hope to revert back to a situation where blockchain data is appropriatly plotted Etherscan have introduced the dex tracker feature which could serve to provide Real time tickers data to CoinMarketCap as well as Coingecko but oddly enough for some obscure reason; this issue has not raised any concerns from the community.
-
Is AMIS a victim of Etherscan/CoinmarketCap framing and rigging the token market data by the use of a hidden dual standard policy ? Yes and no. On one hand they provide relatively accurate data for most of the pairs, regarding dex tracked events, it's a little less clear since they don't read the data from the blocks but rather from the API of the dex which in return do not meet the expected reliability found by reading data blocks as available in the dex tracker feature for example. On the other hand side we acknowledge that Amis was initially designed as an experimental asset management token used to be traded on a large variety of DEX primarily for testing purposes, for that reason we never expected to be successful in establishing the market condition for Amis however during the course of its history we felt to be perceived as an exception due to our mode of introduction on the marketplace (No ICO). We also faced resistance and challenges in having AMIS continuously listed on decentralized exchanges (see Etherdelta/Idex experiences) besides the miscommunication of unexpected changes that affected the operations ruling the decentralized exchange UI e.g. min order size changes from 0.001 to 0.01 then back to 0.001, suppression of crosspair trading in the UI and many others.
-
Is AMIS delisted from CoinMarketCap? Where else is it listed ?
AMIS is not delisted from CoinMarketCap; CoinMarketCap decided to set the token as inactive and freeze AMIS's price @1174.93 USD.
- Cryptocompare holds historical up-to-date AMIS trading data and never stopped polling Etherdelta's API as CoinMarketCap did.
- Coingecko relays AMIS/WETH price information retrieved from TokenJar'API, data source is 99% accurate.
- 0xtracker provides NRT accurate price information based on what's being read from the ethereum blockchain via its 0x relayers.
- How can one verify the true value of the AMIS token ? Data analytics modelling can help generating the chart based on etherscan dex tracker results; it provides the list of trades upon which one can plot the relevant data to provide a true accurate graphical representation of the Asset Instrument.
See ethplorer Amis Traded event graphical representation (when it was available) in this video @ position 7:06 :
Amis Delta Dex Experimental Developments
- Experimental Amis Token Self Airdrop campaign initiated by https://twitter.com/AMIStoken_ERC20 at 0x90a9e40c4ec1309bb7d64016a9a5601d78abb108
- https://amis-deltadex.github.io/etherdelta/
- https://amisdex.github.io/amis-exchange-www Now beta live with offline demo and ropsten !!
- https://amisdex.github.io/bitox/
- https://amisdex.github.io/amisdax/
- https://amisdex.github.io/index/
- https://amis-deltadex.github.io/deltadex/
- https://amis-deltadex.github.io/etherdelta/
- https://amis-deltadex.github.io/cybex-web/
- https://delta-dex.github.io/deltadex/
- https://amis-delta.github.io/amisdelta/site/ Now beta live !!
- https://amis-delta.github.io/dextop/
- https://amisolution.github.io/dubiex/ui
- https://amisolution.github.io/amisdeltadex/
- amisdex https://ami-solution.github.io/amisdex/
- smartdex 0x relay UI works with conduit API
- 0x relay with KYC/AML
- 0x relay dex
- amis 0x relay dex
- amisdex on amis-erc20
- ethexchange dex
- netherdelta dex
- ED exchange on testnet https://ether-dex.github.io/edx/?network=testnet/
- 0x relay API 1
- 0x relay API 2
- Amis Line Mobile Wallet
- Amis Delta Dax Dev1
- Amis Delta Dax Dev2
On Ethereum, one can easily create a wallet to store, send and receive AMIS:
- Metamask AMIS integration only supported manually (Metamask integration underway)
- MEW AMIS Integration completed (AMIS tokens added automatically)
- TrustWallet AMIS integration completed
- TrustWallet
- MyCrypto
- Nifty
- SaturnWallet
- Balance.io
- CoinBase
- Amis Line Mobile Wallet
On BitShares use one of the following:
- https://openledger.io/wallet?r=openledger-wallet-amis
- https://wallet.bitshares.org?r=openledger-wallet-amis
- https://market.rudex.org/?r=openledger-wallet-amis
- https://wallet.bitshares.eu/?r=openledger-wallet-amis#/
- https://bit.btsabc.org/?r=openledger-wallet-amis#/
- https://wallet.crypto-bridge.org/wallet?r=openledger-wallet-amis
- https://www.gdex.io/wallet?r=openledger-wallet-amis
On Waves use either bitshares or the native wallet:
- WAVES wavesplatform.com
-
24h Live streaming Chart: https://amisolution.github.io/ERC20-AMIS/charts/amis-usd/cryptohistory/24h
The Amis population has reached 1326 holders (23rd Oct 2018). Density and statistical composition can be found @ bloxy
How many Amis subscribers compared to a set of tokens created around Q4 2016 (ARC, NXC, PLU, SWT, DGD, 1ST...): Similar tokens that went through an ICO:
Token Name | # of Subscribers | Creation Date |
---|---|---|
ARC | 187 | Oct-31-2016 |
BCAP | 812 | Apr-10-2017 |
NXC | 942 | Nov-01-2016 |
PLU | 1151 | Sep-04-2016 |
SWT | 2300 | Nov-01-2016 |
MLN | 2414 | Feb-15-2017 |
XAUR | 4167 | Aug-08-2016 |
TIME | 5302 | |
SNGLS | 8236 | |
DGD | 8258 | |
1ST | 18851 |
- Amis trade streamer https://amisdex.github.io/cryptoc0mpare/trade
- Live stream https://amisdex.github.io/crypt0compare/streamer/current/
- coingecko api request for tokenjar
- coingecko api request for Amis tickers
- TokenJar API
- Bamboorelay API
- Ledgerdex
- Ethermium API Wrapper
- Ethermium API example
Response body
{ "name": "TokenJar", "has_trading_incentive": null, "trade_volume_24h_btc": 0.20646597511553103, "tickers": [ { "base": "AMIS", "target": "WETH", "market": { "name": "TokenJar", "identifier": "tokenjar", "has_trading_incentive": false }, "last": 0, "converted_last": { "btc": "0.000018657", "eth": "0.0004494293383598398368", "usd": "0.1250504715406847787" }, "volume": 11066.408, "converted_volume": { "btc": "0.20646597511553103", "eth": "4.973568450983130574137518731872", "usd": "1383.859545763222639279398182373" }, "timestamp": "2018-08-25T10:07:49.705Z", "is_anomaly": false } ] }
- [cryptocompare]
- [etherdelta]
- [tokenstore]
- [tokenjar]
- [bamboorelay]
- etherscan api
- etherscan api etherdelta_2 topic0 trade
- etherscan api etherdelta_2 topic0 order
** Under development: **
- Currently developing AmisEtherDeltApi
The AMIS pricing and exchange API allows interaction with mobile network IN prepaid platforms, postpaid billing systems, and mobile money accounts, via SMS, USSD, REST APIs, and Diameter.
- Our support channel is available 24h/24h 365d
- Gitchat: https://gitter.im/ERC20-AMIS/Lobby
- Gitchat Delta DEX: https://gitter.im/amis-delta-dex/Lobby
- Slack: https://amisolution.herokuapp.com
- Disqus: https://disqus.com/home/forums/amisolution-net
- Twitter: https://twitter.com/amis_erc20
- Reddit: https://old.reddit.com/r/AMIS_ERC20
- Facebook: https://facebook.com/amis.token
- Bug reports, feature requests, patches, well-wishes are always welcome!
- If you need help, open an issue.
- If you found a bug, open an issue.
- If you have a feature request, open an issue.
- If you want to contribute, see Contributing section.
-
We'd love to see your ideas for improving this library!
-
The best way to contribute is by submitting a pull request.
-
Standard Readme follows the Contributor Covenant Code of Conduct. You may also contribute to other forum of discussion:
- To have a more open and welcoming community, Amis adheres to a code of conduct. Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
- See LICENSE for details MIT Β© Protocol Labs