-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Miles Zhang <[email protected]>
- Loading branch information
1 parent
9f4da26
commit d21f8e9
Showing
2 changed files
with
160 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
namespace :migration do | ||
desc "Usage: RAILS_ENV=production bundle exec rake migration:update_omiga_inscription_udt" | ||
task update_omiga_inscription_udt: :environment do | ||
info_ts_ids = TypeScript.where(code_hash: CkbSync::Api.instance.omiga_inscription_info_code_hash).pluck(:id) | ||
info_outputs = CellOutput.where(type_script_id: info_ts_ids) | ||
info_outputs.update_all(cell_type: "omiga_inscription_info") | ||
|
||
info_outputs.each do |output| | ||
info = CkbUtils.parse_omiga_inscription_info(output.data) | ||
# ignore old version data | ||
if output.data.slice(-2..-1).in?(["00", "01", "02"]) | ||
OmigaInscriptionInfo.upsert(info.merge(output.type_script.to_node), | ||
unique_by: :udt_hash) | ||
end | ||
end | ||
|
||
xudt_ts_ids = TypeScript.where(code_hash: CkbSync::Api.instance.xudt_code_hash).pluck(:id) | ||
xudt_ts_ids.each do |tid| | ||
xudt_outputs = CellOutput.where(type_script_id: tid) | ||
xudt_outputs.each do |output| | ||
if OmigaInscriptionInfo.where(udt_hash: output.type_hash).exists? | ||
info = OmigaInscriptionInfo.find_by!(udt_hash: output.type_hash) | ||
output.update(cell_type: "omiga_inscription", | ||
udt_amount: info.mint_limit) | ||
if info.udt_id.nil? | ||
nft_token_attr = {} | ||
nft_token_attr[:full_name] = info.name.presence | ||
nft_token_attr[:symbol] = info.symbol.presence | ||
nft_token_attr[:decimal] = info.decimal | ||
nft_token_attr[:published] = true | ||
udt = Udt.create_or_find_by!({ | ||
type_hash: output.type_hash, | ||
udt_type: "omiga_inscription", | ||
block_timestamp: output.block.timestamp, | ||
args: output.type_script.args, | ||
code_hash: output.type_script.code_hash, | ||
hash_type: output.type_script.hash_type, | ||
}.merge(nft_token_attr)) | ||
info.update!(udt_id: udt.id) | ||
end | ||
else | ||
output.update(cell_type: "xudt") | ||
end | ||
end | ||
end | ||
|
||
# udt_transaction | ||
Udt.where(udt_type: "omiga_inscription").each do |udt| | ||
outputs = CellOutput.omiga_inscription.where(type_hash: udt.type_hash).select( | ||
:address_id, :ckb_transaction_id | ||
).distinct | ||
udt_transaction_attrs = | ||
outputs.map do |output| | ||
{ udt_id: udt.id, ckb_transaction_id: output.ckb_transaction_id } | ||
end | ||
UdtTransaction.insert_all(udt_transaction_attrs) | ||
|
||
address_udt_transaction_attrs = | ||
outputs.map do |output| | ||
{ address_id: output.address_id, | ||
ckb_transaction_id: output.ckb_transaction_id } | ||
end | ||
AddressUdtTransaction.insert_all(address_udt_transaction_attrs) | ||
end | ||
|
||
# udt_account | ||
Udt.where(udt_type: "omiga_inscription").each do |udt| | ||
# {address_id => udt_amount} | ||
results = CellOutput.live.omiga_inscription.where(type_hash: udt.type_hash).select(:address_id).group(:address_id).sum(:udt_amount) | ||
attrs = | ||
results.map do |address_id, udt_amount| | ||
{ | ||
address_id:, udt_type: udt.udt_type, full_name: udt.full_name, symbol: udt.symbol, decimal: udt.decimal, | ||
published: udt.published, code_hash: udt.code_hash, type_hash: udt.type_hash, amount: udt_amount, udt_id: udt.id | ||
} | ||
end | ||
|
||
UdtAccount.insert_all(attrs) | ||
udt.update(total_amount: results.sum { |_k, v| v }) | ||
end | ||
|
||
puts "done" | ||
end | ||
end |
76 changes: 76 additions & 0 deletions
76
test/tasks/migrations/update_omiga_inscription_udt_test.rb
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,76 @@ | ||
require "test_helper" | ||
require "rake" | ||
|
||
class UpdateOmigaInscriptionUdtTest < ActiveSupport::TestCase | ||
setup do | ||
Server::Application.load_tasks if Rake::Task.tasks.empty? | ||
end | ||
|
||
test "update omiga inscription" do | ||
CkbSync::Api.any_instance.stubs(:xudt_code_hash).returns("0x25c29dc317811a6f6f3985a7a9ebc4838bd388d19d0feeecf0bcd60f6c0975bb") | ||
CkbSync::Api.any_instance.stubs(:omiga_inscription_info_code_hash).returns("0x50fdea2d0030a8d0b3d69f883b471cab2a29cae6f01923f19cecac0f27fdaaa6") | ||
|
||
block1 = create(:block, :with_block_hash, number: 0) | ||
tx1 = create(:ckb_transaction, block: block1, | ||
tx_hash: "0x3e89753ebca825e1504498eb18b56576d5b7eff59fe033346a10ab9e8ca359a4") | ||
input_address1 = create(:address) | ||
address1_lock = create(:lock_script, address_id: input_address1.id) | ||
info_ts = create(:type_script, | ||
args: "0xcd89d8f36593a9a82501c024c5cdc4877ca11c5b3d5831b3e78334aecb978f0d", | ||
code_hash: "0x50fdea2d0030a8d0b3d69f883b471cab2a29cae6f01923f19cecac0f27fdaaa6", | ||
hash_type: "type") | ||
info_output = create(:cell_output, ckb_transaction: tx1, | ||
block: block1, capacity: 50000000 * 10**8, | ||
tx_hash: tx1.tx_hash, | ||
cell_index: 1, | ||
address: input_address1, | ||
cell_type: "normal", | ||
lock_script_id: address1_lock.id, | ||
type_script_id: info_ts.id) | ||
info_output.data = "0x0814434b42204669737420496e736372697074696f6e04434b42495fa66c8d5f43914f85d3083e0529931883a5b0a14282f891201069f1b50679080040075af0750700000000000000000000e8764817000000000000000000000000" | ||
|
||
input_address2 = create(:address) | ||
address2_lock = create(:lock_script, address_id: input_address2.id) | ||
|
||
xudt_ts = create(:type_script, | ||
args: "0x9709d30fc21348ae1d28a197310a80aec3b8cdb5c93814d5e240f9fba85b76af", | ||
code_hash: "0x25c29dc317811a6f6f3985a7a9ebc4838bd388d19d0feeecf0bcd60f6c0975bb", | ||
hash_type: "type", | ||
script_hash: "0x5fa66c8d5f43914f85d3083e0529931883a5b0a14282f891201069f1b5067908") | ||
block2 = create(:block, :with_block_hash, number: 1) | ||
tx2 = create(:ckb_transaction, block: block2, | ||
tx_hash: "0xd5d38a2096c10e5d0d55def7f2b3fe58779aad831fbc9dcd594446b1f0837430") | ||
xudt_output = create(:cell_output, ckb_transaction: tx2, | ||
block: block2, capacity: 50000000 * 10**8, | ||
tx_hash: tx2.tx_hash, | ||
type_hash: xudt_ts.script_hash, | ||
cell_index: 1, | ||
address: input_address2, | ||
cell_type: "normal", | ||
lock_script_id: address2_lock.id, | ||
type_script_id: xudt_ts.id) | ||
input_address3 = create(:address) | ||
address3_lock = create(:lock_script, address_id: input_address3.id) | ||
tx3 = create(:ckb_transaction, block: block2, | ||
tx_hash: "0xd5d38a2096c10e5d0d55def7f2b3fe58779aad831fbc9dcd594446b1f0837431") | ||
xudt3_output = create(:cell_output, ckb_transaction: tx3, | ||
block: block2, capacity: 50000000 * 10**8, | ||
tx_hash: tx3.tx_hash, | ||
type_hash: xudt_ts.script_hash, | ||
cell_index: 1, | ||
address: input_address3, | ||
cell_type: "normal", | ||
lock_script_id: address3_lock.id, | ||
type_script_id: xudt_ts.id) | ||
|
||
xudt3_output.data = "0x00e87648170000000000000000000000" | ||
Rake::Task["migration:update_omiga_inscription_udt"].execute | ||
assert_equal 1, OmigaInscriptionInfo.count | ||
assert_equal 1, Udt.count | ||
assert_equal 2, UdtTransaction.count | ||
assert_equal 2, AddressUdtTransaction.count | ||
assert_equal 2, UdtAccount.count | ||
assert_equal 100000000000, UdtAccount.first.amount | ||
assert_equal 200000000000, Udt.first.total_amount | ||
end | ||
end |