-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[portal] Implement gas airdrop and add testsuit to gas market #2695
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3feaaa1
[cli] Make balance output use symbol as key
jolestar 78b3446
[rpc] Make the router log to debug
jolestar 8ecc850
[portal] Implement gas airdrop
jolestar 1185e2f
[portal] Add testsuit to gas market and gas airdrop
jolestar 4439549
fixup
jolestar d12a7c3
[gas airdrop] Record the claim records
jolestar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
Feature: Rooch Portal contract tests | ||
|
||
|
||
@serial | ||
Scenario: gas_market | ||
Given a bitcoind server for gas_market | ||
Given a server for gas_market | ||
|
||
Then cmd: "account create --json" | ||
Then cmd: "account create --json" | ||
Then cmd: "account list --json" | ||
|
||
# mint utxos | ||
Then cmd bitcoin-cli: "generatetoaddress 101 {{$.account[2].account0.bitcoin_address}}" | ||
Then sleep: "10" | ||
|
||
Then cmd: "move run --function rooch_framework::gas_coin::faucet_entry --args u256:1000000000000000 --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
# publish gas_market via default address | ||
Then cmd: "move publish -p ../../infra/rooch-portal-v2/contract/gas_market --named-addresses gas_market=default --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
Then cmd: "event get-events-by-event-handle -t default::trusted_oracle::NewOracleEvent" | ||
|
||
# submit the oracle price, require at least two record | ||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[0].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:1 --args object:{{$.event[-1].data[0].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[0].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:1 --args object:{{$.event[-1].data[0].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[1].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:2 --args object:{{$.event[-1].data[1].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[1].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:2 --args object:{{$.event[-1].data[1].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[2].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:3 --args object:{{$.event[-1].data[2].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
Then cmd: "move run --function default::trusted_oracle::submit_data --args object:{{$.event[-1].data[2].decoded_event_data.value.oracle_id}} --args string:BTCUSD --args u256:5805106000000 --args u8:8 --args string:3 --args object:{{$.event[-1].data[2].decoded_event_data.value.admin_id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
# ensure the account0 RGas balance is 0 | ||
Then cmd: "account balance -a {{$.account[2].account0.address}} --coin-type 0x3::gas_coin::RGas --json" | ||
Then assert: "{{$.account[-1].RGAS.balance}} == 0" | ||
|
||
# transfer 0.01 BTC to the gas market address | ||
Then cmd: "bitcoin transfer -s {{$.account[2].account0.bitcoin_address}} -t {{$.account[2].default.bitcoin_address}} -a 1000000" | ||
Then cmd bitcoin-cli: "generatetoaddress 1 {{$.account[2].account0.bitcoin_address}}" | ||
Then sleep: "10" | ||
|
||
Then cmd: "object -t default::gas_market::RGasMarket" | ||
# consume the utxo event | ||
Then cmd: "move run --function default::gas_market::consume_event --args object:{{$.object[-1].data[0].id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
# check the RGas balance of account0 | ||
Then cmd: "account balance -a {{$.account[2].account0.address}} --coin-type 0x3::gas_coin::RGas --json" | ||
Then assert: "{{$.account[-1].RGAS.balance}} != 0" | ||
|
||
# ensure the account1 RGas balance is 0 | ||
Then cmd: "account balance -a {{$.account[2].account1.address}} --coin-type 0x3::gas_coin::RGas --json" | ||
Then assert: "{{$.account[-1].RGAS.balance}} == 0" | ||
|
||
# transfer 2 utxo to account1 | ||
Then cmd: "bitcoin transfer -s {{$.account[2].account0.bitcoin_address}} -t {{$.account[2].account1.bitcoin_address}} -a 1000000" | ||
Then cmd: "bitcoin transfer -s {{$.account[2].account0.bitcoin_address}} -t {{$.account[2].account1.bitcoin_address}} -a 1000000" | ||
Then cmd bitcoin-cli: "generatetoaddress 1 {{$.account[2].account0.bitcoin_address}}" | ||
Then sleep: "10" | ||
|
||
Then cmd: "object -t default::gas_airdrop::RGasAirdrop" | ||
Then cmd: "object -o {{$.account[2].account1.bitcoin_address}} -t 0x4::utxo::UTXO" | ||
|
||
# the default address help the account1 to claim the airdrop | ||
Then cmd: "move run --function default::gas_airdrop::claim --args object:{{$.object[-2].data[0].id}} --args address:{{$.account[2].account1.address}} --args vector<object_id>:{{$.object[-1].data[0].id}},{{$.object[-1].data[1].id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} == executed" | ||
|
||
# check the RGas balance of account0 | ||
Then cmd: "account balance -a {{$.account[2].account1.address}} --coin-type 0x3::gas_coin::RGas --json" | ||
Then assert: "{{$.account[-1].RGAS.balance}} != 0" | ||
|
||
# try claim again | ||
Then cmd: "move run --function default::gas_airdrop::claim --args object:{{$.object[-2].data[0].id}} --args address:{{$.account[2].account1.address}} --args vector<object_id>:{{$.object[-1].data[0].id}},{{$.object[-1].data[1].id}} --json" | ||
Then assert: "{{$.move[-1].execution_info.status.type}} != executed" | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,6 @@ std = "0x1" | |
moveos_std = "0x2" | ||
rooch_framework = "0x3" | ||
bitcoin_move = "0x4" | ||
|
||
[dev-addresses] | ||
gas_market = "0x42" |
139 changes: 139 additions & 0 deletions
139
infra/rooch-portal-v2/contract/gas_market/sources/gas_airdrop.move
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
module gas_market::gas_airdrop { | ||
|
||
use std::vector; | ||
|
||
use moveos_std::signer; | ||
use moveos_std::object::{Self, Object, ObjectID, to_shared}; | ||
use moveos_std::tx_context::{sender}; | ||
use moveos_std::table::{Self, Table}; | ||
|
||
use rooch_framework::coin_store::CoinStore; | ||
use rooch_framework::gas_coin::RGas; | ||
use rooch_framework::coin_store; | ||
use rooch_framework::account_coin_store; | ||
|
||
use bitcoin_move::utxo::{Self, UTXO}; | ||
|
||
use gas_market::gas_market::AdminCap; | ||
|
||
const INIT_GAS_AMOUNT: u256 = 5000000_00000000; | ||
const ONE_RGAS: u256 = 1_00000000; | ||
|
||
//0.01 BTC | ||
const SAT_LEVEL_ONE: u64 = 1000000; | ||
//0.1 BTC | ||
const SAT_LEVEL_TWO: u64 = 10000000; | ||
|
||
const ErrorAirdropNotOpen: u64 = 0; | ||
const ErrorInvalidUTXO: u64 = 1; | ||
const ErrorAirdropNotEnoughRGas: u64 = 2; | ||
const ErrorAlreadyClaimed: u64 = 3; | ||
const ErrorUTXOValueIsZero: u64 = 4; | ||
|
||
|
||
struct RGasAirdrop has key{ | ||
rgas_store: Object<CoinStore<RGas>>, | ||
claim_records: Table<address, u256>, | ||
is_open: bool | ||
} | ||
|
||
|
||
fun init(sender: &signer) { | ||
let sender_addr = signer::address_of(sender); | ||
let rgas_store = coin_store::create_coin_store<RGas>(); | ||
let rgas_balance = account_coin_store::balance<RGas>(sender_addr); | ||
let airdrop_gas_amount = if(rgas_balance > INIT_GAS_AMOUNT) { | ||
INIT_GAS_AMOUNT | ||
} else { | ||
rgas_balance/3 | ||
}; | ||
Self::deposit_to_rgas_store(sender, &mut rgas_store, airdrop_gas_amount); | ||
let rgas_airdrop_obj = object::new_named_object(RGasAirdrop{ | ||
rgas_store, | ||
claim_records: table::new(), | ||
is_open: true | ||
}); | ||
to_shared(rgas_airdrop_obj) | ||
} | ||
|
||
/// Anyone can call this function to help the claimer claim the airdrop | ||
public entry fun claim(airdrop_obj: &mut Object<RGasAirdrop>, claimer: address, utxo_ids: vector<ObjectID>){ | ||
let airdrop = object::borrow_mut(airdrop_obj); | ||
assert!(!table::contains(&airdrop.claim_records, claimer), ErrorAlreadyClaimed); | ||
|
||
let total_sat_amount = Self::total_sat_amount(claimer, utxo_ids); | ||
assert!(total_sat_amount > 0, ErrorUTXOValueIsZero); | ||
let claim_rgas_amount = Self::sat_amount_to_rgas(total_sat_amount); | ||
let remaining_rgas_amount = coin_store::balance(&airdrop.rgas_store); | ||
assert!(claim_rgas_amount <= remaining_rgas_amount, ErrorAirdropNotEnoughRGas); | ||
let rgas_coin = coin_store::withdraw(&mut airdrop.rgas_store, claim_rgas_amount); | ||
account_coin_store::deposit<RGas>(claimer, rgas_coin); | ||
table::add(&mut airdrop.claim_records, claimer, claim_rgas_amount); | ||
} | ||
|
||
public entry fun deposit_rgas_coin( | ||
account: &signer, | ||
rgas_airdrop_obj: &mut Object<RGasAirdrop>, | ||
mx819812523 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
amount: u256 | ||
){ | ||
let rgas_airdrop = object::borrow_mut(rgas_airdrop_obj); | ||
deposit_to_rgas_store(account, &mut rgas_airdrop.rgas_store, amount); | ||
} | ||
|
||
public entry fun withdraw_rgas_coin( | ||
_admin: &mut Object<AdminCap>, | ||
rgas_airdrop_obj: &mut Object<RGasAirdrop>, | ||
amount: u256 | ||
){ | ||
let rgas_airdrop = object::borrow_mut(rgas_airdrop_obj); | ||
let rgas_coin = coin_store::withdraw(&mut rgas_airdrop.rgas_store, amount); | ||
account_coin_store::deposit<RGas>(sender(), rgas_coin); | ||
} | ||
|
||
public entry fun close_airdrop( | ||
_admin: &mut Object<AdminCap>, | ||
rgas_airdrop_obj: &mut Object<RGasAirdrop> | ||
){ | ||
let rgas_airdrop = object::borrow_mut(rgas_airdrop_obj); | ||
rgas_airdrop.is_open = false; | ||
} | ||
|
||
|
||
fun deposit_to_rgas_store( | ||
account: &signer, | ||
rgas_store: &mut Object<CoinStore<RGas>>, | ||
amount: u256 | ||
){ | ||
let rgas_coin = account_coin_store::withdraw<RGas>(account, amount); | ||
coin_store::deposit(rgas_store, rgas_coin); | ||
} | ||
|
||
/// A view function to get the amount of RGas that can be claimed | ||
public fun get_claimable_rgas(claimer: address, utxo_ids: vector<ObjectID>): u256 { | ||
let total_sat_amount = Self::total_sat_amount(claimer, utxo_ids); | ||
Self::sat_amount_to_rgas(total_sat_amount) | ||
} | ||
|
||
fun sat_amount_to_rgas(sat_amount: u64): u256{ | ||
if (sat_amount == 0){ | ||
0 | ||
}else if(sat_amount <= SAT_LEVEL_ONE){ | ||
ONE_RGAS | ||
}else if(sat_amount <= SAT_LEVEL_TWO){ | ||
2 * ONE_RGAS | ||
}else{ | ||
3 * ONE_RGAS | ||
} | ||
} | ||
|
||
fun total_sat_amount(claim_address: address, utxo_ids: vector<ObjectID>): u64{ | ||
let total_sat_amount = 0; | ||
vector::for_each(utxo_ids, |utxo_id| { | ||
let utxo_obj = object::borrow_object<UTXO>(utxo_id); | ||
assert!(object::owner(utxo_obj) == claim_address, ErrorInvalidUTXO); | ||
total_sat_amount = total_sat_amount + utxo::value(object::borrow(utxo_obj)); | ||
}); | ||
total_sat_amount | ||
} | ||
|
||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is the height snapshot check processed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We do not check the snapshot; any address that has UTXO can claim the gas coin.