Git Product home page Git Product logo

@github.com/ruzyysmartt/repository's Projects

-github-ruzyysmartt-repository-0xb7bbf6d2f5372022cc07b6677a9eb49ce78da8c3 icon -github-ruzyysmartt-repository-0xb7bbf6d2f5372022cc07b6677a9eb49ce78da8c3

this transaction for commit and reponsentory is complite and matchching From :ruzyysmartt https://github.com/ruzyysmartt Contract :0xb7bbf6d2f5372022cc07b6677a9eb49ce78da8c3 More Info My Name Tag: 0x6ce2461edf38e6c1dc8b49ef512e01caaa4b19a1 Creator: 0x38e91ff82328ddbd6025ebe45ecb4dc2f0799019 Tracker: FinCrypChain (FCC) Transactions Erc20 Token Txns Contract Contract Source Code Verified (Exact Match) Contract Name: FinCrypChain Compiler Version v0.4.18+commit.9cf6e910 Optimization Enabled: No with 200 runs Other Settings: default evmVersion Contract Source Code (Solidity); /** *Submitted for verification at Etherscan.io on 2019-04-01 */ pragma solidity ^0.4.16;contract FinCrypChain {string public name;string public symbol;uint8 public decimals = 8;uint256 public totalSupply;mapping (address => uint256) public balanceOf;mapping (address => mapping (address => uint256)) public allowance;event Transfer(address indexed from, address indexed to, uint256 value);function FinCrypChain(uint256 initialSupply,string tokenName,string tokenSymbol) public {totalSupply = initialSupply * 10 ** uint256(decimals);balanceOf[msg.sender] = totalSupply;name = tokenName;symbol = tokenSymbol;}function _transfer(address _from, address _to, uint _value) internal {require(_to != 0x0);require(balanceOf[_from] >= _value);require(balanceOf[_to] + _value > balanceOf[_to]);uint previousBalances = balanceOf[_from] + balanceOf[_to];balanceOf[_from] -= _value;balanceOf[_to] += _value;Transfer(_from, _to, _value);assert(balanceOf[_from] + balanceOf[_to] == previousBalances);}function transfer(address _to, uint256 _value) public {_transfer(msg.sender, _to, _value);}function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {require(_value <= allowance[_from][msg.sender]);allowance[_from][msg.sender] -= _value;_transfer(_from, _to, _value);return true;}function approve(address _spender, uint256 _value) public returns (bool success) {allowance[msg.sender][_spender] = _value;return true;}} Contract ABI [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}] Contract Creation Code 60606040526008600260006101000a81548160ff021916908360ff160217905550341561002b57600080fd5b604051610c24380380610c2483398101604052808051906020019091908051820191906020018051820191905050600260009054906101000a900460ff1660ff16600a0a8302600381905550600354600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600090805190602001906100d39291906100f3565b5080600190805190602001906100ea9291906100f3565b50505050610198565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061013457805160ff1916838001178555610162565b82800160010185558215610162579182015b82811115610161578251825591602001919060010190610146565b5b50905061016f9190610173565b5090565b61019591905b80821115610191576000816000905550600101610179565b5090565b90565b610a7d806101a76000396000f300606060405260043610610099576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde031461009e578063095ea7b31461012c57806318160ddd1461018657806323b872dd146101af578063313ce5671461022857806370a082311461025757806395d89b41146102a4578063a9059cbb14610332578063dd62ed3e14610374575b600080fd5b34156100a957600080fd5b6100b16103e0565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156100f15780820151818401526020810190506100d6565b50505050905090810190601f16801561011e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561013757600080fd5b61016c600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803590602001909190505061047e565b604051808215151515815260200191505060405180910390f35b341561019157600080fd5b61019961050b565b6040518082815260200191505060405180910390f35b34156101ba57600080fd5b61020e600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610511565b604051808215151515815260200191505060405180910390f35b341561023357600080fd5b61023b61063e565b604051808260ff1660ff16815260200191505060405180910390f35b341561026257600080fd5b61028e600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610651565b6040518082815260200191505060405180910390f35b34156102af57600080fd5b6102b7610669565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102f75780820151818401526020810190506102dc565b50505050905090810190601f1680156103245780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561033d57600080fd5b610372600480803573ffffffffffffffffffffffffffffffffffffffff16906020019091908035906020019091905050610707565b005b341561037f57600080fd5b6103ca600480803573ffffffffffffffffffffffffffffffffffffffff1690602001909190803573ffffffffffffffffffffffffffffffffffffffff16906020019091905050610716565b6040518082815260200191505060405180910390f35b60008054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156104765780601f1061044b57610100808354040283529160200191610476565b820191906000526020600020905b81548152906001019060200180831161045957829003601f168201915b505050505081565b600081600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001905092915050565b60035481565b6000600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115151561059e57600080fd5b81600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555061063384848461073b565b600190509392505050565b600260009054906101000a900460ff1681565b60046020528060005260406000206000915090505481565b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106ff5780601f106106d4576101008083540402835291602001916106ff565b820191906000526020600020905b8154815290600101906020018083116106e257829003601f168201915b505050505081565b61071233838361073b565b5050565b6005602052816000526040600020602052806000526040600020600091509150505481565b6000808373ffffffffffffffffffffffffffffffffffffffff161415151561076257600080fd5b81600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101515156107b057600080fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020540111151561083e57600080fd5b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401905081600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254039250508190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a380600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205401141515610a4b57fe5b505050505600a165627a7a72305820152bd437014cf4e7fa826b0721a77b23bbd58af4c301a967c858734ca3b7b64100290000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c46696e43727970436861696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034643430000000000000000000000000000000000000000000000000000000000 Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above) 0000000000000000000000000000000000000000000000000000000005f5e100000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000c46696e43727970436861696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034643430000000000000000000000000000000000000000000000000000000000 -----Encoded View--------------- 7 Constructor Arguments found : Arg [0] : 0000000000000000000000000000000000000000000000000000000005f5e100 Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060 Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0 Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c Arg [4] : 46696e43727970436861696e0000000000000000000000000000000000000000 Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003 Arg [6] : 4643430000000000000000000000000000000000000000000000000000000000 Swarm Source bzzr://152bd437014cf4e7fa826b0721a77b23bbd58af4c301a967c858734ca3b7b641 https://github.com/https-github-com-ruzyysmartt/panoramix Code Json Asm Abi Data Experimental auto-generated ABI addr: 0xb7bBF6D2f5372022cc07B6677A9eB49ce78dA8c3 network: mainnet Please note: - function parameter [ { "type": "function", "name": "name", "inputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "approve", "inputs": [ { "name": "spender", "type": "address" }, { "name": "value", "type": "uint256" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "totalSupply", "inputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "transferFrom", "inputs": [ { "name": "from", "type": "address" }, { "name": "to", "type": "address" }, { "name": "value", "type": "uint256" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "decimals", "inputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "balanceOf", "inputs": [ { "name": "owner", "type": "address" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "symbol", "inputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "transfer", "inputs": [ { "name": "to", "type": "address" }, { "name": "value", "type": "uint256" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "allowance", "inputs": [ { "name": "owner", "type": "address" }, { "name": "spender", "type": "address" } ], "stateMutability": "nonpayable" }, { "type": "fallback", "stateMutability": "payable" } ] Code Json Asm Abi Data https://github.com/https-github-com-ruzyysmartt/panoramix Panoramix JSON output for easy automated analysis addr: 0xb7bBF6D2f5372022cc07B6677A9eB49ce78dA8c3 network: mainnet ver: 26 Apr 2019 problems: {} source: /code/0xb7bBF6D2f5372022cc07B6677A9eB49ce78dA8c3.json also available through BigQuery stor_defs: [def, "name", 0, [array, 256]] [def, "symbol", 1, [array, 256]] [def, "decimals", 2, [mask, 8, 0]] [def, "totalSupply", 3, [mask, 256, 0]] [def, "balanceOf", 4, [mapping, 256]] [def, "allowance", 5, [mapping, 256]] functions: def decimals(): # 0x313ce567 not payable [return, [stor, 8, 0, [name, "decimals", 2]]], def _fallback(): # payable [revert, 0], def totalSupply(): # 0x18160ddd not payable [return, [stor, 256, 0, [name, "totalSupply", 3]]], def name(): # 0x06fdde03 not payable [return, [stor, 256, 0, [array, [range, 0, [stor, 256, 0, [length, [name, "name", 0]]]], [name, "name", 0]]]], def balanceOf(address _owner): # 0x70a08231 not payable [return, [stor, 256, 0, [map, [param, "_owner"], [name, "balanceOf", 4]]]], def symbol(): # 0x95d89b41 not payable [return, [stor, 256, 0, [array, [range, 0, [stor, 256, 0, [length, [name, "symbol", 1]]]], [name, "symbol", 1]]]], def allowance(address _owner, address _spender): # 0xdd62ed3e not payable [return, [stor, 256, 0, [map, [param, "_spender"], [map, [param, "_owner"], [name, "allowance", 5]]]]], def approve(address _spender, uint256 _value): # 0x095ea7b3 not payable [store, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_spender"]], [map, [mask_shl, 160, 0, 96, "caller"], [name, "allowance", 5]]], [param, "_value"]], [return, 1], def transfer(address _to, uint256 _value): # 0xa9059cbb not payable [if, [iszero, [param, "_to"]], [ [revert, 0], ],[ [if, [lt, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [name, "balanceOf", 4]]], [param, "_value"]], [ [revert, 0], ],[ [if, [le, [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]], [param, "_value"]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]], [ [revert, 0], ],[ [store, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [name, "balanceOf", 4]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [name, "balanceOf", 4]]], [mul, -1, [param, "_value"]]]], [store, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]], [param, "_value"]]], [log, [param, "_value"], 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, "caller", [param, "_to"]], [if, [eq, [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [name, "balanceOf", 4]]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [name, "balanceOf", 4]]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]]], [ [stop], ],[ [invalid], ] ] ] ] def transferFrom(address _from, address _to, uint256 _value): # 0x23b872dd not payable [if, [gt, [param, "_value"], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "allowance", 5]]]]], [ [revert, 0], ],[ [store, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "allowance", 5]]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, "caller"], [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "allowance", 5]]]], [mul, -1, [param, "_value"]]]], [if, [iszero, [param, "_to"]], [ [revert, 0], ],[ [if, [lt, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "balanceOf", 4]]], [param, "_value"]], [ [revert, 0], ],[ [if, [le, [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]], [param, "_value"]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]], [ [revert, 0], ],[ [store, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "balanceOf", 4]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "balanceOf", 4]]], [mul, -1, [param, "_value"]]]], [store, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]], [param, "_value"]]], [log, [param, "_value"], 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, [param, "_from"], [param, "_to"]], [if, [eq, [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "balanceOf", 4]]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]], [add, [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_from"]], [name, "balanceOf", 4]]], [stor, 256, 0, [map, [mask_shl, 160, 0, 96, [param, "_to"]], [name, "balanceOf", 4]]]]], [ [return, 1], ],[ [invalid], ] ] ] ] ] Tut About Api Code Json Asm Abi Data # # Eveem.org 26 Apr 2019 # Decompiled source of 0xb7bBF6D2f5372022cc07B6677A9eB49ce78dA8c3 # # Let's make the world open source # def storage: name is array of uint256 at storage 0 symbol is array of uint256 at storage 1 decimals is uint8 at storage 2 totalSupply is uint256 at storage 3 balanceOf is mapping of uint256 at storage 4 allowance is mapping of uint256 at storage 5 def name(): # not payable return name[0 len name.length] def totalSupply(): # not payable return totalSupply def decimals(): # not payable return decimals def balanceOf(address _owner): # not payable return balanceOf[_owner] def symbol(): # not payable return symbol[0 len symbol.length] def allowance(address _owner, address _spender): # not payable return allowance[_owner][_spender] # # Regular functions # def _fallback() payable: # default function revert def approve(address _spender, uint256 _value): # not payable allowance[caller][addr(_spender)] = _value return 1 def transfer(address _to, uint256 _value): # not payable require _to require balanceOf[caller] >= _value require balanceOf[addr(_to)] + _value > balanceOf[addr(_to)] balanceOf[caller] -= _value balanceOf[addr(_to)] += _value log Transfer( address from=_value, address to=caller, uint256 value=_to) require balanceOf[caller] + balanceOf[addr(_to)] == balanceOf[caller] + balanceOf[addr(_to)] def transferFrom(address _from, address _to, uint256 _value): # not payable require _value <= allowance[addr(_from)][caller] allowance[addr(_from)][caller] -= _value require _to require balanceOf[addr(_from)] >= _value require balanceOf[addr(_to)] + _value > balanceOf[addr(_to)] balanceOf[addr(_from)] -= _value balanceOf[addr(_to)] += _value log Transfer( address from=_value, address to=_from, uint256 value=_to) require balanceOf[addr(_from)] + balanceOf[addr(_to)] == balanceOf[addr(_from)] + balanceOf[addr(_to)] return 1 From:ruzyysmartt https/github.com/ruzyysmartt/reposentory 0xb7bbf6d2f5372022cc07b6677a9eb49ce78da8c3 https://[email protected] [email protected] [email protected]

atom icon atom

:atom: The hackable text editor

auth.js icon auth.js

GitHub API authentication library for JavaScript and Node.js

cccatalog-frontend icon cccatalog-frontend

CC Search is a search tool for CC-licensed and public domain content across the internet.

desktop icon desktop

Simple collaboration from your desktop

docs icon docs

Auth0 documentation Api signature

emulate-storage-data-system-operational-internal-html-version-2.0 icon emulate-storage-data-system-operational-internal-html-version-2.0

<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> <channel> <title>DigitalOcean Status - Incident History</title> <link>http://status.digitalocean.com</link> <description>Statuspage</description> <pubDate>Fri, 01 Nov 2019 00:06:45 +0000</pubDate> <item> <title>Issues affecting custom Droplet images</title> <description> &lt;p&gt;&lt;small&gt;Nov &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;00:06&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue affecting Droplets created from custom images, and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;31&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;18:21&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issue affecting Droplet creates based on custom images and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;31&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;16:21&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is currently investigating an issue affecting Droplet creates based on custom images. During this time, users may experience issues creating droplets from custom images uploaded to the Cloud panel. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Fri, 01 Nov 2019 00:06:45 +0000</pubDate> <link>https://status.digitalocean.com/incidents/2440tjssv61q</link> <guid>https://status.digitalocean.com/incidents/2440tjssv61q</guid> </item> <item> <title>Event Processing Delays &amp; Droplet Creates Issue</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:05&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue impacting Droplet create events and Event Processing, and these actions should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:05&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has put into place a fix and users should no longer be impacted; however, we will be monitoring this issue throughout the evening and will mark as resolved tomorrow once we&apos;ve confirmed the issue is fully mitigated. We apologize for the inconvenience, and thank you for your patience and understanding throughout this process&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;15:05&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified a recurrence of issues affecting Droplet create events and Event Processing in all regions, and is actively working on a fix. During this time, you may experience difficulties in creating, accessing and listing Droplets via the Cloud panel or API. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Wed, 30 Oct 2019 23:05:10 +0000</pubDate> <link>https://status.digitalocean.com/incidents/w4j2nj1trtsg</link> <guid>https://status.digitalocean.com/incidents/w4j2nj1trtsg</guid> </item> <item> <title>Community portal issue</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:25&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue impacting our Community portal. Access to Q&amp;A, tutorials, and other content in the Community portal should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:33&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue affecting our Community Portal and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:31&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified an issue affecting our Community portal at https://www.digitalocean.com/community/, and is actively working on a fix. During this time, you may experience errors when accessing the customer Q&amp;A, tutorials, and other Community content in this portal. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 29 Oct 2019 21:25:10 +0000</pubDate> <link>https://status.digitalocean.com/incidents/gj38s895n48k</link> <guid>https://status.digitalocean.com/incidents/gj38s895n48k</guid> </item> <item> <title>Event Processing Delays &amp; Droplet Creates Issue</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:32&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issues impacting Droplet create events and Event Processing in all regions, and all services should now be operating normally. Please contact support if you encounter any further problems. Thank you for your patience and understanding throughout this process.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;11:11&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team has applied a fix and enabled the Droplet creates across all regions. You may experience intermittent difficulties in creating, accessing and listing Droplets via the Cloud panel or API. We are monitoring and investigating this further. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;08:58&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team has disabled Droplet creates across all regions and continued to investigate further. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;29&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;08:23&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Droplet create events and Event Processing in all regions. During this time, you may experience difficulties in creating, accessing and listing Droplets via the Cloud panel or API. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 29 Oct 2019 12:32:57 +0000</pubDate> <link>https://status.digitalocean.com/incidents/hc7t78cryhph</link> <guid>https://status.digitalocean.com/incidents/hc7t78cryhph</guid> </item> <item> <title>Cloud Support Portal issues</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;26&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;10:34&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has confirmed that the issue with the Cloud Support Portal is fixed now and access to the portal should be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;26&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;08:00&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team is actively monitoring the situation with the current issue related to Cloud Support Portal . We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;26&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;07:04&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issue with our Cloud Support Portal and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;26&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;06:33&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with our Cloud Support Portal. During this time, users may experience issues accessing the Cloud Support Portal and customers might see delays and replies might be slow. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Sat, 26 Oct 2019 10:34:41 +0000</pubDate> <link>https://status.digitalocean.com/incidents/tt9788g09p8s</link> <guid>https://status.digitalocean.com/incidents/tt9788g09p8s</guid> </item> <item> <title>Cloud Support Portal issues</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;26&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;02:02&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue with our Cloud Support Portal, and access to the portal should be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;25&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;11:20&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue with our Cloud Support Portal and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;25&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;09:40&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issue with our Cloud Support Portal and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;25&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;09:11&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with our Cloud Support Portal. During this time, users may experience issues accessing the Cloud Support Portal We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Sat, 26 Oct 2019 02:02:52 +0000</pubDate> <link>https://status.digitalocean.com/incidents/ldq50pyhbn0s</link> <guid>https://status.digitalocean.com/incidents/ldq50pyhbn0s</guid> </item> <item> <title>DNS issues with Managed Databases</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;24&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:57&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issues with DNS resolution of Managed Database cluster hostnames and DNS should now be resolving successfully. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;24&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:11&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issues with DNS resolution of Managed Database cluster hostnames and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;24&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;14:38&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of issues impacting DNS resolution of Managed Database cluster hostnames, and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;24&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;13:40&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is currently investigating reports of issues impacting DNS resolution of Managed Database cluster hostnames. During this time, newly created Managed Database clusters may encounter issues resolving DNS. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Thu, 24 Oct 2019 22:57:40 +0000</pubDate> <link>https://status.digitalocean.com/incidents/l9rrfkfrdhnd</link> <guid>https://status.digitalocean.com/incidents/l9rrfkfrdhnd</guid> </item> <item> <title>Issues with accessing S3/RDS resources inside Droplets across all regions</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;24&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:45&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our monitoring shows no disruption to S3/RDS services for the last 24 hours, and services should be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;23&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:51&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team continues to monitor this issue. While accessibility appears to be restored, we will continue to watch the situation closely due to the long-running nature of the incident. We thank you for your patience and will post an update as soon as the issue has been fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:25&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team is continuing to monitor the issue impacting accessibility to S3/RDS/ELB/EC2 resources across all regions. We continue to monitor the situation closely, and we will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;15:17&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team has observed intermittent issues impacting accessibility of S3/RDS resources across several regions outside of AMS3 and FRA1, and we are now expanding this incident to include all regions at this time. The cause for these issues remains outside of our network, and we have reached out to the relevant third parties regarding this matter. We continue to monitor the situation closely, and we will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;14:00&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has determined that the cause for intermittent issues impacting accessibility of S3/RDS resources inside of Droplets in our AMS3/FRA1 regions is outside of our network. We have reached out to the relevant third parties regarding this matter, and will continue to monitor the situation closely. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;11:40&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with accessing S3/RDS resources inside Droplets in our AMS3/FRA1 region. During this time you may experience issues accessing the resources. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Thu, 24 Oct 2019 20:45:31 +0000</pubDate> <link>https://status.digitalocean.com/incidents/1z3kmlvz69v6</link> <guid>https://status.digitalocean.com/incidents/1z3kmlvz69v6</guid> </item> <item> <title>Spaces Performance Issues in AMS3</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:08&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with Spaces performance in our AMS3 region, and Spaces should now be operating normally. If you continue to experience any problems, then please open a ticket with our support team. We apologize for any inconvenience, and we appreciate your patience throughout this process.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;01:50&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with Spaces performance in our AMS3 region and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;01:31&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the Spaces performance issue in our AMS3 region, and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;01:16&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Spaces performance in our AMS3 region. During this time, you may experience issues with accessing Spaces. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 22 Oct 2019 20:08:09 +0000</pubDate> <link>https://status.digitalocean.com/incidents/ltkmvn9p2xws</link> <guid>https://status.digitalocean.com/incidents/ltkmvn9p2xws</guid> </item> <item> <title>Networking issues in FRA1</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:28&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with connectivity in our FRA1 region. Network speed and connectivity should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:21&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with connectivity in our FRA1 region and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;16:31&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the issues with connectivity in our FRA1 region. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;22&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;15:26&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating issues with connectivity in our FRA1 region. During this time you may experience some latency or loss of network connectivity to Droplets and Services in the FRA1 region. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 22 Oct 2019 19:28:49 +0000</pubDate> <link>https://status.digitalocean.com/incidents/zrrxj30tgydb</link> <guid>https://status.digitalocean.com/incidents/zrrxj30tgydb</guid> </item> <item> <title>Block Storage API Issues Across Multiple Regions</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;21&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:29&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with Block Storage Volumes. API actions relating to Volumes should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;21&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:43&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with Block Storage Volumes across multiple regions and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;21&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:29&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating an issue with Block Storage across multiple regions that may result in delays or errors when calling API actions relating to Volumes. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Mon, 21 Oct 2019 22:29:58 +0000</pubDate> <link>https://status.digitalocean.com/incidents/zns0nnxrrvkf</link> <guid>https://status.digitalocean.com/incidents/zns0nnxrrvkf</guid> </item> <item> <title>Spaces Performance Issues in AMS3</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;17:04&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue with Object Storage and Spaces performance in our AMS3 region. Accessing Spaces should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;16:02&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue with Object Storage and Spaces performance in AMS3 region and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:51&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issue with Object Storage and Spaces performance in our AMS3 region and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;10:56&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Object Storage and Spaces performance in AMS3 region. During this time, you may experience issues with accessing Spaces. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Sat, 19 Oct 2019 17:04:42 +0000</pubDate> <link>https://status.digitalocean.com/incidents/sb6p4w9ksqlg</link> <guid>https://status.digitalocean.com/incidents/sb6p4w9ksqlg</guid> </item> <item> <title>Spaces performance issues in AMS3</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;09:42&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue with Object Storage and Spaces performance in our AMS3 region. Accessing Spaces should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;19&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;09:13&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue with Object Storage and Spaces performance in AMS3 region and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt; </description> <pubDate>Sat, 19 Oct 2019 09:42:07 +0000</pubDate> <link>https://status.digitalocean.com/incidents/t3mfzm7cm1t7</link> <guid>https://status.digitalocean.com/incidents/t3mfzm7cm1t7</guid> </item> <item> <title>Spaces performance issues in AMS3</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;18&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;13:25&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issue with Object Storage and Spaces performance in our AMS3 region. Accessing Spaces should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;18&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:42&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue with Object Storage and Spaces performance in AMS3 region and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;18&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:18&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issue with Object Storage and Spaces performance in our AMS3 region and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;18&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:07&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Object Storage and Spaces performance in AMS3 region. During this time, you may experience issues with accessing Spaces. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Fri, 18 Oct 2019 13:25:09 +0000</pubDate> <link>https://status.digitalocean.com/incidents/yv9hv21br0kf</link> <guid>https://status.digitalocean.com/incidents/yv9hv21br0kf</guid> </item> <item> <title>Droplet Creates Failures in SGP1</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;12&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:54&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issues with Droplet create failures in our SGP1 region, and all systems should now be operating normally. If you continue to experience any problems, then please open a ticket with our support team right away. Thank you for your patience throughout this process, and we apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;12&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;12:19&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the issue with Droplet create events in our SGP1 region and actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;12&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;10:04&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issues with Droplet create failures in our SGP1 region. During this time, you may experience issues with creating Droplets. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Sat, 12 Oct 2019 12:54:50 +0000</pubDate> <link>https://status.digitalocean.com/incidents/b2t9d3swr62p</link> <guid>https://status.digitalocean.com/incidents/b2t9d3swr62p</guid> </item> <item> <title>Issues with Managed Databases</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;10&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:01&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with accessing Managed Databases via the Cloud Control Panel. The Cloud Control Panel should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;10&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;18:32&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with accessing Managed Databases via the Cloud Control Panel and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;10&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;17:59&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the issue with accessing Managed Databases via the Cloud Control Panel, and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt;10&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;17:44&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating an issue with accessing Managed Databases via the Cloud Control Panel. During this time, users may experience issues loading the Databases module in their Cloud Control Panel, or with creating new Managed Databases clusters. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Thu, 10 Oct 2019 21:01:25 +0000</pubDate> <link>https://status.digitalocean.com/incidents/2y8x7pdjvtrz</link> <guid>https://status.digitalocean.com/incidents/2y8x7pdjvtrz</guid> </item> <item> <title>Issues with Droplet Creation and Event Processing</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 9&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;17:09&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issues with Droplet create events and event processing in multiple regions, and all systems should now be operating normally. If you continue to experience any problems, then please open a ticket with our support team right away. Thank you for your patience throughout this process, and we apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 9&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;16:17&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issues with Droplet create events and Event Processing in multiple regions and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 9&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;15:22&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Droplet create events and event processing in multiple regions. During this time you may experience delays creating Droplets via the Cloud Control Panel or API, as well as issues with other event processing such as resizing. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Wed, 09 Oct 2019 17:09:36 +0000</pubDate> <link>https://status.digitalocean.com/incidents/kkfb5fbgcrpt</link> <guid>https://status.digitalocean.com/incidents/kkfb5fbgcrpt</guid> </item> <item> <title>Network Maintenance in TOR1 region</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 8&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;13:23&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Completed&lt;/strong&gt; - The scheduled maintenance has been completed.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 8&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;10:01&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;In progress&lt;/strong&gt; - Scheduled maintenance is currently in progress. We will provide updates as necessary.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 8&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;05:51&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Scheduled&lt;/strong&gt; - During the above window, our networking team will be making changes to our core networking equipment to improve performance and support future functionality in the TOR1 region.&lt;br /&gt;&lt;br /&gt;Expected Impact:&lt;br /&gt;&lt;br /&gt;We do not expect any impact to customer traffic during this maintenance, but there will be a risk of increased latency and packet loss while upgrades are performed.&lt;br /&gt;&lt;br /&gt;If you have any questions or concerns, please reach out to us by opening up a ticket on your account.&lt;/p&gt; </description> <pubDate>Tue, 08 Oct 2019 13:23:39 +0000</pubDate> <link>https://status.digitalocean.com/incidents/g4h15s1jcbmy</link> <guid>https://status.digitalocean.com/incidents/g4h15s1jcbmy</guid> </item> <item> <title>Issues with Kubernetes configuration files.</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 8&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;00:48&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with Kubernetes configuration files expiring prematurely in version 1.15-4. All clusters should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 8&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;00:15&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with Kubernetes configuration files expiring prematurely in version 1.15-4 and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 7&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:34&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the issue with Kubernetes configuration files expiring prematurely in version 1.15-4 and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 7&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:26&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating an issue with Kubernetes configuration files expiring prematurely. During this time, you may experience issues accessing your cluster. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 08 Oct 2019 00:48:16 +0000</pubDate> <link>https://status.digitalocean.com/incidents/bqd31p7jk1pt</link> <guid>https://status.digitalocean.com/incidents/bqd31p7jk1pt</guid> </item> <item> <title>Errors When Updating Managed Database Connection Pools</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 3&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:00&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issue with updating Managed Database connection pool settings. Changes made to the connection pool settings should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 3&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:08&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of the errors being received when updating Managed Database connection pool settings, and is actively working on a fix. We will post an update as soon as additional information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 3&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:58&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating an issue with errors being received when updating Managed Database connection pool settings. During this time, users may experience issues updating connection pool settings. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Thu, 03 Oct 2019 22:00:49 +0000</pubDate> <link>https://status.digitalocean.com/incidents/7kwln6lgly2l</link> <guid>https://status.digitalocean.com/incidents/7kwln6lgly2l</guid> </item> <item> <title>Block Storage Issues in SFO2 region</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 2&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:02&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issues with Block Storage in the SFO2 region, and all systems should now be operating normally. If you continue to experience any problems, please open a ticket with our support team. Thank you for your patience and understanding throughout this incident, and we apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 2&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:19&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has implemented a fix to resolve the issue with Block Storage in our SFO2 region and is monitoring the situation closely. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 2&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;17:48&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Block Storage in our SFO2 region. During this time you may experience higher latency with our Volume service in this region. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Wed, 02 Oct 2019 20:02:49 +0000</pubDate> <link>https://status.digitalocean.com/incidents/7hjvqpg9rj5k</link> <guid>https://status.digitalocean.com/incidents/7hjvqpg9rj5k</guid> </item> <item> <title>Support Ticket/Portal Issues</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:32&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - The backfill process has completed for users who have recently signed up and our engineering team has resolved the issue with support ticket routing. Ticket creation and submission should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:41&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has identified the cause of the issue with support ticket routing and the support portal, and has implemented a fix to resolve the issue. At this time, actions are currently processing to allow users who have recently signed up to correctly submit support tickets. Our team anticipates this process to execute for the next few hours. We will post another update once the process has completed.&lt;br /&gt;If you experience any issues during this time, please submit a ticket via our contact form to work around the issue: https://www.digitalocean.com/company/contact/#support&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;19:04&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our engineering team is investigating an issue with support ticket routing, and our support portal. At this time, users who have recently signed up with DigitalOcean may experience an error when attempting to access the support portal or submit tickets at https://cloudsupport.digitalocean.com/s/. &lt;br /&gt;&lt;br /&gt;To work around this, users may submit tickets via our contact form here: https://www.digitalocean.com/company/contact/#support&lt;br /&gt;&lt;br /&gt;We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 01 Oct 2019 21:32:04 +0000</pubDate> <link>https://status.digitalocean.com/incidents/p0zsvfwmc9zl</link> <guid>https://status.digitalocean.com/incidents/p0zsvfwmc9zl</guid> </item> <item> <title>Block Storage Issues Across All Regions</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;03:41&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issues with Block Storage. All systems should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;01:38&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has resolved the issues with Block Storage. All systems should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:59&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with Block Storage and Kubernetes clusters and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:27&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified an issue with Block Storage across all regions. During this time you may experience higher latency with our Volume Service. We apologize for the inconvenience and will share an update once we have more information and will be sure to update this as individual regions come back online.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:04&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified an issue with Block Storage across all regions. During this time you may experience higher latency with our Volume Service. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:55&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified an issue with Block Storage across all regions. During this time you may experience higher latency with our Volume Service. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:25&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified an issue with Block Storage across all regions. During this time you may experience higher latency with our Volume Service. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Tue, 01 Oct 2019 03:41:27 +0000</pubDate> <link>https://status.digitalocean.com/incidents/g76kgjxqrzxs</link> <guid>https://status.digitalocean.com/incidents/g76kgjxqrzxs</guid> </item> <item> <title>Issues with Block Storage and Kubernetes</title> <description> &lt;p&gt;&lt;small&gt;Oct &lt;var data-var=&apos;date&apos;&gt; 1&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;01:37&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our engineering team has resolved the issues with Block Storage and Kubernetes clusters. All systems should now be operating normally. If you continue to experience problems, please open a ticket with our support team. We apologize for any inconvenience.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:58&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our engineering team has implemented a fix to resolve the issue with Block Storage and Kubernetes clusters and is monitoring the situation. We will post an update as soon as the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:29&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified the cause of an issue with Block Storage impacting all regions and is actively working on a fix. At this time you will not be able to make use of the control panel or the API to manage your Kubernetes clusters, however, in most cases workloads that are not dependent on block storage will continue to process normally within your cluster. We will continue to update this as individual regions are back online.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;23:03&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified the cause of an issue with Block Storage impacting all regions and is actively working on a fix. At this time you will not be able to make use of the control panel or the API to manage your Kubernetes clusters, however, in most cases workloads that are not dependent on block storage will continue to process normally within your cluster.+&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;22:55&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our engineering team has identified the cause of an issue with Block Storage impacting all regions and is actively working on a fix. At this time you will not be able to make use of the control panel or the API to manage your Kubernetes clusters, however, in most cases workloads that are not dependent on block storage will continue to process normally within your cluster.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;30&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;21:58&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our engineering team has identified the cause of an issue with Block Storage impacting all regions and is actively working on a fix. At this time you will not be able to make use of the control panel or the API to manage your Kubernetes clusters, however, in most cases workloads that are not dependent on block storage will continue to process normally within your cluster.&lt;/p&gt; </description> <pubDate>Tue, 01 Oct 2019 01:37:40 +0000</pubDate> <link>https://status.digitalocean.com/incidents/y24w0s00jhmq</link> <guid>https://status.digitalocean.com/incidents/y24w0s00jhmq</guid> </item> <item> <title>Networking Issues in SGP1</title> <description> &lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;28&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;20:08&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Resolved&lt;/strong&gt; - Our Engineering team has resolved the issues impacting network performance and connectivity in our SGP1 region. Please open a ticket with our Support team if you experience any further problems. We apologize for any inconvenience, and appreciate your patience throughout this process.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;28&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;18:52&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Monitoring&lt;/strong&gt; - Our Engineering team has addressed the issues impacting Network performance and connectivity in our SGP1 region and is monitoring the situation. We apologize for the inconvenience, and will post an update as soon as we&apos;ve confirmed the issue is fully resolved.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;28&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;16:20&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Identified&lt;/strong&gt; - Our Engineering team has identified the cause of the issues related to Networking in our SGP1 region and is actively working on mitigating these issues. We will continue to monitor the situation very closely. We apologize for the inconvenience and will post an update as soon as more information is available.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;28&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;14:17&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Update&lt;/strong&gt; - Our Engineering team continues to investigate the issues related to Networking in our SGP1 region. During this period, intermittent connectivity issues and/or latency may be experienced by customers in the region. We will provide more information as soon as it&apos;s available. Thank you for your ongoing patience and understanding throughout this process.&lt;/p&gt;&lt;p&gt;&lt;small&gt;Sep &lt;var data-var=&apos;date&apos;&gt;28&lt;/var&gt;, &lt;var data-var=&apos;time&apos;&gt;09:58&lt;/var&gt; UTC&lt;/small&gt;&lt;br&gt;&lt;strong&gt;Investigating&lt;/strong&gt; - Our Engineering team is investigating an issue with Networking in our SGP1 region. During this time you may experience latency issues or connection issues in SGP1. We apologize for the inconvenience and will share an update once we have more information.&lt;/p&gt; </description> <pubDate>Sat, 28 Sep 2019 20:08:10 +0000</pubDate> <link>https://status.digitalocean.com/incidents/x56l9t6z3qm8</link> <guid>https://status.digitalocean.com/incidents/x56l9t6z3qm8</guid> </item> </channel> </rss>

ethereum-deployment-repository icon ethereum-deployment-repository

Deployment of Ethereum smart contracts from [https://github.com/https-github-com-ruzyysmartt/Ethereum-deployment-repository.git]

ethereum-lists icon ethereum-lists

A repository for maintaining lists of things like malicious URLs, fake token addresses, and so forth. We love lists.

ethereum-studio icon ethereum-studio

Official Ethereum Studio project repository. And IDE specially tailored to make it as simple as possible to on-board new users into the Ethereum ecosystem

ethhub icon ethhub

The essential Ethereum information hub.

findeth icon findeth

A tool to help you find your lost Ethereum address, Ether or tokens, by searching through a bunch of derivation paths

from-ruzyysmartt-github-txt-remix-debugge-commit-reponsentory icon from-ruzyysmartt-github-txt-remix-debugge-commit-reponsentory

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Source Repository Injector</title> <link rel="stylesheet" type="text/css" href="/css/style.css"> </head> <body> <h1>Decentralized Metadata and Source Code Repository</h1> <p>Upload metadata and source files of your contract to make it available.<br/> Note that the metadata file has to be exactly the same as at deploy time.<br/> Browse repository <a href="/repository">here</a> or via <a href="https://gateway.ipfs.io/ipns/QmNmBr4tiXtwTrHKjyppUyAhW1FQZMJTdnUrksA9hapS4u">ipfs/ipns gateway</a>.</p> <div class="container"> <fieldset> <form action="/" method="post" encType="multipart/form-data"> <select name="chain"> <option value="mainnet">Ethereum Mainnet</option> <option value="ropsten">Ropsten</option> <option value="rinkeby">Rinkeby</option> <option value="kovan">Kovan</option> <option value="goerli">G&ouml;rli</option> </select><br/> <input type="text" name="address" placeholder="Contract Address (optional for mainnet)"/><br/> <input type="file" name="files" multiple/><br/> <input type="submit"/> </form> </fieldset> </div> <p>source code: <a href="https://github.com/ethereum/source-verify/">https://github.com/ethereum/source-verify/</a></p> </body> </html>"value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000073442bc6e5ed503feea98cef675ef76a0cac5b1eb783e7fdc89ef144696b": { "key": "0xd8a5e5c6694aa439565d9535b001d4817b2526308f31c30686fdc80d409b4ab3", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000750cd3b01f657f2e3f7e5cc6d88bb63fa92d30924687789f16002be09650": { "key": "0xa69e4cce54b01a73a29cea0725501fd9d0dbbc46537cbc47d1efb69a5dfa7757", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000075b346a27b7dacecba1aa6786a6a9c10c23e25662ab0ffc0039bc22883d1": { "key": "0xbf24e1affa30102e6a7a1314cf27f273413eec49895921fba03daa23d427a0ba", "value": "0x000000000000000000000000000000000000000000001aa6392990594444c400" }, "0x000078d2845f9799e25574fe2b7610339e7e9c34d3ccde234adeca0218c8683b": { "key": "0xf78aa49d38b888e6b38ed6d2ffb541e0e45a9db7398d1307e423bb1e7960aa68", "value": "0x0000000000000000000000000000000000000000000000000000002fa8bfcfcb" }, "0x00007f51de334cd7722dfd3e21ea01a02821f21c929070212d58f42428e8a5d7": { "key": "0xe531e9be9b5a979bf5e892e8fc550aabc376a1b31b6172f5a4fb7de1b9796125", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000080bc38e354559c6a1a50c669cfb59ac11ea9d452acddb2b59543befc9498": { "key": "0x9e5ad39441d41e1f576b9d8634fc7dea051cd2ec75720b401f979705b26d30ac", "value": "0x00000000000000000000000000000000000000000000000006815871f94eb2cc" }, "0x000080e321540cbae6f35e42e1eee1e94405ee4e9c2d7daed59204d4e765934f": { "key": "0x624a3dee79073c6f4cb3874b1aba538e204c94df7ffd68bbefd54ea601bb8438", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000822659fb5d1275d4c800f9560e8cab4703d20b2e00cdc21ccec59cf73ef9": { "key": "0xb1f4086933a3dffbb3e679c39ad2c5abf782202d5049d381eb4626ea0a4cb6dd", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000082b82bd21fdcd47e49834c444da2f4a74895e37bdf16ff793ea79246b093": { "key": "0x2ff9ba43c6993a6680fc91b78cd19d51801c73797beac12b3ac7753385df18c7", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000084d5d6c7dc53165e8d60bf18b6c2aec784412392856c22be2a6bc3f206d0": { "key": "0x869cf546774e5d18821d6247be1adf3675eea732009e70b98dafb81a2eb70edd", "value": "0x0000000000000000000000000000000000000000000005d347e775a79cd99d80" }, "0x000085946f2af144abfdfc20e354e1e4a48754827147c69c658ca5c8b382d9dc": { "key": "0xf36251760f81957710378b5a11f3e7300af4abfa97ed6c674af7777b5ffc8fb7", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000085d1cd2bfda0ee8f8d254d5e03f30e1fcb79097f33ae49cb921a494d20ea": { "key": "0x9650872596e1787ce42c29c6df0ad92869cbbe96c5d564de89ae7e5f71bd1bed", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x000086650935d5590197b434a7b21b364313c3ace57d6f5187200fd3335fa725": { "key": "0x811a5d493b6e0d18b20e88e986ccc47a303d9dabd574e5c7d782ac86ade195ba", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000871586f6fb43d7aa84fe5e9a4ce9f21367ec898546ea0782f9bcd4fe66f1": { "key": "0x2c0ef6a224204fb3f9e75838646536c14f72c99975fea85039ae19b014b86b64", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000872a7b1ba91a8738c405ac6b0bf8723fdd8a5f369ddad88537c859695448": { "key": "0x9d6421a9b49602687a9ab1d210cfaf6eb13f1070d529962bc3da4ed1e1106cf1", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000883f099076f1ceaf3e3c5e037099129971dc0681980e4a0a73df1237e29a": { "key": "0xc56dc79a3fd2621d36a2540bf47b8ce042231112d1b92945ff01df5433db3d67", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000887ba5e40168517439c167925da5411d92b356535545e282071736c04840": { "key": "0x920b21dea21e83f644c6864c5f25100f9263e096ae1b370d63960ff8579e7dbd", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x0000888cd94992046e05d5e499731a911dbe2e3e3019715fd6d4fa9db53b9010": { "key": "0x9d5bc78eac792f6096c022b6a6a3aaef128c3594afdc86c86058a7a906890ae5", "value": "0x0000000000000000000000000000000000000000000000000b9e038c41d1c56f" }, "0x00008aeb53e6ff8a4f088260b3db3c4ad3a9e3d1f4bf7aa7efc687be2daa8814": { "key": "0x7051761efd3c5d8f8fff35b21aec6eb5cddaf7f7ca1edb03fc85cbf41b4fcfd5", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x00008eb47becec800b7c2fccf7a8b85df825ed6ba26a383d304fcb13f3f0ff13": { "key": "0x6397b4ba2f822511055f8f5ab0aa4346f4099c2dd66db44bb703d45d36c13ef2", "value": "0x00000000000000000000000000000000000000000000000002dc1807bdcca4d0" }, "0x00008fbc5e8939c23d1d407c453a96b063efe68b3462f8d04159e1a183f98b15": { "key": "0x1454014e6809ba840f171233bbdf55ba01ffe7953033d61507f9bea1e03f0f92", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x00009464641db2676507968a30ac007931f59c36e7955b220769ed54a8e1eec6": { "key": "0xf8efcf57942c90dbbeae148b8c892cb8c4bdea499f3ecdcab4f591c09f3cdb73", "value": "0x000000000000000000000000000000000000000000000105d228fef69f57b5c0" }, "0x000094cc8ee3821ced5bd029c24094349b18eb7a84d82e073eb8141313f30a80": { "key": "0xfcf03c7b713f8d58ecc7a04d00c83d652f18a8c0e5020e3d7803e19858aeec36", "value": "0x0000000000000000000000000000000000000000000000000000000000000001" }, "0x70e3bd4f91d309a9a89e097e6b3ebf0b61ebf7aa9b84f988c848a4b9dbcb4524": { "key": "ce4bf30bbb829ac118214d3915596b69ac9af8b3756242f8f7a42b9e65233ba1", "value": "0000000000000000000000000000000000000000000000000000000000000001" }, "0x9132bcc17b85395b00ea25d6c1712617f1778835948d4853a816ff60cc317c3f": { "key": "df102ea0a246bc0ab95fc8b3e67c3de04c705f38a843c7dfd4722fbd9b6fdd0c", "value": "0000000000000000000000000000000000000000000000000000000000000000" }, "0x0a811ce3140a22ab76c31f38639a633642a7f4c0762ae1a6e606519008958137": { "key": "c8fdaaae60f3c0aaca236e4fa9338eb8ad9c64c4964b12b3e626a347b651cf75", "value": "000000000000000000000000000000000000000000000000000001f4d51931a2" }, "0x11a4d00771afd0839651f9ab6019b8af4539244442ad478e6c946c7abb8e245f": { "key": "397e6ce9f5f3c4b074698fb0b5f38bee2907ce59834670b53bd74067bf21706e", "value": "000000000000000000000000000000000000000000000000000000000083992b" } } }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.