Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #204 from BitSwap-BiFi/main
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
22388o authored Mar 12, 2024
2 parents 65fcbd6 + 70e153f commit 62aef6e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/.Cargo.lock
/.Cargo.toml
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ musig2 = "0.0.5"
bp-esplora = "0.11.0-beta.4"
automerge = "0.5.2"
autosurgeon = "0.8"

ascii-armor = "0.2.0"



Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ How there's no lunch free, you can lose sats in these scenarios:
- [Payjoin](https://payjoin.org/)
- Universal swaps, atomic swaps via on-chain and Lightning Network
- P2P Swaps without intermediary with [DLCs](https://github.com/p2pderivatives/rust-dlc)
- Taproot
- [Taproot](https://bitcoinops.org/en/topics/taproot/)
- [LDK](https://github.com/lightningdevkit/rust-lightning) and RGB Lightning Node
- [Prime](https://github.com/LNP-BP/layer1) & [Liquid](https://liquid.net/)
- [Bifrost](https://www.rgbfaq.com/glossary/bifrost)
Expand Down
2 changes: 1 addition & 1 deletion src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ bp-esplora = { version = "0.11.0-beta.4", features = ["api"] }
automerge = "0.5.2"
autosurgeon = "0.8"
baid58 = "0.4.4"

ascii-armor = "0.2.0"
8 changes: 6 additions & 2 deletions src/contract/rgb20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use aluvm::data::ByteStr;
use aluvm::isa::{BytesOp, ControlFlowOp, Instr};
use rgbstd::vm::opcodes::{INSTR_PCCS, INSTR_PCVS};
use rgbstd::interface::RGB20;
use rgbstd::interface::{Amount, ContractID, Fungible, Divisible};
use rgbstd::interface::{Amount, ContractID, Fungible, Divisible, ContractIFace, FungibleAllocation, IfaceWrapper, OutpointFilter};
use rgbstd::vm::{SubSchema, RgbIsa};
use rgb_schemata::{nia_rgb20, nia_schema};
use rgb_core::contract::commit::{Assign, TransactionType, GlobalStateType, SHA256}
Expand All @@ -25,7 +25,11 @@ impl rgb20::interface {
let script = let script();
let global_state = let global_state();
let nominal = let nominal();
let data = let data();
let spec = let spec();
let terms = let terms();
let amount = amount();
let burnepoch = let burnepoch;
let assetowner = let assetowner;
let created = let created();
let issued_suply = let issued_supply();
let entrypont = let entrypont();
Expand Down

0 comments on commit 62aef6e

Please sign in to comment.