Skip to content

Commit 80d91a5

Browse files
committed
Fix *___ -> *_
1 parent 9bc3fcb commit 80d91a5

21 files changed

+219
-219
lines changed

blog/aurora-chains-demo.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ image: https://www.datocms-assets.com/95026/1701394098-ac2.png
88
---
99
Aurora Chains are dedicated blockchains that go beyond mere Ethereum compatibility through a set of industry-first innovations like:
1010

11-
* *custom token & fee mechanics* (e.g., gasless transactions; paying for gas with a custom token; some percentage of any transaction value to be stored in Aurora Chain Treasury, etc.);
12-
* *custom access control* (public vs private chain, who can transact, who can deploy contracts? e.g., NFT-based access to the blockchain, private chain can be built by using a private NEAR shard – [Calimero](https://www.calimero.network/));
13-
* *seamless interoperability* with Aurora, NEAR, and any other Aurora Chains: you can freely move your assets using Rainbow Bridge, call contracts via cross-contract calls, etc.; This is the main difference between Chains and other solutions (like Avalanche or Cosmos). There is no disjointness in between. You can call any smart contract in any other Chain or Near and interact with it freely.
14-
* *tremendous transaction throughput – *we can provide you with dozens of millions of transactions daily for your ecosystem.
11+
* *custom token & fee mechanics* (e.g., gasless transactions; paying for gas with a custom token; some percentage of any transaction value to be stored in Aurora Chain Treasury, etc.);
12+
* *custom access control* (public vs private chain, who can transact, who can deploy contracts? e.g., NFT-based access to the blockchain, private chain can be built by using a private NEAR shard – [Calimero](https://www.calimero.network/));
13+
* *seamless interoperability* with Aurora, NEAR, and any other Aurora Chains: you can freely move your assets using Rainbow Bridge, call contracts via cross-contract calls, etc.; This is the main difference between Chains and other solutions (like Avalanche or Cosmos). There is no disjointness in between. You can call any smart contract in any other Chain or Near and interact with it freely.
14+
* *tremendous transaction throughput – *we can provide you with dozens of millions of transactions daily for your ecosystem.
1515

1616
Every Aurora Chain is based upon the [Aurora smart contract.](https://github.com/aurora-is-near/aurora-engine/) Aurora Chain is just another instance of it that can be configured in way that will work in the best way possible to be aligned with your business model and goals. The Aurora Labs team will gladly help you maintain and support your chain.
1717

blog/aurora-cloud-borealis-business.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ Let’s see this setup process in more detail.
3232

3333
As previously discussed, Deals consist of rules. Therefore, when a business engages with Aurora's engineering team, two key aspects need to be established:
3434

35-
* Which smart contracts will be part of a deal?
36-
* What is the business logic around free transactions for users?\
35+
* Which smart contracts will be part of a deal?
36+
* What is the business logic around free transactions for users?\
3737

3838

3939
Typically, setting up a deal would initiate with specific parameters. These, however, are not strict boundaries but flexible starting points. Our adaptability allows us to fine-tune the operational rules by leveraging a wide range of resources. These could range from IP addresses and authentication tokens to the internal data embedded within each transaction. Nevertheless, right now, we propose using the following set of parameters:
4040

41-
* **FROM:** This parameter specifies the originator of the transaction, and it can take values such as ***All***, meaning that the rule engine will not filter any transactions based on their origin address (i.e., all origin addresses are valid for this deal) or ***EOA*** in which case the rule engine will only pick up transactions coming from a specific list of addresses (EOAs). We refer to this list as the whitelist, which must be populated by the businesses.
42-
* **TO:** This parameter specifies the transaction's target, and it can take values such as an ***address*** so that the rule engine will pick up transactions directed to this specific contract address. If a transaction goes to another contract, it cannot be associated with this deal.
43-
* **DEAL**: This parameter specifies the number of transactions that the beneficiaries of this deal can get. It can be set to UNLIMITED or a specific number.
41+
* **FROM:** This parameter specifies the originator of the transaction, and it can take values such as ***All***, meaning that the rule engine will not filter any transactions based on their origin address (i.e., all origin addresses are valid for this deal) or ***EOA*** in which case the rule engine will only pick up transactions coming from a specific list of addresses (EOAs). We refer to this list as the whitelist, which must be populated by the businesses.
42+
* **TO:** This parameter specifies the transaction's target, and it can take values such as an ***address*** so that the rule engine will pick up transactions directed to this specific contract address. If a transaction goes to another contract, it cannot be associated with this deal.
43+
* **DEAL**: This parameter specifies the number of transactions that the beneficiaries of this deal can get. It can be set to UNLIMITED or a specific number.
4444

4545
Here are a few simple examples of Borealis Business deals: 
4646

@@ -60,9 +60,9 @@ Here is an image describing how the AuroraPass (AP) Deal works:
6060

6161
Businesses must define a list of approved addresses that can benefit from their deal. The whitelisted addresses are managed via a dedicated API to enable companies to: 
6262

63-
* Add an address. 
64-
* Remove an address. 
65-
* Check if an address is on the whitelist. 
63+
* Add an address. 
64+
* Remove an address. 
65+
* Check if an address is on the whitelist. 
6666

6767
The Aurora team will provide businesses with the credentials for this API as part of the Borealis deal setup process.
6868

blog/demystifying-transaction-failures.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ That is it. The task is solved. You can see in Aurora Helpers directly what this
4242

4343
Those `07 03` numbers correspond to the `status` field of the Aurora Engine's transaction. The First number indicates the[ Aurora Engine API version](https://github.com/aurora-is-near/aurora-engine/pull/299/files#diff-a0e4fe79c7aa101e4b4e969318e18bb3854f0f8607e4b56d5665e131f98fdfa8R116). And the second one corresponds to the [statuses](https://github.com/aurora-is-near/aurora-engine/blob/a00df8e7d83ae49c035348111cc89be28cb93dab/engine-types/src/parameters/engine.rs#L19-L26) which could transactions have inside the Engine after execution. Let's compile them into the list below:
4444

45-
* 00 – Succeed: transaction has been executed successfully.
46-
* 01 – Revert: transaction has been reverted, most likely because of internal contract terms.
47-
* 02 – OutOfGas: execution ran out of gas.
48-
* 03 – OutOfFund: not enough funds to start the execution.
49-
* 04 –OutOfOffset: an opcode accesses external information, but the request exceeds the offset limit.
50-
* 05 – CallTooDeep: call stack is too deep.
45+
* 00 – Succeed: transaction has been executed successfully.
46+
* 01 – Revert: transaction has been reverted, most likely because of internal contract terms.
47+
* 02 – OutOfGas: execution ran out of gas.
48+
* 03 – OutOfFund: not enough funds to start the execution.
49+
* 04 –OutOfOffset: an opcode accesses external information, but the request exceeds the offset limit.
50+
* 05 – CallTooDeep: call stack is too deep.
5151

5252
We can create the enum map inside our code to convert easily between codes and error names:
5353

blog/getting-started-with-aurora.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,11 @@ To interact with the contract, you have to obtain some AuroraEth in the Aurora `
9595

9696
To directly obtain AuroraETH in the `testnet`, you can follow these steps:
9797

98-
* Go to the following link: [https://aurora.dev/faucet](https://aurora.dev/faucet)
99-
* Select the Testnet.
100-
* Connect to MetaMask. Click on "Connect to Aurora Testnet." This will likely open your MetaMask wallet and prompt you to perform a few simple instructions.
101-
* Check the wallet address to which you have connected. If you have multiple accounts in MetaMask and it is not connected to the desired account, click on the MetaMask icon in your browser and select the account you want to connect to.
102-
* Click on "Request 0.001 ETH from the faucet." This will initiate the process of receiving AuroraETH.
98+
* Go to the following link: [https://aurora.dev/faucet](https://aurora.dev/faucet)
99+
* Select the Testnet.
100+
* Connect to MetaMask. Click on "Connect to Aurora Testnet." This will likely open your MetaMask wallet and prompt you to perform a few simple instructions.
101+
* Check the wallet address to which you have connected. If you have multiple accounts in MetaMask and it is not connected to the desired account, click on the MetaMask icon in your browser and select the account you want to connect to.
102+
* Click on "Request 0.001 ETH from the faucet." This will initiate the process of receiving AuroraETH.
103103

104104
Congratulations! You now have AuroraETH in your `testnet` wallet!
105105

@@ -113,17 +113,17 @@ This method will take approximately 20 minutes. First, we will obtain ETH in Goe
113113

114114
Obtain the Eth in Goerli testnet in Ethereum:
115115

116-
* Go to the following link:[ *https://goerli-faucet.pk910.de/*](https://goerli-faucet.pk910.de/). Of course, it is not the only option. But here, you can get the Eth without a daily limit.
117-
* Enter the address where you want the Eth to be sent.
118-
* Click “Start Mining” and wait…
119-
* Finish the mining and receive Eth.
116+
* Go to the following link:[ *https://goerli-faucet.pk910.de/*](https://goerli-faucet.pk910.de/). Of course, it is not the only option. But here, you can get the Eth without a daily limit.
117+
* Enter the address where you want the Eth to be sent.
118+
* Click “Start Mining” and wait…
119+
* Finish the mining and receive Eth.
120120

121121
Transfer the Eth to Aurora using the Rainbow Bridge:
122122

123-
* Visit[ *https://testnet.rainbowbridge.app/*](https://testnet.rainbowbridge.app/)
124-
* Click “New Transfer” and select “Transfer from Ethereum” and “Transfer to Aurora”
125-
* Connect to the desired address using MetaMask in both networks
126-
* Wait for approximately 20 minutes for the transfer to complete
123+
* Visit[ *https://testnet.rainbowbridge.app/*](https://testnet.rainbowbridge.app/)
124+
* Click “New Transfer” and select “Transfer from Ethereum” and “Transfer to Aurora”
125+
* Connect to the desired address using MetaMask in both networks
126+
* Wait for approximately 20 minutes for the transfer to complete
127127

128128
You get the AuroraEth! Now you are ready for contract deployment!
129129

@@ -430,12 +430,12 @@ In this article, we have learned how to: (1) create accounts in Aurora, (2) get
430430
431431
## References
432432
433-
* HardHat: [https://hardhat.org/tutorial](https://hardhat.org/tutorial)
434-
* MetaMask: [https://metamask.io/](https://metamask.io/)
435-
* Get AuroraETH: [https://aurora.dev/faucet](https://aurora.dev/faucet)
436-
* Mining Goerli ETH: [https://goerli-faucet.pk910.de/](https://goerli-faucet.pk910.de/)
437-
* Rainbow Bridge for testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
438-
* Explorer for Aurora testnet: [explorer.testnet.aurora.dev](https://explorer.testnet.aurora.dev/)
439-
* Explorer for Near testnet: [https://explorer.testnet.near.org](https://explorer.testnet.near.org)
440-
* dApp for get Near tx from Aurora tx: [https://aurora-helpers.vercel.app/aurora_to_near](https://aurora-helpers.vercel.app/aurora_to_near)
441-
* Demystifying Transaction Failures: [/blog/demystifying-transaction-failures](/blog/demystifying-transaction-failures)
433+
* HardHat: [https://hardhat.org/tutorial](https://hardhat.org/tutorial)
434+
* MetaMask: [https://metamask.io/](https://metamask.io/)
435+
* Get AuroraETH: [https://aurora.dev/faucet](https://aurora.dev/faucet)
436+
* Mining Goerli ETH: [https://goerli-faucet.pk910.de/](https://goerli-faucet.pk910.de/)
437+
* Rainbow Bridge for testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
438+
* Explorer for Aurora testnet: [explorer.testnet.aurora.dev](https://explorer.testnet.aurora.dev/)
439+
* Explorer for Near testnet: [https://explorer.testnet.near.org](https://explorer.testnet.near.org)
440+
* dApp for get Near tx from Aurora tx: [https://aurora-helpers.vercel.app/aurora_to_near](https://aurora-helpers.vercel.app/aurora_to_near)
441+
* Demystifying Transaction Failures: [/blog/demystifying-transaction-failures](/blog/demystifying-transaction-failures)

blog/hot-to-get-your-tokens-from-bastion-contract.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ To formulate the problem more precisely, a user has some `cUSDCcUSDTLP` tokens a
1212

1313
We will go through the next steps:
1414

15-
* What contracts should we call?
16-
* What method should we call, and how?
17-
* How to convert `cUSDC` and `cUSDT` into regular stables?
15+
* What contracts should we call?
16+
* What method should we call, and how?
17+
* How to convert `cUSDC` and `cUSDT` into regular stables?
1818

1919
We will use the most convenient way for users to interact with smart contracts—the Explorer. However, devs can always write a script to perform the steps described in this article with Ethers or Web3.js.
2020

@@ -66,8 +66,8 @@ We're unsure about the arguments here yet, so let's find out what values we shou
6666

6767
You can see what exactly has happened here during the execution in terms of the token transfers:
6868

69-
* `cUSDCcUSDTLP` tokens were burned
70-
* `cUSDT` and `cUSDC` tokens were transferred to the caller
69+
* `cUSDCcUSDTLP` tokens were burned
70+
* `cUSDT` and `cUSDC` tokens were transferred to the caller
7171

7272
Now, let's scroll down a bit and click on "View details" link at the left bottom of the page, you will see the arguments of the method used there:
7373

@@ -90,8 +90,8 @@ That is it! Now you got back your `cUSDC` and `cUSDT` tokens.
9090

9191
To do this, we will need to point our attention to these contracts:
9292

93-
* cUSDT: [0x845E15A441CFC1871B7AC610b0E922019BaD9826](https://explorer.mainnet.aurora.dev/address/0x845E15A441CFC1871B7AC610b0E922019BaD9826)
94-
* cUSDC:[ 0xe5308dc623101508952948b141fD9eaBd3337D99](https://explorer.aurora.dev/token/0xe5308dc623101508952948b141fD9eaBd3337D99)
93+
* cUSDT: [0x845E15A441CFC1871B7AC610b0E922019BaD9826](https://explorer.mainnet.aurora.dev/address/0x845E15A441CFC1871B7AC610b0E922019BaD9826)
94+
* cUSDC:[ 0xe5308dc623101508952948b141fD9eaBd3337D99](https://explorer.aurora.dev/token/0xe5308dc623101508952948b141fD9eaBd3337D99)
9595

9696
For both of them, the process will look the same, so let's just talk about `cUSDT` case. To unwrap you need to call this method – \`redeem\`:
9797

blog/how-to-get-usdc-tokens-on-aurora-testnet.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -57,25 +57,25 @@ We have the Goerli Ethereum account and some GoerliETH. Let’s exchange some Et
5757

5858
**2. Connect to Goerli Network.** It can look like it doesn’t support testnet network, but it actually support it, just it is not clear from the web interface.
5959

60-
* Click the `Connect` button. Choose MetaMask and connect to your account.
60+
* Click the `Connect` button. Choose MetaMask and connect to your account.
6161

6262
![](https://www.datocms-assets.com/95026/1689675168-uniswapconnect.jpg)
6363

64-
* Switch on `Show testnets` option on the Uniswap site:
64+
* Switch on `Show testnets` option on the Uniswap site:
6565

6666
![](https://www.datocms-assets.com/95026/1690544253-screenshot-2023-07-28-at-12-35-32.png)
6767

6868
![](https://www.datocms-assets.com/95026/1690544262-screenshot-2023-07-28-at-12-35-41.png)
6969

7070
![](https://www.datocms-assets.com/95026/1690544274-screenshot-2023-07-28-at-12-35-54.png)
7171

72-
* Change the network to Goerli Testnet.
72+
* Change the network to Goerli Testnet.
7373

7474
![](https://www.datocms-assets.com/95026/1690544545-screenshot-2023-07-28-at-12-39-49.png)
7575

7676
**3. Swap GoerliEth into USDC**
7777

78-
* Click `Select token`. Yes, you doesn’t see the USDC tokens in the list. It is Ok, don’t worry:
78+
* Click `Select token`. Yes, you doesn’t see the USDC tokens in the list. It is Ok, don’t worry:
7979

8080
![](https://www.datocms-assets.com/95026/1690544771-screenshot-2023-07-28-at-12-45-29.png)
8181

@@ -85,11 +85,11 @@ In the search field write `USDC` and select the `USD Coin` from the list. For so
8585

8686
![](https://www.datocms-assets.com/95026/1690544794-screenshot-2023-07-28-at-12-45-57.png)
8787

88-
* Put some small amount of ETH in first line. 0.01 GöETH will be enough.
88+
* Put some small amount of ETH in first line. 0.01 GöETH will be enough.
8989

9090
![](https://www.datocms-assets.com/95026/1690544849-screenshot-2023-07-28-at-12-44-59.png)
9191

92-
* Click Swap
92+
* Click Swap
9393

9494
![](https://www.datocms-assets.com/95026/1690544873-screenshot-2023-07-28-at-12-45-06.png)
9595

@@ -99,12 +99,12 @@ Congratulations! Now you get a lot of test USDC in your Ethereum account. You ca
9999

100100
Now the easy part: transfer USDC tokens from Ethereum to Aurora.
101101

102-
* Open the Rainbow Bridge for testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
103-
* Click New Transfer:
102+
* Open the Rainbow Bridge for testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
103+
* Click New Transfer:
104104

105105
![](https://www.datocms-assets.com/95026/1690544972-screenshot-2023-07-28-at-12-48-40.png)
106106

107-
* Connect to your accounts on Ethereum and on Aurora:
107+
* Connect to your accounts on Ethereum and on Aurora:
108108

109109
![](https://www.datocms-assets.com/95026/1690545004-screenshot-2023-07-28-at-12-48-57.png)
110110

@@ -122,8 +122,8 @@ In this short article, we learned how to get a lot of USDC tokens on Ethereum, N
122122

123123
## References
124124

125-
* Article with instructions on how to install MetaMask and mint Ether: [/blog/getting-started-with-aurora](/blog/getting-started-with-aurora)
126-
* USDC tokens address on Ethereum Goerli: [https://goerli.etherscan.io/address/0x07865c6e87b9f70255377e024ace6630c1eaa37f](https://goerli.etherscan.io/address/0x07865c6e87b9f70255377e024ace6630c1eaa37f)
127-
* Uniswap: [https://app.uniswap.org/#/swap](https://app.uniswap.org/#/swap)
128-
* Rainbow Bridge For Testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
129-
* Checking the supported tokens for Rainbow Bridge on Testnet: [https://testnet.rainbowbridge.app/deploy](https://testnet.rainbowbridge.app/deploy)
125+
* Article with instructions on how to install MetaMask and mint Ether: [/blog/getting-started-with-aurora](/blog/getting-started-with-aurora)
126+
* USDC tokens address on Ethereum Goerli: [https://goerli.etherscan.io/address/0x07865c6e87b9f70255377e024ace6630c1eaa37f](https://goerli.etherscan.io/address/0x07865c6e87b9f70255377e024ace6630c1eaa37f)
127+
* Uniswap: [https://app.uniswap.org/#/swap](https://app.uniswap.org/#/swap)
128+
* Rainbow Bridge For Testnet: [https://testnet.rainbowbridge.app/](https://testnet.rainbowbridge.app/)
129+
* Checking the supported tokens for Rainbow Bridge on Testnet: [https://testnet.rainbowbridge.app/deploy](https://testnet.rainbowbridge.app/deploy)

0 commit comments

Comments
 (0)